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
10*ef39d40dSAndrew Rist  *
11*ef39d40dSAndrew Rist  *   http://www.apache.org/licenses/LICENSE-2.0
12*ef39d40dSAndrew Rist  *
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.
19*ef39d40dSAndrew Rist  *
20*ef39d40dSAndrew Rist  *************************************************************/
21*ef39d40dSAndrew Rist 
22*ef39d40dSAndrew Rist 
23cdf0e10cSrcweir package mod._sw;
24cdf0e10cSrcweir 
25cdf0e10cSrcweir import java.io.PrintWriter;
26cdf0e10cSrcweir 
27cdf0e10cSrcweir import lib.StatusException;
28cdf0e10cSrcweir import lib.TestCase;
29cdf0e10cSrcweir import lib.TestEnvironment;
30cdf0e10cSrcweir import lib.TestParameters;
31cdf0e10cSrcweir import util.AccessibilityTools;
32cdf0e10cSrcweir import util.WriterTools;
33cdf0e10cSrcweir import util.utils;
34cdf0e10cSrcweir 
35cdf0e10cSrcweir import com.sun.star.accessibility.AccessibleRole;
36cdf0e10cSrcweir import com.sun.star.accessibility.XAccessible;
37cdf0e10cSrcweir import com.sun.star.awt.XWindow;
38cdf0e10cSrcweir import com.sun.star.beans.XPropertySet;
39cdf0e10cSrcweir import com.sun.star.container.XNameAccess;
40cdf0e10cSrcweir import com.sun.star.frame.XModel;
41cdf0e10cSrcweir import com.sun.star.lang.XMultiServiceFactory;
42cdf0e10cSrcweir import com.sun.star.style.XStyle;
43cdf0e10cSrcweir import com.sun.star.style.XStyleFamiliesSupplier;
44cdf0e10cSrcweir import com.sun.star.text.XTextDocument;
45cdf0e10cSrcweir import com.sun.star.uno.AnyConverter;
46cdf0e10cSrcweir import com.sun.star.uno.Type;
47cdf0e10cSrcweir import com.sun.star.uno.UnoRuntime;
48cdf0e10cSrcweir import com.sun.star.uno.XInterface;
49cdf0e10cSrcweir 
50cdf0e10cSrcweir /**
51cdf0e10cSrcweir * Test of accessible object for a header of a text document.<p>
52cdf0e10cSrcweir * Object implements the following interfaces :
53cdf0e10cSrcweir * <ul>
54cdf0e10cSrcweir *  <li> <code>::com::sun::star::accessibility::XAccessible</code></li>
55cdf0e10cSrcweir * </ul>
56cdf0e10cSrcweir * @see com.sun.star.accessibility.XAccessible
57cdf0e10cSrcweir */
58cdf0e10cSrcweir public class SwAccessibleHeaderView extends TestCase {
59cdf0e10cSrcweir 
60cdf0e10cSrcweir     XTextDocument xTextDoc = null;
61cdf0e10cSrcweir 
62cdf0e10cSrcweir     /**
63cdf0e10cSrcweir     * Called to create an instance of <code>TestEnvironment</code>
64cdf0e10cSrcweir     * with an object to test and related objects. Obtains style
65cdf0e10cSrcweir     * <code>Standard</code> from style family <code>PageStyles</code>.
66cdf0e10cSrcweir     * Changes values of properties <code>HeaderIsOn</code> and
67cdf0e10cSrcweir     * <code>FooterIsOn</code> by <code>true</code>. Obtains accessible component
68cdf0e10cSrcweir     * for header.
69cdf0e10cSrcweir     *
70cdf0e10cSrcweir     * @param tParam test parameters
71cdf0e10cSrcweir     * @param log writer to log information while testing
72cdf0e10cSrcweir     *
73cdf0e10cSrcweir     * @see TestEnvironment
74cdf0e10cSrcweir     * @see #getTestEnvironment()
75cdf0e10cSrcweir     */
76cdf0e10cSrcweir     protected TestEnvironment createTestEnvironment(
77cdf0e10cSrcweir         TestParameters Param, PrintWriter log) {
78cdf0e10cSrcweir 
79cdf0e10cSrcweir         XInterface oObj = null;
80cdf0e10cSrcweir         XNameAccess PageStyles = null;
81cdf0e10cSrcweir         XStyle StdStyle = null;
82cdf0e10cSrcweir 
83cdf0e10cSrcweir         XStyleFamiliesSupplier StyleFam = (XStyleFamiliesSupplier)
84cdf0e10cSrcweir             UnoRuntime.queryInterface(XStyleFamiliesSupplier.class, xTextDoc);
85cdf0e10cSrcweir         XNameAccess StyleFamNames = StyleFam.getStyleFamilies();
86cdf0e10cSrcweir 
87cdf0e10cSrcweir         // obtains style 'Standatd' from style family 'PageStyles'
88cdf0e10cSrcweir         try {
89cdf0e10cSrcweir             PageStyles = (XNameAccess) AnyConverter.toObject(
90cdf0e10cSrcweir                 new Type(XNameAccess.class),StyleFamNames.getByName("PageStyles"));
91cdf0e10cSrcweir             StdStyle = (XStyle) AnyConverter.toObject(
92cdf0e10cSrcweir                     new Type(XStyle.class),PageStyles.getByName("Standard"));
93cdf0e10cSrcweir         } catch ( com.sun.star.lang.WrappedTargetException e ) {
94cdf0e10cSrcweir             e.printStackTrace(log);
95cdf0e10cSrcweir             throw new StatusException("Error getting style by name!", e);
96cdf0e10cSrcweir         } catch ( com.sun.star.container.NoSuchElementException e ) {
97cdf0e10cSrcweir             e.printStackTrace(log);
98cdf0e10cSrcweir             throw new StatusException("Error, no such style name! ", e);
99cdf0e10cSrcweir         } catch ( com.sun.star.lang.IllegalArgumentException e ) {
100cdf0e10cSrcweir             e.printStackTrace(log);
101cdf0e10cSrcweir             throw new StatusException("Error getting style by name!", e);
102cdf0e10cSrcweir         }
103cdf0e10cSrcweir 
104cdf0e10cSrcweir         final XPropertySet PropSet = (XPropertySet)
105cdf0e10cSrcweir             UnoRuntime.queryInterface( XPropertySet.class, StdStyle);
106cdf0e10cSrcweir 
107cdf0e10cSrcweir         // changing/getting some properties
108cdf0e10cSrcweir         try {
109cdf0e10cSrcweir             log.println( "Switching on header" );
110cdf0e10cSrcweir             PropSet.setPropertyValue("HeaderIsOn", new Boolean(true));
111cdf0e10cSrcweir         } catch ( com.sun.star.lang.WrappedTargetException e ) {
112cdf0e10cSrcweir             e.printStackTrace(log);
113cdf0e10cSrcweir             throw new StatusException("Couldn't set propertyValue...", e);
114cdf0e10cSrcweir         }  catch ( com.sun.star.lang.IllegalArgumentException e ) {
115cdf0e10cSrcweir             e.printStackTrace(log);
116cdf0e10cSrcweir             throw new StatusException("Couldn't set propertyValue...", e);
117cdf0e10cSrcweir         } catch ( com.sun.star.beans.PropertyVetoException e ) {
118cdf0e10cSrcweir             e.printStackTrace(log);
119cdf0e10cSrcweir             throw new StatusException("Couldn't set propertyValue...", e);
120cdf0e10cSrcweir         } catch ( com.sun.star.beans.UnknownPropertyException e ) {
121cdf0e10cSrcweir             e.printStackTrace(log);
122cdf0e10cSrcweir             throw new StatusException("Couldn't set propertyValue...", e);
123cdf0e10cSrcweir         }
124cdf0e10cSrcweir 
125cdf0e10cSrcweir         XModel aModel = (XModel)
126cdf0e10cSrcweir             UnoRuntime.queryInterface(XModel.class, xTextDoc);
127cdf0e10cSrcweir 
128cdf0e10cSrcweir         AccessibilityTools at = new AccessibilityTools();
129cdf0e10cSrcweir 
130cdf0e10cSrcweir         XWindow xWindow = at.getCurrentWindow((XMultiServiceFactory)Param.getMSF(), aModel);
131cdf0e10cSrcweir         XAccessible xRoot = at.getAccessibleObject(xWindow);
132cdf0e10cSrcweir 
133cdf0e10cSrcweir         at.getAccessibleObjectForRole(xRoot, AccessibleRole.HEADER);
134cdf0e10cSrcweir 
135cdf0e10cSrcweir         oObj = AccessibilityTools.SearchedContext;
136cdf0e10cSrcweir 
137cdf0e10cSrcweir         log.println("ImplementationName " + utils.getImplName(oObj));
138cdf0e10cSrcweir         at.printAccessibleTree(log, xRoot, Param.getBool(util.PropertyName.DEBUG_IS_ACTIVE));
139cdf0e10cSrcweir 
140cdf0e10cSrcweir         TestEnvironment tEnv = new TestEnvironment(oObj);
141cdf0e10cSrcweir 
142cdf0e10cSrcweir         tEnv.addObjRelation("EventProducer",
143cdf0e10cSrcweir             new ifc.accessibility._XAccessibleEventBroadcaster.EventProducer(){
144cdf0e10cSrcweir                 public void fireEvent() {
145cdf0e10cSrcweir                     try {
146cdf0e10cSrcweir                         PropSet.setPropertyValue("HeaderLeftMargin",
147cdf0e10cSrcweir                             new Integer(1000));
148cdf0e10cSrcweir                     } catch (com.sun.star.uno.Exception e) {
149cdf0e10cSrcweir                         e.printStackTrace();
150cdf0e10cSrcweir                         throw new StatusException("Cann't change footer.", e);
151cdf0e10cSrcweir                     }
152cdf0e10cSrcweir                 }
153cdf0e10cSrcweir             });
154cdf0e10cSrcweir 
155cdf0e10cSrcweir         return tEnv;
156cdf0e10cSrcweir 
157cdf0e10cSrcweir     }
158cdf0e10cSrcweir 
159cdf0e10cSrcweir     /**
160cdf0e10cSrcweir     * Called while disposing a <code>TestEnvironment</code>.
161cdf0e10cSrcweir     * Disposes text document.
162cdf0e10cSrcweir     * @param tParam test parameters
163cdf0e10cSrcweir     * @param tEnv the environment to cleanup
164cdf0e10cSrcweir     * @param log writer to log information while testing
165cdf0e10cSrcweir     */
166cdf0e10cSrcweir     protected void cleanup( TestParameters Param, PrintWriter log) {
167cdf0e10cSrcweir         log.println("dispose text document");
168cdf0e10cSrcweir         util.DesktopTools.closeDoc(xTextDoc);
169cdf0e10cSrcweir     }
170cdf0e10cSrcweir 
171cdf0e10cSrcweir     /**
172cdf0e10cSrcweir      * Called while the <code>TestCase</code> initialization.
173cdf0e10cSrcweir      * Creates a text document.
174cdf0e10cSrcweir      *
175cdf0e10cSrcweir      * @param tParam test parameters
176cdf0e10cSrcweir      * @param log writer to log information while testing
177cdf0e10cSrcweir      *
178cdf0e10cSrcweir      * @see #initializeTestCase()
179cdf0e10cSrcweir      */
180cdf0e10cSrcweir     protected void initialize(TestParameters Param, PrintWriter log) {
181cdf0e10cSrcweir         log.println( "creating a text document" );
182cdf0e10cSrcweir         xTextDoc = WriterTools.createTextDoc((XMultiServiceFactory)Param.getMSF());
183cdf0e10cSrcweir     }
184cdf0e10cSrcweir }
185