xref: /AOO41X/main/qadevOOo/tests/java/mod/_svx/AccessibleEditableTextPara.java (revision ef39d40d3f5e66cf3f035b3e93783012b340500d)
1*ef39d40dSAndrew Rist /**************************************************************
2cdf0e10cSrcweir  *
3*ef39d40dSAndrew Rist  * Licensed to the Apache Software Foundation (ASF) under one
4*ef39d40dSAndrew Rist  * or more contributor license agreements.  See the NOTICE file
5*ef39d40dSAndrew Rist  * distributed with this work for additional information
6*ef39d40dSAndrew Rist  * regarding copyright ownership.  The ASF licenses this file
7*ef39d40dSAndrew Rist  * to you under the Apache License, Version 2.0 (the
8*ef39d40dSAndrew Rist  * "License"); you may not use this file except in compliance
9*ef39d40dSAndrew Rist  * with the License.  You may obtain a copy of the License at
10cdf0e10cSrcweir  *
11*ef39d40dSAndrew Rist  *   http://www.apache.org/licenses/LICENSE-2.0
12cdf0e10cSrcweir  *
13*ef39d40dSAndrew Rist  * Unless required by applicable law or agreed to in writing,
14*ef39d40dSAndrew Rist  * software distributed under the License is distributed on an
15*ef39d40dSAndrew Rist  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16*ef39d40dSAndrew Rist  * KIND, either express or implied.  See the License for the
17*ef39d40dSAndrew Rist  * specific language governing permissions and limitations
18*ef39d40dSAndrew Rist  * under the License.
19cdf0e10cSrcweir  *
20*ef39d40dSAndrew Rist  *************************************************************/
21*ef39d40dSAndrew Rist 
22*ef39d40dSAndrew Rist 
23cdf0e10cSrcweir 
24cdf0e10cSrcweir package mod._svx;
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.SOfficeFactory;
34cdf0e10cSrcweir import util.utils;
35cdf0e10cSrcweir 
36cdf0e10cSrcweir import com.sun.star.accessibility.AccessibleRole;
37cdf0e10cSrcweir import com.sun.star.accessibility.XAccessible;
38cdf0e10cSrcweir import com.sun.star.accessibility.XAccessibleContext;
39cdf0e10cSrcweir import com.sun.star.accessibility.XAccessibleEditableText;
40cdf0e10cSrcweir import com.sun.star.awt.XWindow;
41cdf0e10cSrcweir import com.sun.star.frame.XModel;
42cdf0e10cSrcweir import com.sun.star.lang.XComponent;
43cdf0e10cSrcweir import com.sun.star.lang.XMultiServiceFactory;
44cdf0e10cSrcweir import com.sun.star.uno.UnoRuntime;
45cdf0e10cSrcweir import com.sun.star.uno.XInterface;
46cdf0e10cSrcweir 
47cdf0e10cSrcweir 
48cdf0e10cSrcweir public class AccessibleEditableTextPara extends TestCase {
49cdf0e10cSrcweir 
50cdf0e10cSrcweir     static XComponent xSpreadsheetDoc = null;
51cdf0e10cSrcweir 
52cdf0e10cSrcweir     /**
53cdf0e10cSrcweir     * Called to create an instance of <code>TestEnvironment</code>
54cdf0e10cSrcweir     * with an object to test and related objects.
55cdf0e10cSrcweir     * Obtains accissible object for the spreadsheet document.
56cdf0e10cSrcweir     *
57cdf0e10cSrcweir     * @param tParam test parameters
58cdf0e10cSrcweir     * @param log writer to log information while testing
59cdf0e10cSrcweir     *
60cdf0e10cSrcweir     * @see TestEnvironment
61cdf0e10cSrcweir     * @see #getTestEnvironment()
62cdf0e10cSrcweir     */
63cdf0e10cSrcweir     protected TestEnvironment createTestEnvironment(
64cdf0e10cSrcweir         TestParameters Param, PrintWriter log) {
65cdf0e10cSrcweir 
66cdf0e10cSrcweir         XInterface oObj = null;
67cdf0e10cSrcweir 
68cdf0e10cSrcweir 
69cdf0e10cSrcweir         XModel aModel = (XModel)
70cdf0e10cSrcweir             UnoRuntime.queryInterface(XModel.class, xSpreadsheetDoc);
71cdf0e10cSrcweir 
72cdf0e10cSrcweir         AccessibilityTools at = new AccessibilityTools();
73cdf0e10cSrcweir 
74cdf0e10cSrcweir         XWindow xWindow = at.getCurrentWindow( (XMultiServiceFactory) Param.getMSF(), aModel);
75cdf0e10cSrcweir         XAccessible xRoot = at.getAccessibleObject(xWindow);
76cdf0e10cSrcweir 
77cdf0e10cSrcweir         at.printAccessibleTree(log, xRoot, Param.getBool(util.PropertyName.DEBUG_IS_ACTIVE));
78cdf0e10cSrcweir 
79cdf0e10cSrcweir         XAccessibleContext InputLine = at.getAccessibleObjectForRole(xRoot, AccessibleRole.TEXT_FRAME,"Input line");
80cdf0e10cSrcweir         try {
81cdf0e10cSrcweir             oObj = InputLine.getAccessibleChild(0);
82cdf0e10cSrcweir             XAccessibleEditableText et = (XAccessibleEditableText) UnoRuntime.queryInterface(XAccessibleEditableText.class, oObj);
83cdf0e10cSrcweir             et.setText("AccessibleEditablePara");
84cdf0e10cSrcweir         } catch (com.sun.star.lang.IndexOutOfBoundsException e) {
85cdf0e10cSrcweir 
86cdf0e10cSrcweir         }
87cdf0e10cSrcweir         log.println("ImplementationName " + utils.getImplName(oObj));
88cdf0e10cSrcweir 
89cdf0e10cSrcweir         TestEnvironment tEnv = new TestEnvironment(oObj);
90cdf0e10cSrcweir 
91cdf0e10cSrcweir         final XAccessibleEditableText edText = (XAccessibleEditableText)
92cdf0e10cSrcweir             UnoRuntime.queryInterface(XAccessibleEditableText.class,oObj) ;
93cdf0e10cSrcweir 
94cdf0e10cSrcweir         tEnv.addObjRelation("EventProducer",
95cdf0e10cSrcweir             new ifc.accessibility._XAccessibleEventBroadcaster.EventProducer() {
96cdf0e10cSrcweir                 public void fireEvent() {
97cdf0e10cSrcweir                     try {
98cdf0e10cSrcweir                     int l = new String("AccessibleEditablePara").length();
99cdf0e10cSrcweir                     edText.deleteText(0, l);
100cdf0e10cSrcweir                     edText.setText("Event");
101cdf0e10cSrcweir                     edText.setText("AccessibleEditablePara");
102cdf0e10cSrcweir                     }catch(com.sun.star.lang.IndexOutOfBoundsException e) {}
103cdf0e10cSrcweir                 }
104cdf0e10cSrcweir             });
105cdf0e10cSrcweir 
106cdf0e10cSrcweir         return tEnv;
107cdf0e10cSrcweir 
108cdf0e10cSrcweir     }
109cdf0e10cSrcweir 
110cdf0e10cSrcweir     /**
111cdf0e10cSrcweir     * Called while disposing a <code>TestEnvironment</code>.
112cdf0e10cSrcweir     * Disposes text document.
113cdf0e10cSrcweir     * @param tParam test parameters
114cdf0e10cSrcweir     * @param tEnv the environment to cleanup
115cdf0e10cSrcweir     * @param log writer to log information while testing
116cdf0e10cSrcweir     */
117cdf0e10cSrcweir     protected void cleanup( TestParameters Param, PrintWriter log) {
118cdf0e10cSrcweir         log.println( "    disposing xSheetDoc " );
119cdf0e10cSrcweir         util.DesktopTools.closeDoc(xSpreadsheetDoc);
120cdf0e10cSrcweir     }
121cdf0e10cSrcweir 
122cdf0e10cSrcweir     /**
123cdf0e10cSrcweir      * Called while the <code>TestCase</code> initialization. In the
124cdf0e10cSrcweir      * implementation does nothing. Subclasses can override to initialize
125cdf0e10cSrcweir      * objects shared among all <code>TestEnvironment</code>s.
126cdf0e10cSrcweir      *
127cdf0e10cSrcweir      * @param tParam test parameters
128cdf0e10cSrcweir      * @param log writer to log information while testing
129cdf0e10cSrcweir      *
130cdf0e10cSrcweir      * @see #initializeTestCase()
131cdf0e10cSrcweir      */
132cdf0e10cSrcweir     protected void initialize(TestParameters Param, PrintWriter log) {
133cdf0e10cSrcweir         // get a soffice factory object
134cdf0e10cSrcweir         SOfficeFactory SOF = SOfficeFactory.getFactory(  (XMultiServiceFactory) Param.getMSF());
135cdf0e10cSrcweir 
136cdf0e10cSrcweir         try {
137cdf0e10cSrcweir             log.println("creating a spreadsheetdocument");
138cdf0e10cSrcweir             xSpreadsheetDoc = (XComponent) UnoRuntime.queryInterface(XComponent.class,SOF.createCalcDoc(null));
139cdf0e10cSrcweir             shortWait();
140cdf0e10cSrcweir         } catch (com.sun.star.uno.Exception e) {
141cdf0e10cSrcweir             e.printStackTrace( log );
142cdf0e10cSrcweir             throw new StatusException( "Couldn't create document ", e );
143cdf0e10cSrcweir         }
144cdf0e10cSrcweir     }
145cdf0e10cSrcweir 
146cdf0e10cSrcweir     /**
147cdf0e10cSrcweir     * Sleeps for 0.5 sec. to allow StarOffice to react on <code>
148cdf0e10cSrcweir     * reset</code> call.
149cdf0e10cSrcweir     */
150cdf0e10cSrcweir     private void shortWait() {
151cdf0e10cSrcweir         try {
152cdf0e10cSrcweir             Thread.sleep(500) ;
153cdf0e10cSrcweir         } catch (InterruptedException e) {
154cdf0e10cSrcweir             log.println("While waiting :" + e) ;
155cdf0e10cSrcweir         }
156cdf0e10cSrcweir     }
157cdf0e10cSrcweir 
158cdf0e10cSrcweir }