1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 #include <sal/types.h>
21 #include "boost/noncopyable.hpp"
22 #include "com/sun/star/awt/AsyncCallback.hpp"
23 #include "com/sun/star/awt/XCallback.hpp"
24 #include "com/sun/star/beans/PropertyState.hpp"
25 #include "com/sun/star/beans/PropertyValue.hpp"
26 #include "com/sun/star/document/MacroExecMode.hpp"
27 #include "com/sun/star/frame/Desktop.hpp"
28 #include "com/sun/star/frame/DispatchResultEvent.hpp"
29 #include "com/sun/star/frame/DispatchResultState.hpp"
30 #include "com/sun/star/frame/XComponentLoader.hpp"
31 #include "com/sun/star/frame/XController.hpp"
32 #include "com/sun/star/frame/XDispatchProvider.hpp"
33 #include "com/sun/star/frame/XDispatchResultListener.hpp"
34 #include "com/sun/star/frame/XModel.hpp"
35 #include "com/sun/star/frame/XNotifyingDispatch.hpp"
36 #include "com/sun/star/lang/EventObject.hpp"
37 #include "com/sun/star/uno/Any.hxx"
38 #include "com/sun/star/uno/Reference.hxx"
39 #include "com/sun/star/uno/RuntimeException.hpp"
40 #include "com/sun/star/uno/Sequence.hxx"
41 #include "com/sun/star/util/URL.hpp"
42 #include "cppuhelper/implbase1.hxx"
43 #include "cppunit/TestAssert.h"
44 #include "cppunit/TestFixture.h"
45 #include "cppunit/extensions/HelperMacros.h"
46 #include "cppunit/plugin/TestPlugIn.h"
47 #include "osl/conditn.hxx"
48 #include "osl/diagnose.h"
50 #include "rtl/ustring.h"
51 #include "rtl/ustring.hxx"
52 #include "unotest/gettestargument.hxx"
53 #include "unotest/officeconnection.hxx"
54 #include "unotest/toabsolutefileurl.hxx"
58 struct Result
: private boost::noncopyable
{
59 osl::Condition condition
;
65 public cppu::WeakImplHelper1
< css::frame::XDispatchResultListener
>
68 Listener(Result
* result
): result_(result
) { OSL_ASSERT(result
!= 0); }
71 virtual void SAL_CALL
disposing(css::lang::EventObject
const &)
72 throw (css::uno::RuntimeException
, std::exception
) SAL_OVERRIDE
{}
74 virtual void SAL_CALL
dispatchFinished(
75 css::frame::DispatchResultEvent
const & Result
)
76 throw (css::uno::RuntimeException
, std::exception
) SAL_OVERRIDE
;
81 void Listener::dispatchFinished(css::frame::DispatchResultEvent
const & Result
)
82 throw (css::uno::RuntimeException
, std::exception
)
85 (Result
.State
== css::frame::DispatchResultState::SUCCESS
) &&
86 (Result
.Result
>>= result_
->result
);
87 result_
->condition
.set();
90 class Callback
: public cppu::WeakImplHelper1
< css::awt::XCallback
> {
93 css::uno::Reference
< css::frame::XNotifyingDispatch
> const & dispatch
,
94 css::util::URL
const & url
,
95 css::uno::Sequence
< css::beans::PropertyValue
> const & arguments
,
96 css::uno::Reference
< css::frame::XDispatchResultListener
> const &
98 dispatch_(dispatch
), url_(url
), arguments_(arguments
),
100 { OSL_ASSERT(dispatch
.is()); }
103 virtual void SAL_CALL
notify(css::uno::Any
const &)
104 throw (css::uno::RuntimeException
, std::exception
) SAL_OVERRIDE
105 { dispatch_
->dispatchWithNotification(url_
, arguments_
, listener_
); }
107 css::uno::Reference
< css::frame::XNotifyingDispatch
> dispatch_
;
109 css::uno::Sequence
< css::beans::PropertyValue
> arguments_
;
110 css::uno::Reference
< css::frame::XDispatchResultListener
> listener_
;
113 class Test
: public CppUnit::TestFixture
{
115 virtual void setUp() SAL_OVERRIDE
;
117 virtual void tearDown() SAL_OVERRIDE
;
120 CPPUNIT_TEST_SUITE(Test
);
122 CPPUNIT_TEST_SUITE_END();
126 test::OfficeConnection connection_
;
133 void Test::tearDown() {
134 connection_
.tearDown();
140 test::getTestArgument(
141 OUString("smoketest.doc"), &doc
));
142 css::uno::Sequence
< css::beans::PropertyValue
> args(2);
143 args
[0].Name
= "MacroExecutionMode";
146 com::sun::star::document::MacroExecMode::ALWAYS_EXECUTE_NO_WARN
;
147 args
[0].State
= css::beans::PropertyState_DIRECT_VALUE
;
148 args
[1].Name
= "ReadOnly";
150 args
[1].Value
<<= sal_True
;
151 args
[1].State
= css::beans::PropertyState_DIRECT_VALUE
;
153 url
.Complete
= "vnd.sun.star.script:Standard.Global.StartTestWithDefaultOptions?"
154 "language=Basic&location=document";
156 css::uno::Reference
< css::frame::XDesktop2
> xDesktop
= css::frame::Desktop::create(connection_
.getComponentContext());
158 css::uno::Reference
< css::frame::XNotifyingDispatch
> disp(
159 css::uno::Reference
< css::frame::XDispatchProvider
>(
160 css::uno::Reference
< css::frame::XController
>(
161 css::uno::Reference
< css::frame::XModel
>(
162 xDesktop
->loadComponentFromURL(
163 test::toAbsoluteFileUrl(doc
),
164 OUString("_default"),
166 css::uno::UNO_QUERY_THROW
)->getCurrentController(),
167 css::uno::UNO_SET_THROW
)->getFrame(),
168 css::uno::UNO_QUERY_THROW
)->queryDispatch(
169 url
, OUString("_self"), 0),
170 css::uno::UNO_QUERY_THROW
);
172 // Shifted to main thread to work around potential deadlocks (i112867):
173 com::sun::star::awt::AsyncCallback::create(
174 connection_
.getComponentContext())->addCallback(
176 disp
, url
, css::uno::Sequence
< css::beans::PropertyValue
>(),
177 new Listener(&result
)),
179 // Wait for result.condition or connection_ going stale:
181 TimeValue delay
= { 1, 0 }; // 1 sec
182 osl::Condition::Result res
= result
.condition
.wait(&delay
);
183 if (res
== osl::Condition::result_ok
) {
186 CPPUNIT_ASSERT_EQUAL(osl::Condition::result_timeout
, res
);
187 CPPUNIT_ASSERT(connection_
.isStillAlive());
189 CPPUNIT_ASSERT(result
.success
);
190 CPPUNIT_ASSERT_EQUAL(OUString(), result
.result
);
193 CPPUNIT_TEST_SUITE_REGISTRATION(Test
);
197 CPPUNIT_PLUGIN_IMPLEMENT();
199 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */