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