1ef39d40dSAndrew Rist /**************************************************************
2cdf0e10cSrcweir  *
3ef39d40dSAndrew Rist  * Licensed to the Apache Software Foundation (ASF) under one
4ef39d40dSAndrew Rist  * or more contributor license agreements.  See the NOTICE file
5ef39d40dSAndrew Rist  * distributed with this work for additional information
6ef39d40dSAndrew Rist  * regarding copyright ownership.  The ASF licenses this file
7ef39d40dSAndrew Rist  * to you under the Apache License, Version 2.0 (the
8ef39d40dSAndrew Rist  * "License"); you may not use this file except in compliance
9ef39d40dSAndrew Rist  * with the License.  You may obtain a copy of the License at
10ef39d40dSAndrew Rist  *
11ef39d40dSAndrew Rist  *   http://www.apache.org/licenses/LICENSE-2.0
12ef39d40dSAndrew Rist  *
13ef39d40dSAndrew Rist  * Unless required by applicable law or agreed to in writing,
14ef39d40dSAndrew Rist  * software distributed under the License is distributed on an
15ef39d40dSAndrew Rist  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16ef39d40dSAndrew Rist  * KIND, either express or implied.  See the License for the
17ef39d40dSAndrew Rist  * specific language governing permissions and limitations
18ef39d40dSAndrew Rist  * under the License.
19ef39d40dSAndrew Rist  *
20ef39d40dSAndrew Rist  *************************************************************/
21ef39d40dSAndrew Rist 
22ef39d40dSAndrew Rist 
23cdf0e10cSrcweir package mod._svtools;
24cdf0e10cSrcweir 
25cdf0e10cSrcweir import java.io.PrintWriter;
26cdf0e10cSrcweir 
27cdf0e10cSrcweir import lib.StatusException;
28cdf0e10cSrcweir import lib.TestCase;
29cdf0e10cSrcweir import lib.TestEnvironment;
30cdf0e10cSrcweir import lib.TestParameters;
31cdf0e10cSrcweir import util.AccessibilityTools;
32cdf0e10cSrcweir import util.DesktopTools;
33cdf0e10cSrcweir import util.SOfficeFactory;
34cdf0e10cSrcweir 
35cdf0e10cSrcweir import com.sun.star.accessibility.AccessibleRole;
36cdf0e10cSrcweir import com.sun.star.accessibility.XAccessible;
37cdf0e10cSrcweir import com.sun.star.awt.XWindow;
38cdf0e10cSrcweir import com.sun.star.beans.PropertyValue;
39cdf0e10cSrcweir import com.sun.star.frame.XController;
40cdf0e10cSrcweir import com.sun.star.frame.XDesktop;
41cdf0e10cSrcweir import com.sun.star.frame.XDispatch;
42cdf0e10cSrcweir import com.sun.star.frame.XDispatchProvider;
43cdf0e10cSrcweir import com.sun.star.frame.XFrame;
44cdf0e10cSrcweir import com.sun.star.frame.XModel;
45cdf0e10cSrcweir import com.sun.star.lang.XMultiServiceFactory;
46cdf0e10cSrcweir import com.sun.star.text.XTextDocument;
47cdf0e10cSrcweir import com.sun.star.uno.UnoRuntime;
48cdf0e10cSrcweir import com.sun.star.uno.XInterface;
49cdf0e10cSrcweir import com.sun.star.util.URL;
50cdf0e10cSrcweir import com.sun.star.view.XSelectionSupplier;
51cdf0e10cSrcweir 
52cdf0e10cSrcweir public class AccessibleBrowseBox extends TestCase {
53cdf0e10cSrcweir 
54cdf0e10cSrcweir     static XDesktop the_Desk;
55cdf0e10cSrcweir     static XTextDocument xTextDoc;
56cdf0e10cSrcweir 
57cdf0e10cSrcweir     /**
58cdf0e10cSrcweir      * Creates the Desktop service (<code>com.sun.star.frame.Desktop</code>).
59cdf0e10cSrcweir      */
initialize(TestParameters Param, PrintWriter log)60cdf0e10cSrcweir     protected void initialize(TestParameters Param, PrintWriter log) {
61cdf0e10cSrcweir         the_Desk = (XDesktop) UnoRuntime.queryInterface(
62cdf0e10cSrcweir             XDesktop.class, DesktopTools.createDesktop((XMultiServiceFactory) Param.getMSF()));
63cdf0e10cSrcweir     }
64cdf0e10cSrcweir 
65cdf0e10cSrcweir     /**
66cdf0e10cSrcweir      * Disposes the document, if exists, created in
67cdf0e10cSrcweir      * <code>createTestEnvironment</code> method.
68cdf0e10cSrcweir      */
cleanup(TestParameters Param, PrintWriter log)69cdf0e10cSrcweir     protected void cleanup(TestParameters Param, PrintWriter log) {
70cdf0e10cSrcweir 
71cdf0e10cSrcweir         log.println("disposing xTextDoc");
72cdf0e10cSrcweir 
73cdf0e10cSrcweir         if (xTextDoc != null) {
74cdf0e10cSrcweir             xTextDoc.dispose();
75cdf0e10cSrcweir         }
76cdf0e10cSrcweir     }
77cdf0e10cSrcweir 
78cdf0e10cSrcweir     /**
79cdf0e10cSrcweir      * Called to create an instance of <code>TestEnvironment</code> with an
80cdf0e10cSrcweir      * object to test and related objects. Subclasses should implement this
81cdf0e10cSrcweir      * method to provide the implementation and related objects. The method is
82cdf0e10cSrcweir      * called from <code>getTestEnvironment()</code>.
83cdf0e10cSrcweir      *
84cdf0e10cSrcweir      * @param tParam test parameters
85cdf0e10cSrcweir      * @param log writer to log information while testing
86cdf0e10cSrcweir      *
87cdf0e10cSrcweir      * @see TestEnvironment
88*5496b966SPedro Giffuni      * @see #getTestEnvironment
89cdf0e10cSrcweir      */
createTestEnvironment(TestParameters tParam, PrintWriter log)90cdf0e10cSrcweir     protected TestEnvironment createTestEnvironment(TestParameters tParam, PrintWriter log) {
91cdf0e10cSrcweir 
92cdf0e10cSrcweir         log.println("creating a test environment");
93cdf0e10cSrcweir 
94cdf0e10cSrcweir         if (xTextDoc != null) {
95cdf0e10cSrcweir             xTextDoc.dispose();        // get a soffice factory object
96cdf0e10cSrcweir         }
97cdf0e10cSrcweir         SOfficeFactory SOF = SOfficeFactory.getFactory((XMultiServiceFactory) tParam.getMSF());
98cdf0e10cSrcweir 
99cdf0e10cSrcweir         try {
100cdf0e10cSrcweir             log.println("creating a text document");
101cdf0e10cSrcweir             xTextDoc = SOF.createTextDoc(null);
102cdf0e10cSrcweir         } catch (com.sun.star.uno.Exception e) {
103cdf0e10cSrcweir             // Some exception occures.FAILED
104cdf0e10cSrcweir             e.printStackTrace(log);
105cdf0e10cSrcweir             throw new StatusException("Couldn't create document", e);
106cdf0e10cSrcweir         }
107cdf0e10cSrcweir 
108cdf0e10cSrcweir         shortWait();
109cdf0e10cSrcweir 
110cdf0e10cSrcweir         XModel aModel1 = (XModel) UnoRuntime.queryInterface(XModel.class, xTextDoc);
111cdf0e10cSrcweir 
112cdf0e10cSrcweir         XController secondController = aModel1.getCurrentController();
113cdf0e10cSrcweir 
114cdf0e10cSrcweir 
115cdf0e10cSrcweir         XDispatchProvider aProv = (XDispatchProvider) UnoRuntime.queryInterface(XDispatchProvider.class,
116cdf0e10cSrcweir             secondController);
117cdf0e10cSrcweir 
118cdf0e10cSrcweir         XDispatch getting = null;
119cdf0e10cSrcweir 
120cdf0e10cSrcweir         log.println("opening DatasourceBrowser");
121cdf0e10cSrcweir         URL the_url = new URL();
122cdf0e10cSrcweir         the_url.Complete = ".component:DB/DataSourceBrowser";
123cdf0e10cSrcweir         getting = aProv.queryDispatch(the_url, "_beamer", 12);
124cdf0e10cSrcweir         PropertyValue[] noArgs = new PropertyValue[0];
125cdf0e10cSrcweir         getting.dispatch(the_url, noArgs);
126cdf0e10cSrcweir 
127cdf0e10cSrcweir         shortWait();
128cdf0e10cSrcweir 
129cdf0e10cSrcweir         XFrame the_frame1 = the_Desk.getCurrentFrame();
130cdf0e10cSrcweir 
131cdf0e10cSrcweir         if (the_frame1 == null) {
132cdf0e10cSrcweir             log.println("Current frame was not found !!!");
133cdf0e10cSrcweir         }
134cdf0e10cSrcweir 
135cdf0e10cSrcweir         XFrame the_frame2 = the_frame1.findFrame("_beamer", 4);
136cdf0e10cSrcweir 
137cdf0e10cSrcweir         the_frame2.setName("DatasourceBrowser");
138cdf0e10cSrcweir 
139cdf0e10cSrcweir         XInterface oObj = null;
140cdf0e10cSrcweir 
141cdf0e10cSrcweir         final XSelectionSupplier xSelect = (XSelectionSupplier) UnoRuntime.queryInterface(
142cdf0e10cSrcweir             XSelectionSupplier.class, the_frame2.getController());
143cdf0e10cSrcweir 
144cdf0e10cSrcweir         PropertyValue[] params = new PropertyValue[]{new PropertyValue(), new PropertyValue(), new PropertyValue()};
145cdf0e10cSrcweir         params[0].Name = "DataSourceName";
146cdf0e10cSrcweir         params[0].Value = "Bibliography";
147cdf0e10cSrcweir         params[1].Name = "CommandType";
148cdf0e10cSrcweir         params[1].Value = new Integer(com.sun.star.sdb.CommandType.TABLE);
149cdf0e10cSrcweir         params[2].Name = "Command";
150cdf0e10cSrcweir         params[2].Value = "biblio";
151cdf0e10cSrcweir 
152cdf0e10cSrcweir         final PropertyValue[] fParams = params;
153cdf0e10cSrcweir 
154cdf0e10cSrcweir         shortWait();
155cdf0e10cSrcweir 
156cdf0e10cSrcweir         AccessibilityTools at = new AccessibilityTools();
157cdf0e10cSrcweir 
158cdf0e10cSrcweir         XWindow xWindow = secondController.getFrame().getContainerWindow();
159cdf0e10cSrcweir 
160cdf0e10cSrcweir         XAccessible xRoot = at.getAccessibleObject(xWindow);
161cdf0e10cSrcweir 
162cdf0e10cSrcweir         at.printAccessibleTree(log, xRoot, tParam.getBool(util.PropertyName.DEBUG_IS_ACTIVE));
163cdf0e10cSrcweir 
164cdf0e10cSrcweir         oObj = at.getAccessibleObjectForRole(xRoot, AccessibleRole.PANEL, "", "AccessibleBrowseBox");
165cdf0e10cSrcweir 
166cdf0e10cSrcweir         log.println("ImplementationName: " + util.utils.getImplName(oObj));
167cdf0e10cSrcweir 
168cdf0e10cSrcweir         TestEnvironment tEnv = new TestEnvironment(oObj);
169cdf0e10cSrcweir 
170cdf0e10cSrcweir 
171cdf0e10cSrcweir         tEnv.addObjRelation("EventProducer",
172cdf0e10cSrcweir             new ifc.accessibility._XAccessibleEventBroadcaster.EventProducer() {
173cdf0e10cSrcweir 
174cdf0e10cSrcweir                 public void fireEvent() {
175cdf0e10cSrcweir                     try {
176cdf0e10cSrcweir                         xSelect.select(fParams);
177cdf0e10cSrcweir                     } catch (com.sun.star.uno.Exception e) {
178cdf0e10cSrcweir                         e.printStackTrace();
179cdf0e10cSrcweir                     }
180cdf0e10cSrcweir                 }
181cdf0e10cSrcweir             });
182cdf0e10cSrcweir 
183cdf0e10cSrcweir         return tEnv;
184cdf0e10cSrcweir     }
185cdf0e10cSrcweir 
186cdf0e10cSrcweir     /**
187cdf0e10cSrcweir      * Sleeps for 0.5 sec. to allow StarOffice to react on <code>
188cdf0e10cSrcweir      * reset</code> call.
189cdf0e10cSrcweir      */
shortWait()190cdf0e10cSrcweir     private void shortWait() {
191cdf0e10cSrcweir         try {
192cdf0e10cSrcweir             Thread.sleep(5000);
193cdf0e10cSrcweir         } catch (InterruptedException e) {
194cdf0e10cSrcweir             System.out.println("While waiting :" + e);
195cdf0e10cSrcweir         }
196cdf0e10cSrcweir     }
197cdf0e10cSrcweir }
198