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.beans.XPropertySet;
41cdf0e10cSrcweir import com.sun.star.container.XIndexAccess;
42cdf0e10cSrcweir import com.sun.star.container.XNameAccess;
43cdf0e10cSrcweir import com.sun.star.frame.XController;
44cdf0e10cSrcweir import com.sun.star.frame.XDispatch;
45cdf0e10cSrcweir import com.sun.star.frame.XDispatchProvider;
46cdf0e10cSrcweir import com.sun.star.frame.XModel;
47cdf0e10cSrcweir import com.sun.star.lang.XMultiServiceFactory;
48cdf0e10cSrcweir import com.sun.star.sheet.XHeaderFooterContent;
49cdf0e10cSrcweir import com.sun.star.sheet.XSpreadsheet;
50cdf0e10cSrcweir import com.sun.star.sheet.XSpreadsheetDocument;
51cdf0e10cSrcweir import com.sun.star.sheet.XSpreadsheets;
52cdf0e10cSrcweir import com.sun.star.style.XStyle;
53cdf0e10cSrcweir import com.sun.star.style.XStyleFamiliesSupplier;
54cdf0e10cSrcweir import com.sun.star.table.XCell;
55cdf0e10cSrcweir import com.sun.star.text.XText;
56cdf0e10cSrcweir import com.sun.star.uno.AnyConverter;
57cdf0e10cSrcweir import com.sun.star.uno.Type;
58cdf0e10cSrcweir import com.sun.star.uno.UnoRuntime;
59cdf0e10cSrcweir import com.sun.star.uno.XInterface;
60cdf0e10cSrcweir import com.sun.star.util.URL;
61cdf0e10cSrcweir import com.sun.star.util.XCloseable;
62cdf0e10cSrcweir import com.sun.star.util.XURLTransformer;
63cdf0e10cSrcweir 
64cdf0e10cSrcweir /**
65cdf0e10cSrcweir  * Test for object which is represented by accessible component of
66cdf0e10cSrcweir  * a printed header in 'Page Preview' mode.
67cdf0e10cSrcweir  *
68cdf0e10cSrcweir  * Object implements the following interfaces :
69cdf0e10cSrcweir  * <ul>
70cdf0e10cSrcweir  *  <li> <code>::com::sun::star::accessibility::XAccessibleComponent</code></li>
71cdf0e10cSrcweir  *  <li> <code>::com::sun::star::accessibility::XAccessibleContext</code></li>
72cdf0e10cSrcweir  * </ul> <p>
73cdf0e10cSrcweir  *
74cdf0e10cSrcweir  * @see com.sun.star.accessibility.XAccessibleComponent
75cdf0e10cSrcweir  * @see com.sun.star.accessibility.XAccessibleContext
76*e6b649b5SPedro Giffuni  * @see ifc.accessibility._XAccessibleComponent
77*e6b649b5SPedro Giffuni  * @see ifc.accessibility._XAccessibleContext
78cdf0e10cSrcweir  */
79cdf0e10cSrcweir public class ScAccessiblePageHeader extends TestCase {
80cdf0e10cSrcweir 
81cdf0e10cSrcweir     static XSpreadsheetDocument xSpreadsheetDoc = null;
82cdf0e10cSrcweir 
83cdf0e10cSrcweir     /**
84cdf0e10cSrcweir      * Called to create an instance of <code>TestEnvironment</code>
85cdf0e10cSrcweir      * with an object to test and related objects.
86*e6b649b5SPedro Giffuni      * Switches the document to Print Preview mode.
87*e6b649b5SPedro Giffuni      * Obtains accessible object for the page view.
88cdf0e10cSrcweir      *
89*e6b649b5SPedro Giffuni      * @param Param test parameters
90cdf0e10cSrcweir      * @param log writer to log information while testing
91cdf0e10cSrcweir      *
92cdf0e10cSrcweir      * @see TestEnvironment
935496b966SPedro Giffuni      * @see #getTestEnvironment
94cdf0e10cSrcweir      */
createTestEnvironment( TestParameters Param, PrintWriter log)95cdf0e10cSrcweir     protected TestEnvironment createTestEnvironment(
96cdf0e10cSrcweir         TestParameters Param, PrintWriter log) {
97cdf0e10cSrcweir 
98cdf0e10cSrcweir         XInterface oObj = null;
99cdf0e10cSrcweir 
100cdf0e10cSrcweir         // inserting some content to have non-empty page preview
101cdf0e10cSrcweir         XCell xCell = null;
102cdf0e10cSrcweir         try {
103cdf0e10cSrcweir             XSpreadsheets oSheets = xSpreadsheetDoc.getSheets() ;
104cdf0e10cSrcweir             XIndexAccess oIndexSheets = (XIndexAccess)
105cdf0e10cSrcweir                 UnoRuntime.queryInterface(XIndexAccess.class, oSheets);
106cdf0e10cSrcweir             XSpreadsheet oSheet = null;
107cdf0e10cSrcweir             try {
108cdf0e10cSrcweir                 oSheet = (XSpreadsheet) AnyConverter.toObject(
109cdf0e10cSrcweir                         new Type(XSpreadsheet.class),oIndexSheets.getByIndex(0));
110cdf0e10cSrcweir             } catch (com.sun.star.lang.IllegalArgumentException iae) {
111cdf0e10cSrcweir                 throw new StatusException("couldn't get sheet",iae);
112cdf0e10cSrcweir             }
113cdf0e10cSrcweir             xCell = oSheet.getCellByPosition(0, 0) ;
114cdf0e10cSrcweir             xCell.setFormula("ScAccessiblePageHeader");
115cdf0e10cSrcweir         } catch(com.sun.star.lang.WrappedTargetException e) {
116cdf0e10cSrcweir             log.println("Exception ceating relation :");
117cdf0e10cSrcweir             e.printStackTrace(log);
118cdf0e10cSrcweir         } catch(com.sun.star.lang.IndexOutOfBoundsException e) {
119cdf0e10cSrcweir             log.println("Exception ceating relation :");
120cdf0e10cSrcweir             e.printStackTrace(log);
121cdf0e10cSrcweir         }
122cdf0e10cSrcweir 
123cdf0e10cSrcweir         XModel aModel = (XModel)
124cdf0e10cSrcweir             UnoRuntime.queryInterface(XModel.class, xSpreadsheetDoc);
125cdf0e10cSrcweir 
126cdf0e10cSrcweir         XController xController = aModel.getCurrentController();
127cdf0e10cSrcweir 
128cdf0e10cSrcweir         // switching to 'Page 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             // Because it's an in/out parameter we must use an array of URL objects.
136cdf0e10cSrcweir             URL[] aParseURL = new URL[1];
137cdf0e10cSrcweir             aParseURL[0] = new URL();
138cdf0e10cSrcweir             aParseURL[0].Complete = ".uno:PrintPreview";
139cdf0e10cSrcweir             xParser.parseStrict(aParseURL);
140cdf0e10cSrcweir             URL aURL = aParseURL[0];
141cdf0e10cSrcweir             XDispatch xDispatcher = xDispProv.queryDispatch(aURL, "", 0);
142cdf0e10cSrcweir             if(xDispatcher != null)
143cdf0e10cSrcweir                 xDispatcher.dispatch( aURL, null );
144cdf0e10cSrcweir         } catch (com.sun.star.uno.Exception e) {
145cdf0e10cSrcweir             log.println("Couldn't change mode");
146cdf0e10cSrcweir             throw new StatusException(Status.failed("Couldn't change mode"));
147cdf0e10cSrcweir         }
148cdf0e10cSrcweir 
149cdf0e10cSrcweir         try {
150cdf0e10cSrcweir             Thread.sleep(500);
151cdf0e10cSrcweir         } catch (InterruptedException ex) {}
152cdf0e10cSrcweir 
153cdf0e10cSrcweir         AccessibilityTools at = new AccessibilityTools();
154cdf0e10cSrcweir 
155cdf0e10cSrcweir         XWindow xWindow = at.getCurrentWindow( (XMultiServiceFactory) Param.getMSF(), aModel);
156cdf0e10cSrcweir         XAccessible xRoot = at.getAccessibleObject(xWindow);
157cdf0e10cSrcweir 
158cdf0e10cSrcweir         oObj = at.getAccessibleObjectForRole
159cdf0e10cSrcweir             (xRoot, AccessibleRole.HEADER, "");
160cdf0e10cSrcweir 
161cdf0e10cSrcweir         log.println("ImplementationName " + utils.getImplName(oObj));
162cdf0e10cSrcweir         at.printAccessibleTree(log, xRoot, Param.getBool(util.PropertyName.DEBUG_IS_ACTIVE));
163cdf0e10cSrcweir 
164cdf0e10cSrcweir         TestEnvironment tEnv = new TestEnvironment(oObj);
165cdf0e10cSrcweir 
166cdf0e10cSrcweir         XStyleFamiliesSupplier StyleFam = (XStyleFamiliesSupplier)
167cdf0e10cSrcweir             UnoRuntime.queryInterface(
168cdf0e10cSrcweir                 XStyleFamiliesSupplier.class,
169cdf0e10cSrcweir                 xSpreadsheetDoc );
170cdf0e10cSrcweir         XNameAccess StyleFamNames = StyleFam.getStyleFamilies();
171cdf0e10cSrcweir         XStyle StdStyle = null;
172cdf0e10cSrcweir 
173cdf0e10cSrcweir         try{
174cdf0e10cSrcweir             XNameAccess PageStyles = (XNameAccess) AnyConverter.toObject(
175cdf0e10cSrcweir                             new Type(XNameAccess.class),
176cdf0e10cSrcweir                                         StyleFamNames.getByName("PageStyles"));
177cdf0e10cSrcweir             StdStyle = (XStyle) AnyConverter.toObject(
178cdf0e10cSrcweir                 new Type(XStyle.class), PageStyles.getByName("Default"));
179cdf0e10cSrcweir         } catch(com.sun.star.lang.WrappedTargetException e){
180cdf0e10cSrcweir             e.printStackTrace(log);
181cdf0e10cSrcweir             throw new StatusException("Couldn't get by name", e);
182cdf0e10cSrcweir         } catch(com.sun.star.container.NoSuchElementException e){
183cdf0e10cSrcweir             e.printStackTrace(log);
184cdf0e10cSrcweir             throw new StatusException("Couldn't get by name", e);
185cdf0e10cSrcweir         } catch (com.sun.star.lang.IllegalArgumentException iae) {
186cdf0e10cSrcweir            throw new StatusException("Couldn't convert any", iae);
187cdf0e10cSrcweir         }
188cdf0e10cSrcweir 
189cdf0e10cSrcweir         //get the property-set
190cdf0e10cSrcweir         final XPropertySet PropSet = (XPropertySet)
191cdf0e10cSrcweir             UnoRuntime.queryInterface(XPropertySet.class, StdStyle);
192cdf0e10cSrcweir 
193cdf0e10cSrcweir         XHeaderFooterContent RPHC = null;
194cdf0e10cSrcweir         // creation of testobject here
195cdf0e10cSrcweir         // first we write what we are intend to do to log file
196cdf0e10cSrcweir         log.println( "creating a test environment" );
197cdf0e10cSrcweir         try {
198cdf0e10cSrcweir             RPHC = (XHeaderFooterContent) AnyConverter.toObject(
199cdf0e10cSrcweir                 new Type(XHeaderFooterContent.class),
200cdf0e10cSrcweir                     PropSet.getPropertyValue("RightPageHeaderContent"));
201cdf0e10cSrcweir         } catch(com.sun.star.lang.WrappedTargetException e){
202cdf0e10cSrcweir             e.printStackTrace(log);
203cdf0e10cSrcweir             throw new StatusException("Couldn't get HeaderContent", e);
204cdf0e10cSrcweir         } catch(com.sun.star.beans.UnknownPropertyException e){
205cdf0e10cSrcweir             e.printStackTrace(log);
206cdf0e10cSrcweir             throw new StatusException("Couldn't get HeaderContent", e);
207cdf0e10cSrcweir         } catch(com.sun.star.lang.IllegalArgumentException e){
208cdf0e10cSrcweir             e.printStackTrace(log);
209cdf0e10cSrcweir             throw new StatusException("Couldn't get HeaderContent", e);
210cdf0e10cSrcweir         }
211cdf0e10cSrcweir 
212cdf0e10cSrcweir         final XHeaderFooterContent RPHC2 = RPHC;
213cdf0e10cSrcweir 
214cdf0e10cSrcweir         final XText center = RPHC2.getCenterText();
215cdf0e10cSrcweir         final XText left = RPHC2.getLeftText();
216cdf0e10cSrcweir         final XText right = RPHC2.getRightText();
217cdf0e10cSrcweir 
218cdf0e10cSrcweir         tEnv.addObjRelation("EventProducer",
219cdf0e10cSrcweir             new ifc.accessibility._XAccessibleEventBroadcaster.EventProducer(){
220cdf0e10cSrcweir                 public void fireEvent() {
221cdf0e10cSrcweir                     center.setString("CENTER");
222cdf0e10cSrcweir                     left.setString("LEFT");
223cdf0e10cSrcweir                     right.setString("RIGHT");
224cdf0e10cSrcweir                     try {
225cdf0e10cSrcweir                         PropSet.setPropertyValue("RightPageHeaderContent",RPHC2);
226cdf0e10cSrcweir                     } catch (com.sun.star.beans.UnknownPropertyException e) {
227cdf0e10cSrcweir                     } catch (com.sun.star.beans.PropertyVetoException e) {
228cdf0e10cSrcweir                     } catch (com.sun.star.lang.IllegalArgumentException e) {
229cdf0e10cSrcweir                     } catch (com.sun.star.lang.WrappedTargetException e) {}
230cdf0e10cSrcweir                 }
231cdf0e10cSrcweir             });
232cdf0e10cSrcweir 
233cdf0e10cSrcweir 
234cdf0e10cSrcweir         return tEnv;
235cdf0e10cSrcweir 
236cdf0e10cSrcweir     }
237cdf0e10cSrcweir 
238cdf0e10cSrcweir     /**
239cdf0e10cSrcweir      * Called while disposing a <code>TestEnvironment</code>.
240cdf0e10cSrcweir      * Disposes calc document.
241*e6b649b5SPedro Giffuni      * @param Param test parameters
242cdf0e10cSrcweir      * @param log writer to log information while testing
243cdf0e10cSrcweir      */
cleanup( TestParameters Param, PrintWriter log)244cdf0e10cSrcweir     protected void cleanup( TestParameters Param, PrintWriter log) {
245cdf0e10cSrcweir         log.println( "    disposing xSheetDoc " );
246cdf0e10cSrcweir         try {
247cdf0e10cSrcweir         XCloseable oComp = (XCloseable)
248cdf0e10cSrcweir             UnoRuntime.queryInterface (XCloseable.class, xSpreadsheetDoc) ;
249cdf0e10cSrcweir         oComp.close(true);
250cdf0e10cSrcweir         } catch(com.sun.star.util.CloseVetoException e) {
251cdf0e10cSrcweir             log.println("Couldn't close document: "+e.getMessage());
252cdf0e10cSrcweir         }
253cdf0e10cSrcweir     }
254cdf0e10cSrcweir 
255cdf0e10cSrcweir     /**
256cdf0e10cSrcweir      * Called while the <code>TestCase</code> initialization. In the
257cdf0e10cSrcweir      * implementation does nothing. Subclasses can override to initialize
258cdf0e10cSrcweir      * objects shared among all <code>TestEnvironment</code>s.
259cdf0e10cSrcweir      *
260*e6b649b5SPedro Giffuni      * @param Param test parameters
261cdf0e10cSrcweir      * @param log writer to log information while testing
262cdf0e10cSrcweir      *
2635496b966SPedro Giffuni      * @see #initializeTestCase
264cdf0e10cSrcweir      */
initialize(TestParameters Param, PrintWriter log)265cdf0e10cSrcweir     protected void initialize(TestParameters Param, PrintWriter log) {
266cdf0e10cSrcweir         // get a soffice factory object
267cdf0e10cSrcweir         SOfficeFactory SOF = SOfficeFactory.getFactory(  (XMultiServiceFactory) Param.getMSF());
268cdf0e10cSrcweir 
269cdf0e10cSrcweir         try {
270cdf0e10cSrcweir             log.println("creating a spreadsheetdocument");
271cdf0e10cSrcweir             xSpreadsheetDoc = SOF.createCalcDoc(null);
272cdf0e10cSrcweir         } catch (com.sun.star.uno.Exception e) {
273cdf0e10cSrcweir             e.printStackTrace( log );
274cdf0e10cSrcweir             throw new StatusException( "Couldn't create document ", e );
275cdf0e10cSrcweir         }
276cdf0e10cSrcweir     }
2775496b966SPedro Giffuni }
278