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._sc;
25cdf0e10cSrcweir 
26cdf0e10cSrcweir import java.io.PrintWriter;
27cdf0e10cSrcweir 
28cdf0e10cSrcweir import lib.Status;
29cdf0e10cSrcweir import lib.StatusException;
30cdf0e10cSrcweir import lib.TestCase;
31cdf0e10cSrcweir import lib.TestEnvironment;
32cdf0e10cSrcweir import lib.TestParameters;
33cdf0e10cSrcweir import util.AccessibilityTools;
34cdf0e10cSrcweir import util.SOfficeFactory;
35cdf0e10cSrcweir import util.utils;
36cdf0e10cSrcweir 
37cdf0e10cSrcweir import com.sun.star.accessibility.AccessibleRole;
38cdf0e10cSrcweir import com.sun.star.accessibility.XAccessible;
39cdf0e10cSrcweir import com.sun.star.accessibility.XAccessibleContext;
40cdf0e10cSrcweir import com.sun.star.awt.XWindow;
41cdf0e10cSrcweir import com.sun.star.container.XIndexAccess;
42cdf0e10cSrcweir import com.sun.star.frame.XController;
43cdf0e10cSrcweir import com.sun.star.frame.XDispatch;
44cdf0e10cSrcweir import com.sun.star.frame.XDispatchProvider;
45cdf0e10cSrcweir import com.sun.star.frame.XModel;
46cdf0e10cSrcweir import com.sun.star.lang.XComponent;
47cdf0e10cSrcweir import com.sun.star.lang.XMultiServiceFactory;
48cdf0e10cSrcweir import com.sun.star.sheet.XSpreadsheet;
49cdf0e10cSrcweir import com.sun.star.sheet.XSpreadsheetDocument;
50cdf0e10cSrcweir import com.sun.star.sheet.XSpreadsheets;
51cdf0e10cSrcweir import com.sun.star.table.XCell;
52cdf0e10cSrcweir import com.sun.star.uno.AnyConverter;
53cdf0e10cSrcweir import com.sun.star.uno.Type;
54cdf0e10cSrcweir import com.sun.star.uno.UnoRuntime;
55cdf0e10cSrcweir import com.sun.star.util.URL;
56cdf0e10cSrcweir import com.sun.star.util.XURLTransformer;
57cdf0e10cSrcweir 
58cdf0e10cSrcweir 
59cdf0e10cSrcweir public class AccessibleEditableTextPara_PreviewCell extends TestCase {
60cdf0e10cSrcweir     static XSpreadsheetDocument xSheetDoc = null;
61cdf0e10cSrcweir 
62cdf0e10cSrcweir     /**
63cdf0e10cSrcweir      * Creates a spreadsheet document.
64cdf0e10cSrcweir      */
initialize( TestParameters tParam, PrintWriter log )65cdf0e10cSrcweir     protected void initialize( TestParameters tParam, PrintWriter log ) {
66cdf0e10cSrcweir         SOfficeFactory SOF = SOfficeFactory.getFactory( (XMultiServiceFactory) tParam.getMSF() );
67cdf0e10cSrcweir         try {
68cdf0e10cSrcweir             log.println( "creating a Spreadsheet document" );
69cdf0e10cSrcweir             xSheetDoc = SOF.createCalcDoc(null);
70cdf0e10cSrcweir         } catch ( com.sun.star.uno.Exception e ) {
71*30acf5e8Spfg             // Some exception occured.FAILED
72cdf0e10cSrcweir             e.printStackTrace( log );
73cdf0e10cSrcweir             throw new StatusException( "Couldn't create document", e );
74cdf0e10cSrcweir         }
75cdf0e10cSrcweir     }
76cdf0e10cSrcweir 
77cdf0e10cSrcweir     /**
78cdf0e10cSrcweir      * Disposes a spreadsheet document.
79cdf0e10cSrcweir      */
cleanup( TestParameters tParam, PrintWriter log )80cdf0e10cSrcweir     protected void cleanup( TestParameters tParam, PrintWriter log ) {
81cdf0e10cSrcweir         log.println( "    disposing xSheetDoc " );
82cdf0e10cSrcweir         XComponent oComp = (XComponent)UnoRuntime.queryInterface
83cdf0e10cSrcweir             (XComponent.class, xSheetDoc);
84cdf0e10cSrcweir         util.DesktopTools.closeDoc(oComp);
85cdf0e10cSrcweir     }
86cdf0e10cSrcweir 
87cdf0e10cSrcweir 
88cdf0e10cSrcweir     /**
89cdf0e10cSrcweir      * Creating a Testenvironment for the interfaces to be tested.
90cdf0e10cSrcweir      * Obtains the accessible object for a one of cell in preview mode.
91cdf0e10cSrcweir      */
createTestEnvironment(TestParameters Param, PrintWriter log)92cdf0e10cSrcweir     protected synchronized TestEnvironment createTestEnvironment(TestParameters Param, PrintWriter log) {
93cdf0e10cSrcweir 
94cdf0e10cSrcweir         XAccessibleContext oObj = null;
95cdf0e10cSrcweir         XCell xCell = null;
96cdf0e10cSrcweir 
97cdf0e10cSrcweir         try {
98cdf0e10cSrcweir             log.println("Getting spreadsheet") ;
99cdf0e10cSrcweir             XSpreadsheets oSheets = xSheetDoc.getSheets() ;
100cdf0e10cSrcweir             XIndexAccess oIndexSheets = (XIndexAccess)
101cdf0e10cSrcweir             UnoRuntime.queryInterface(XIndexAccess.class, oSheets);
102cdf0e10cSrcweir             XSpreadsheet oSheet = (XSpreadsheet) AnyConverter.toObject(
103cdf0e10cSrcweir                     new Type(XSpreadsheet.class),oIndexSheets.getByIndex(0));
104cdf0e10cSrcweir 
105cdf0e10cSrcweir             log.println("Getting a cell from sheet") ;
106cdf0e10cSrcweir             xCell = oSheet.getCellByPosition(0, 0);
107cdf0e10cSrcweir         } catch (com.sun.star.lang.WrappedTargetException e) {
108cdf0e10cSrcweir             e.printStackTrace(log);
109cdf0e10cSrcweir             throw new StatusException(
110cdf0e10cSrcweir                 "Error getting cell object from spreadsheet document", e);
111cdf0e10cSrcweir         } catch (com.sun.star.lang.IndexOutOfBoundsException e) {
112cdf0e10cSrcweir             e.printStackTrace(log);
113cdf0e10cSrcweir             throw new StatusException(
114cdf0e10cSrcweir                 "Error getting cell object from spreadsheet document", e);
115cdf0e10cSrcweir         } catch (com.sun.star.lang.IllegalArgumentException e) {
116cdf0e10cSrcweir             e.printStackTrace(log);
117cdf0e10cSrcweir             throw new StatusException(
118cdf0e10cSrcweir                 "Error getting cell object from spreadsheet document", e);
119cdf0e10cSrcweir         }
120cdf0e10cSrcweir 
121cdf0e10cSrcweir         xCell.setFormula("Value");
122cdf0e10cSrcweir 
123cdf0e10cSrcweir         XModel xModel = (XModel)
124cdf0e10cSrcweir             UnoRuntime.queryInterface(XModel.class, xSheetDoc);
125cdf0e10cSrcweir 
126cdf0e10cSrcweir         XController xController = xModel.getCurrentController();
127cdf0e10cSrcweir 
128cdf0e10cSrcweir         //switch to 'Print Preview' mode
129cdf0e10cSrcweir         try {
130cdf0e10cSrcweir             XDispatchProvider xDispProv = (XDispatchProvider)
131cdf0e10cSrcweir                 UnoRuntime.queryInterface(XDispatchProvider.class, xController);
132cdf0e10cSrcweir             XURLTransformer xParser = (com.sun.star.util.XURLTransformer)
133cdf0e10cSrcweir                 UnoRuntime.queryInterface(XURLTransformer.class,
134cdf0e10cSrcweir             ( (XMultiServiceFactory) Param.getMSF()).createInstance("com.sun.star.util.URLTransformer"));
135cdf0e10cSrcweir             URL[] aParseURL = new URL[1];
136cdf0e10cSrcweir             aParseURL[0] = new URL();
137cdf0e10cSrcweir             aParseURL[0].Complete = ".uno:PrintPreview";
138cdf0e10cSrcweir             xParser.parseStrict(aParseURL);
139cdf0e10cSrcweir             URL aURL = aParseURL[0];
140cdf0e10cSrcweir             XDispatch xDispatcher = xDispProv.queryDispatch(aURL, "", 0);
141cdf0e10cSrcweir             if(xDispatcher != null)
142cdf0e10cSrcweir                 xDispatcher.dispatch( aURL, null );
143cdf0e10cSrcweir         } catch (com.sun.star.uno.Exception e) {
144cdf0e10cSrcweir             log.println("Couldn't change mode");
145cdf0e10cSrcweir             throw new StatusException(Status.failed("Couldn't change mode"));
146cdf0e10cSrcweir         }
147cdf0e10cSrcweir 
148cdf0e10cSrcweir         shortWait();
149cdf0e10cSrcweir 
150cdf0e10cSrcweir 
151cdf0e10cSrcweir         XWindow xWindow = AccessibilityTools.getCurrentWindow( (XMultiServiceFactory) Param.getMSF(), xModel);
152cdf0e10cSrcweir         XAccessible xRoot = AccessibilityTools.getAccessibleObject(xWindow);
153cdf0e10cSrcweir         //AccessibilityTools.printAccessibleTree(log,xRoot);
154cdf0e10cSrcweir         AccessibilityTools.getAccessibleObjectForRole(xRoot, AccessibleRole.TABLE_CELL,true);
155cdf0e10cSrcweir 
156cdf0e10cSrcweir         xRoot = AccessibilityTools.SearchedAccessible;
157cdf0e10cSrcweir 
158cdf0e10cSrcweir         //AccessibilityTools.printAccessibleTree(log,xRoot);
159cdf0e10cSrcweir 
160cdf0e10cSrcweir         oObj = AccessibilityTools.getAccessibleObjectForRole(xRoot,AccessibleRole.PARAGRAPH);
161cdf0e10cSrcweir 
162cdf0e10cSrcweir         log.println("ImplementationName " + utils.getImplName(oObj));
163cdf0e10cSrcweir         log.println("AccessibleName " + oObj.getAccessibleName());
164cdf0e10cSrcweir         log.println("Parent " + utils.getImplName(oObj.getAccessibleParent()));
165cdf0e10cSrcweir 
166cdf0e10cSrcweir         TestEnvironment tEnv = new TestEnvironment( oObj );
167cdf0e10cSrcweir 
168cdf0e10cSrcweir         tEnv.addObjRelation("EditOnly", "AccessibleEditableTextPara_PreviewCell");
169cdf0e10cSrcweir         tEnv.addObjRelation("Destroy", "AccessibleEditableTextPara_PreviewCell");
170cdf0e10cSrcweir 
171cdf0e10cSrcweir         final XCell cell_to_change = xCell;
172cdf0e10cSrcweir         tEnv.addObjRelation("EventProducer",
173cdf0e10cSrcweir             new ifc.accessibility._XAccessibleEventBroadcaster.EventProducer(){
174cdf0e10cSrcweir                 public void fireEvent() {
175cdf0e10cSrcweir                     cell_to_change.setFormula("NewString");
176cdf0e10cSrcweir                 }
177cdf0e10cSrcweir             });
178cdf0e10cSrcweir 
179cdf0e10cSrcweir         return tEnv;
180cdf0e10cSrcweir     }
181cdf0e10cSrcweir 
shortWait()182cdf0e10cSrcweir     protected void shortWait() {
183cdf0e10cSrcweir         try {
184cdf0e10cSrcweir             Thread.sleep(1000) ;
185cdf0e10cSrcweir         } catch (InterruptedException e) {
186cdf0e10cSrcweir             System.out.println("While waiting :" + e);
187cdf0e10cSrcweir         }
188cdf0e10cSrcweir     }
189cdf0e10cSrcweir }