Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * This file is part of the LibreOffice project.
4 : *
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/.
8 : *
9 : * This file incorporates work covered by the following license notice:
10 : *
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 .
18 : */
19 :
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"
49 : #include "osl/time.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"
55 :
56 : namespace {
57 :
58 2 : struct Result: private boost::noncopyable {
59 : osl::Condition condition;
60 : bool success;
61 : OUString result;
62 : };
63 :
64 2 : class Listener:
65 : public cppu::WeakImplHelper1< css::frame::XDispatchResultListener >
66 : {
67 : public:
68 1 : Listener(Result * result): result_(result) { OSL_ASSERT(result != 0); }
69 :
70 : private:
71 0 : virtual void SAL_CALL disposing(css::lang::EventObject const &)
72 0 : throw (css::uno::RuntimeException) {}
73 :
74 : virtual void SAL_CALL dispatchFinished(
75 : css::frame::DispatchResultEvent const & Result)
76 : throw (css::uno::RuntimeException);
77 :
78 : Result * result_;
79 : };
80 :
81 1 : void Listener::dispatchFinished(css::frame::DispatchResultEvent const & Result)
82 : throw (css::uno::RuntimeException)
83 : {
84 : result_->success =
85 2 : (Result.State == css::frame::DispatchResultState::SUCCESS) &&
86 3 : (Result.Result >>= result_->result);
87 1 : result_->condition.set();
88 1 : }
89 :
90 2 : class Callback: public cppu::WeakImplHelper1< css::awt::XCallback > {
91 : public:
92 1 : Callback(
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 &
97 : listener):
98 : dispatch_(dispatch), url_(url), arguments_(arguments),
99 1 : listener_(listener)
100 1 : { OSL_ASSERT(dispatch.is()); }
101 :
102 : private:
103 1 : virtual void SAL_CALL notify(css::uno::Any const &)
104 : throw (css::uno::RuntimeException)
105 1 : { dispatch_->dispatchWithNotification(url_, arguments_, listener_); }
106 :
107 : css::uno::Reference< css::frame::XNotifyingDispatch > dispatch_;
108 : css::util::URL url_;
109 : css::uno::Sequence< css::beans::PropertyValue > arguments_;
110 : css::uno::Reference< css::frame::XDispatchResultListener > listener_;
111 : };
112 :
113 3 : class Test: public CppUnit::TestFixture {
114 : public:
115 : virtual void setUp();
116 :
117 : virtual void tearDown();
118 :
119 : private:
120 2 : CPPUNIT_TEST_SUITE(Test);
121 1 : CPPUNIT_TEST(test);
122 2 : CPPUNIT_TEST_SUITE_END();
123 :
124 : void test();
125 :
126 : test::OfficeConnection connection_;
127 : };
128 :
129 1 : void Test::setUp() {
130 1 : connection_.setUp();
131 1 : }
132 :
133 1 : void Test::tearDown() {
134 1 : connection_.tearDown();
135 1 : }
136 :
137 1 : void Test::test() {
138 1 : OUString doc;
139 2 : CPPUNIT_ASSERT(
140 : test::getTestArgument(
141 1 : OUString("smoketest.doc"), &doc));
142 2 : css::uno::Sequence< css::beans::PropertyValue > args(2);
143 1 : args[0].Name = OUString("MacroExecutionMode");
144 1 : args[0].Handle = -1;
145 1 : args[0].Value <<=
146 1 : com::sun::star::document::MacroExecMode::ALWAYS_EXECUTE_NO_WARN;
147 1 : args[0].State = css::beans::PropertyState_DIRECT_VALUE;
148 1 : args[1].Name = OUString("ReadOnly");
149 1 : args[1].Handle = -1;
150 1 : args[1].Value <<= sal_True;
151 1 : args[1].State = css::beans::PropertyState_DIRECT_VALUE;
152 2 : css::util::URL url;
153 2 : url.Complete = OUString(
154 : "vnd.sun.star.script:Standard.Global.StartTestWithDefaultOptions?"
155 1 : "language=Basic&location=document");
156 :
157 2 : css::uno::Reference< css::frame::XDesktop2 > xDesktop = css::frame::Desktop::create(connection_.getComponentContext());
158 :
159 : css::uno::Reference< css::frame::XNotifyingDispatch > disp(
160 : css::uno::Reference< css::frame::XDispatchProvider >(
161 : css::uno::Reference< css::frame::XController >(
162 : css::uno::Reference< css::frame::XModel >(
163 1 : xDesktop->loadComponentFromURL(
164 : test::toAbsoluteFileUrl(doc),
165 : OUString("_default"),
166 1 : 0, args),
167 3 : css::uno::UNO_QUERY_THROW)->getCurrentController(),
168 2 : css::uno::UNO_SET_THROW)->getFrame(),
169 2 : css::uno::UNO_QUERY_THROW)->queryDispatch(
170 1 : url, OUString("_self"), 0),
171 2 : css::uno::UNO_QUERY_THROW);
172 2 : Result result;
173 : // Shifted to main thread to work around potential deadlocks (i112867):
174 : com::sun::star::awt::AsyncCallback::create(
175 2 : connection_.getComponentContext())->addCallback(
176 : new Callback(
177 : disp, url, css::uno::Sequence< css::beans::PropertyValue >(),
178 2 : new Listener(&result)),
179 3 : css::uno::Any());
180 : // Wait for result.condition or connection_ going stale:
181 : for (;;) {
182 73 : TimeValue delay = { 1, 0 }; // 1 sec
183 73 : osl::Condition::Result res = result.condition.wait(&delay);
184 73 : if (res == osl::Condition::result_ok) {
185 1 : break;
186 : }
187 72 : CPPUNIT_ASSERT_EQUAL(osl::Condition::result_timeout, res);
188 72 : CPPUNIT_ASSERT(connection_.isStillAlive());
189 72 : }
190 2 : CPPUNIT_ASSERT(result.success);
191 2 : CPPUNIT_ASSERT_EQUAL(OUString(), result.result);
192 1 : }
193 :
194 1 : CPPUNIT_TEST_SUITE_REGISTRATION(Test);
195 :
196 : }
197 :
198 4 : CPPUNIT_PLUGIN_IMPLEMENT();
199 :
200 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|