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