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 
24cdf0e10cSrcweir package mod._svtools;
25cdf0e10cSrcweir 
26cdf0e10cSrcweir import java.io.PrintWriter;
27cdf0e10cSrcweir 
28cdf0e10cSrcweir import lib.StatusException;
29cdf0e10cSrcweir import lib.TestCase;
30cdf0e10cSrcweir import lib.TestEnvironment;
31cdf0e10cSrcweir import lib.TestParameters;
32cdf0e10cSrcweir import util.AccessibilityTools;
33cdf0e10cSrcweir import util.DesktopTools;
34cdf0e10cSrcweir import util.SOfficeFactory;
35cdf0e10cSrcweir 
36cdf0e10cSrcweir import com.sun.star.accessibility.AccessibleRole;
37cdf0e10cSrcweir import com.sun.star.accessibility.XAccessible;
38cdf0e10cSrcweir import com.sun.star.awt.XWindow;
39cdf0e10cSrcweir import com.sun.star.beans.PropertyValue;
40cdf0e10cSrcweir import com.sun.star.frame.XController;
41cdf0e10cSrcweir import com.sun.star.frame.XDesktop;
42cdf0e10cSrcweir import com.sun.star.frame.XDispatch;
43cdf0e10cSrcweir import com.sun.star.frame.XDispatchProvider;
44cdf0e10cSrcweir import com.sun.star.frame.XFrame;
45cdf0e10cSrcweir import com.sun.star.frame.XModel;
46cdf0e10cSrcweir import com.sun.star.lang.XInitialization;
47cdf0e10cSrcweir import com.sun.star.lang.XMultiServiceFactory;
48cdf0e10cSrcweir import com.sun.star.text.XTextDocument;
49cdf0e10cSrcweir import com.sun.star.uno.UnoRuntime;
50cdf0e10cSrcweir import com.sun.star.uno.XInterface;
51cdf0e10cSrcweir import com.sun.star.util.URL;
52cdf0e10cSrcweir 
53cdf0e10cSrcweir /**
54cdf0e10cSrcweir  * Test for object that implements the following interfaces :
55cdf0e10cSrcweir  * <ul>
56cdf0e10cSrcweir  *  <li>
57cdf0e10cSrcweir  *      <code>::com::sun::star::accessibility::XAccessibleContext
58cdf0e10cSrcweir  *  </code></li>
59cdf0e10cSrcweir  *  <li>
60cdf0e10cSrcweir  *      <code>::com::sun::star::accessibility::XAccessibleEventBroadcaster
61cdf0e10cSrcweir  *  </code></li>
62cdf0e10cSrcweir  * </ul> <p>
63cdf0e10cSrcweir  *
64cdf0e10cSrcweir  * @see com.sun.star.accessibility.XAccessibleEventBroadcaster
65cdf0e10cSrcweir  * @see com.sun.star.accessibility.XAccessibleContext
66cdf0e10cSrcweir  * @see ifc.accessibility._XAccessibleEventBroadcaster
67cdf0e10cSrcweir  * @see ifc.accessibility._XAccessibleContext
68cdf0e10cSrcweir  */
69cdf0e10cSrcweir public class AccessibleBrowseBoxTableCell extends TestCase {
70cdf0e10cSrcweir 
71cdf0e10cSrcweir     static XDesktop the_Desk;
72cdf0e10cSrcweir     static XTextDocument xTextDoc;
73cdf0e10cSrcweir 
74cdf0e10cSrcweir     /**
75cdf0e10cSrcweir      * Creates the Desktop service (<code>com.sun.star.frame.Desktop</code>).
76cdf0e10cSrcweir      */
initialize(TestParameters Param, PrintWriter log)77cdf0e10cSrcweir     protected void initialize(TestParameters Param, PrintWriter log) {
78cdf0e10cSrcweir         the_Desk = (XDesktop) UnoRuntime.queryInterface(
79cdf0e10cSrcweir                     XDesktop.class, DesktopTools.createDesktop((XMultiServiceFactory)Param.getMSF()) );
80cdf0e10cSrcweir     }
81cdf0e10cSrcweir 
82cdf0e10cSrcweir     /**
83cdf0e10cSrcweir      * Disposes the document, if exists, created in
84cdf0e10cSrcweir      * <code>createTestEnvironment</code> method.
85cdf0e10cSrcweir      */
cleanup( TestParameters Param, PrintWriter log)86cdf0e10cSrcweir     protected void cleanup( TestParameters Param, PrintWriter log) {
87cdf0e10cSrcweir 
88cdf0e10cSrcweir         log.println("disposing xTextDoc");
89cdf0e10cSrcweir 
90cdf0e10cSrcweir         if (xTextDoc != null) {
91cdf0e10cSrcweir             xTextDoc.dispose();
92cdf0e10cSrcweir         }
93cdf0e10cSrcweir     }
94cdf0e10cSrcweir 
95cdf0e10cSrcweir     /**
96cdf0e10cSrcweir      * Creates a text document. Opens the DataSource browser and loads
97cdf0e10cSrcweir      * the table. Creates an instance of the service
98cdf0e10cSrcweir      * <code>com.sun.star.awt.Toolkit</code> and gets active top window.
99cdf0e10cSrcweir      * Then obtains an accessible object with the role
100cdf0e10cSrcweir      * <code>AccessibleRole.TABLE_CELL</code>.
101cdf0e10cSrcweir      * Object relations created :
102cdf0e10cSrcweir      * <ul>
103cdf0e10cSrcweir      *  <li> <code>'EventProducer'</code> for
104cdf0e10cSrcweir      *      {@link ifc.accessibility._XAccessibleEventBroadcaster}:
105cdf0e10cSrcweir      *      method <code>fireEvent()</code> is empty because object is transient
106cdf0e10cSrcweir      *   </li>
107cdf0e10cSrcweir      * </ul>
108cdf0e10cSrcweir      *
109cdf0e10cSrcweir      * @param tParam test parameters
110cdf0e10cSrcweir      * @param log writer to log information while testing
111cdf0e10cSrcweir      *
112cdf0e10cSrcweir      * @see com.sun.star.awt.Toolkit
113cdf0e10cSrcweir      * @see com.sun.star.accessibility.AccessibleRole
114cdf0e10cSrcweir      * @see ifc.accessibility._XAccessibleEventBroadcaster
115cdf0e10cSrcweir      * @see com.sun.star.accessibility.XAccessibleEventBroadcaster
116cdf0e10cSrcweir      */
createTestEnvironment(TestParameters tParam, PrintWriter log)117cdf0e10cSrcweir     protected TestEnvironment createTestEnvironment(TestParameters tParam, PrintWriter log) {
118cdf0e10cSrcweir 
119cdf0e10cSrcweir         log.println( "creating a test environment" );
120cdf0e10cSrcweir 
121cdf0e10cSrcweir         if (xTextDoc != null) xTextDoc.dispose();
122cdf0e10cSrcweir 
123cdf0e10cSrcweir         // get a soffice factory object
124cdf0e10cSrcweir         SOfficeFactory SOF = SOfficeFactory.getFactory( (XMultiServiceFactory)tParam.getMSF());
125cdf0e10cSrcweir 
126cdf0e10cSrcweir         try {
127cdf0e10cSrcweir             log.println( "creating a text document" );
128cdf0e10cSrcweir             xTextDoc = SOF.createTextDoc(null);
129cdf0e10cSrcweir         } catch ( com.sun.star.uno.Exception e ) {
130cdf0e10cSrcweir             // Some exception occures.FAILED
131cdf0e10cSrcweir             e.printStackTrace( log );
132cdf0e10cSrcweir             throw new StatusException( "Couldn't create document", e );
133cdf0e10cSrcweir         }
134cdf0e10cSrcweir 
135cdf0e10cSrcweir         shortWait();
136cdf0e10cSrcweir 
137cdf0e10cSrcweir         XModel aModel1 = (XModel)
138cdf0e10cSrcweir                     UnoRuntime.queryInterface(XModel.class, xTextDoc);
139cdf0e10cSrcweir 
140cdf0e10cSrcweir         XController secondController = aModel1.getCurrentController();
141cdf0e10cSrcweir 
142cdf0e10cSrcweir 
143cdf0e10cSrcweir         XDispatchProvider aProv = (XDispatchProvider)
144cdf0e10cSrcweir             UnoRuntime.queryInterface(XDispatchProvider.class,secondController);
145cdf0e10cSrcweir 
146cdf0e10cSrcweir         XDispatch getting = null;
147cdf0e10cSrcweir 
148cdf0e10cSrcweir         log.println( "opening DatasourceBrowser" );
149cdf0e10cSrcweir         URL the_url = new URL();
150cdf0e10cSrcweir         the_url.Complete = ".component:DB/DataSourceBrowser";
151cdf0e10cSrcweir         getting = aProv.queryDispatch(the_url,"_beamer",12);
152cdf0e10cSrcweir         PropertyValue[] noArgs = new PropertyValue[0];
153cdf0e10cSrcweir         getting.dispatch(the_url,noArgs);
154cdf0e10cSrcweir 
155cdf0e10cSrcweir         shortWait();
156cdf0e10cSrcweir 
157cdf0e10cSrcweir         XFrame the_frame1 = the_Desk.getCurrentFrame();
158cdf0e10cSrcweir 
159cdf0e10cSrcweir         if (the_frame1 == null) {
160cdf0e10cSrcweir             log.println("Current frame was not found !!!");
161cdf0e10cSrcweir         }
162cdf0e10cSrcweir 
163cdf0e10cSrcweir         XFrame the_frame2 = the_frame1.findFrame("_beamer",4);
164cdf0e10cSrcweir 
165cdf0e10cSrcweir         the_frame2.setName("DatasourceBrowser");
166cdf0e10cSrcweir 
167cdf0e10cSrcweir         XInterface oObj = null;
168cdf0e10cSrcweir 
169cdf0e10cSrcweir         final XInitialization xInit = (XInitialization)
170cdf0e10cSrcweir                 UnoRuntime.queryInterface(
171cdf0e10cSrcweir                         XInitialization.class, the_frame2.getController());
172cdf0e10cSrcweir 
173cdf0e10cSrcweir         Object[] params = new Object[3];
174cdf0e10cSrcweir         PropertyValue param1 = new PropertyValue();
175cdf0e10cSrcweir         param1.Name = "DataSourceName";
176cdf0e10cSrcweir         param1.Value = "Bibliography";
177cdf0e10cSrcweir         params[0] = param1;
178cdf0e10cSrcweir         PropertyValue param2 = new PropertyValue();
179cdf0e10cSrcweir         param2.Name = "CommandType";
180cdf0e10cSrcweir         param2.Value = new Integer(com.sun.star.sdb.CommandType.TABLE);
181cdf0e10cSrcweir         params[1] = param2;
182cdf0e10cSrcweir         PropertyValue param3 = new PropertyValue();
183cdf0e10cSrcweir         param3.Name = "Command";
184cdf0e10cSrcweir         param3.Value = "biblio";
185cdf0e10cSrcweir         params[2] = param3;
186cdf0e10cSrcweir 
187cdf0e10cSrcweir         shortWait();
188cdf0e10cSrcweir 
189cdf0e10cSrcweir         AccessibilityTools at = new AccessibilityTools();
190cdf0e10cSrcweir 
191cdf0e10cSrcweir         XWindow xWindow = secondController.getFrame().getContainerWindow();
192cdf0e10cSrcweir 
193cdf0e10cSrcweir         XAccessible xRoot = at.getAccessibleObject(xWindow);
194cdf0e10cSrcweir 
195cdf0e10cSrcweir         oObj = at.getAccessibleObjectForRole(xRoot, AccessibleRole.TABLE_CELL);
196cdf0e10cSrcweir 
197cdf0e10cSrcweir         log.println("ImplementationName: "+util.utils.getImplName(oObj));
198cdf0e10cSrcweir 
199cdf0e10cSrcweir         TestEnvironment tEnv = new TestEnvironment( oObj );
200cdf0e10cSrcweir 
201cdf0e10cSrcweir         tEnv.addObjRelation("EventProducer",
202cdf0e10cSrcweir             new ifc.accessibility._XAccessibleEventBroadcaster.EventProducer(){
203cdf0e10cSrcweir                 public void fireEvent() {
204cdf0e10cSrcweir                 }
205cdf0e10cSrcweir             });
206cdf0e10cSrcweir 
207cdf0e10cSrcweir         return tEnv;
208cdf0e10cSrcweir     }
209cdf0e10cSrcweir 
210cdf0e10cSrcweir     /**
211cdf0e10cSrcweir     * Sleeps for 0.5 sec. to allow StarOffice to react on <code>
212cdf0e10cSrcweir     * reset</code> call.
213cdf0e10cSrcweir     */
shortWait()214cdf0e10cSrcweir     private void shortWait() {
215cdf0e10cSrcweir         try {
216*170fb961SPedro Giffuni             Thread.sleep(5000);
217cdf0e10cSrcweir         } catch (InterruptedException e) {
218cdf0e10cSrcweir             System.out.println("While waiting :" + e) ;
219cdf0e10cSrcweir         }
220cdf0e10cSrcweir     }
221cdf0e10cSrcweir 
222cdf0e10cSrcweir }
223