1*cdf0e10cSrcweir /************************************************************************* 2*cdf0e10cSrcweir * 3*cdf0e10cSrcweir * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4*cdf0e10cSrcweir * 5*cdf0e10cSrcweir * Copyright 2000, 2010 Oracle and/or its affiliates. 6*cdf0e10cSrcweir * 7*cdf0e10cSrcweir * OpenOffice.org - a multi-platform office productivity suite 8*cdf0e10cSrcweir * 9*cdf0e10cSrcweir * This file is part of OpenOffice.org. 10*cdf0e10cSrcweir * 11*cdf0e10cSrcweir * OpenOffice.org is free software: you can redistribute it and/or modify 12*cdf0e10cSrcweir * it under the terms of the GNU Lesser General Public License version 3 13*cdf0e10cSrcweir * only, as published by the Free Software Foundation. 14*cdf0e10cSrcweir * 15*cdf0e10cSrcweir * OpenOffice.org is distributed in the hope that it will be useful, 16*cdf0e10cSrcweir * but WITHOUT ANY WARRANTY; without even the implied warranty of 17*cdf0e10cSrcweir * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 18*cdf0e10cSrcweir * GNU Lesser General Public License version 3 for more details 19*cdf0e10cSrcweir * (a copy is included in the LICENSE file that accompanied this code). 20*cdf0e10cSrcweir * 21*cdf0e10cSrcweir * You should have received a copy of the GNU Lesser General Public License 22*cdf0e10cSrcweir * version 3 along with OpenOffice.org. If not, see 23*cdf0e10cSrcweir * <http://www.openoffice.org/license.html> 24*cdf0e10cSrcweir * for a copy of the LGPLv3 License. 25*cdf0e10cSrcweir * 26*cdf0e10cSrcweir ************************************************************************/ 27*cdf0e10cSrcweir package mod._sw; 28*cdf0e10cSrcweir 29*cdf0e10cSrcweir import java.io.PrintWriter; 30*cdf0e10cSrcweir 31*cdf0e10cSrcweir import lib.Status; 32*cdf0e10cSrcweir import lib.StatusException; 33*cdf0e10cSrcweir import lib.TestCase; 34*cdf0e10cSrcweir import lib.TestEnvironment; 35*cdf0e10cSrcweir import lib.TestParameters; 36*cdf0e10cSrcweir import util.AccessibilityTools; 37*cdf0e10cSrcweir import util.WriterTools; 38*cdf0e10cSrcweir import util.utils; 39*cdf0e10cSrcweir 40*cdf0e10cSrcweir import com.sun.star.accessibility.AccessibleRole; 41*cdf0e10cSrcweir import com.sun.star.accessibility.XAccessible; 42*cdf0e10cSrcweir import com.sun.star.accessibility.XAccessibleContext; 43*cdf0e10cSrcweir import com.sun.star.accessibility.XAccessibleValue; 44*cdf0e10cSrcweir import com.sun.star.awt.XWindow; 45*cdf0e10cSrcweir import com.sun.star.beans.XPropertySet; 46*cdf0e10cSrcweir import com.sun.star.container.XEnumeration; 47*cdf0e10cSrcweir import com.sun.star.container.XEnumerationAccess; 48*cdf0e10cSrcweir import com.sun.star.frame.XController; 49*cdf0e10cSrcweir import com.sun.star.frame.XDispatch; 50*cdf0e10cSrcweir import com.sun.star.frame.XDispatchProvider; 51*cdf0e10cSrcweir import com.sun.star.frame.XModel; 52*cdf0e10cSrcweir import com.sun.star.lang.XMultiServiceFactory; 53*cdf0e10cSrcweir import com.sun.star.text.ControlCharacter; 54*cdf0e10cSrcweir import com.sun.star.text.XText; 55*cdf0e10cSrcweir import com.sun.star.text.XTextCursor; 56*cdf0e10cSrcweir import com.sun.star.text.XTextDocument; 57*cdf0e10cSrcweir import com.sun.star.uno.AnyConverter; 58*cdf0e10cSrcweir import com.sun.star.uno.Type; 59*cdf0e10cSrcweir import com.sun.star.uno.UnoRuntime; 60*cdf0e10cSrcweir import com.sun.star.uno.XInterface; 61*cdf0e10cSrcweir import com.sun.star.util.URL; 62*cdf0e10cSrcweir import com.sun.star.util.XURLTransformer; 63*cdf0e10cSrcweir 64*cdf0e10cSrcweir public class SwAccessiblePageView extends TestCase { 65*cdf0e10cSrcweir 66*cdf0e10cSrcweir XTextDocument xTextDoc = null; 67*cdf0e10cSrcweir 68*cdf0e10cSrcweir /** 69*cdf0e10cSrcweir * Called to create an instance of <code>TestEnvironment</code> 70*cdf0e10cSrcweir * with an object to test and related objects. 71*cdf0e10cSrcweir * Switchs the document to Print Preview mode. 72*cdf0e10cSrcweir * Obtains accissible object for the page view. 73*cdf0e10cSrcweir * 74*cdf0e10cSrcweir * @param tParam test parameters 75*cdf0e10cSrcweir * @param log writer to log information while testing 76*cdf0e10cSrcweir * 77*cdf0e10cSrcweir * @see TestEnvironment 78*cdf0e10cSrcweir * @see #getTestEnvironment() 79*cdf0e10cSrcweir */ 80*cdf0e10cSrcweir protected TestEnvironment createTestEnvironment( 81*cdf0e10cSrcweir TestParameters Param, PrintWriter log) { 82*cdf0e10cSrcweir 83*cdf0e10cSrcweir XInterface oObj = null; 84*cdf0e10cSrcweir XInterface port = null; 85*cdf0e10cSrcweir XInterface para = null; 86*cdf0e10cSrcweir XPropertySet paraP = null; 87*cdf0e10cSrcweir XPropertySet portP = null; 88*cdf0e10cSrcweir 89*cdf0e10cSrcweir XText oText = xTextDoc.getText(); 90*cdf0e10cSrcweir XTextCursor oCursor = oText.createTextCursor(); 91*cdf0e10cSrcweir 92*cdf0e10cSrcweir log.println( "inserting some lines" ); 93*cdf0e10cSrcweir try { 94*cdf0e10cSrcweir for (int i=0; i<2; i++){ 95*cdf0e10cSrcweir oText.insertString( oCursor,"Paragraph Number: " + i, false); 96*cdf0e10cSrcweir oText.insertString( oCursor, 97*cdf0e10cSrcweir " The quick brown fox jumps over the lazy Dog: SwXParagraph", 98*cdf0e10cSrcweir false); 99*cdf0e10cSrcweir oText.insertControlCharacter( 100*cdf0e10cSrcweir oCursor, ControlCharacter.PARAGRAPH_BREAK, false ); 101*cdf0e10cSrcweir oText.insertString( oCursor, 102*cdf0e10cSrcweir "THE QUICK BROWN FOX JUMPS OVER THE LAZY DOG: SwXParagraph", 103*cdf0e10cSrcweir false); 104*cdf0e10cSrcweir oText.insertControlCharacter(oCursor, 105*cdf0e10cSrcweir ControlCharacter.PARAGRAPH_BREAK, false ); 106*cdf0e10cSrcweir oText.insertControlCharacter( 107*cdf0e10cSrcweir oCursor, ControlCharacter.LINE_BREAK, false ); 108*cdf0e10cSrcweir } 109*cdf0e10cSrcweir } catch ( com.sun.star.lang.IllegalArgumentException e ){ 110*cdf0e10cSrcweir e.printStackTrace(log); 111*cdf0e10cSrcweir throw new StatusException( "Couldn't insert lines", e ); 112*cdf0e10cSrcweir } 113*cdf0e10cSrcweir 114*cdf0e10cSrcweir // Enumeration 115*cdf0e10cSrcweir XEnumerationAccess oEnumA = (XEnumerationAccess) 116*cdf0e10cSrcweir UnoRuntime.queryInterface(XEnumerationAccess.class, oText ); 117*cdf0e10cSrcweir XEnumeration oEnum = oEnumA.createEnumeration(); 118*cdf0e10cSrcweir 119*cdf0e10cSrcweir try { 120*cdf0e10cSrcweir para = (XInterface) AnyConverter.toObject( 121*cdf0e10cSrcweir new Type(XInterface.class),oEnum.nextElement()); 122*cdf0e10cSrcweir XEnumerationAccess oEnumB = (XEnumerationAccess) 123*cdf0e10cSrcweir UnoRuntime.queryInterface( XEnumerationAccess.class, para ); 124*cdf0e10cSrcweir XEnumeration oEnum2 = oEnumB.createEnumeration(); 125*cdf0e10cSrcweir port = (XInterface) AnyConverter.toObject( 126*cdf0e10cSrcweir new Type(XInterface.class),oEnum2.nextElement()); 127*cdf0e10cSrcweir } catch ( com.sun.star.lang.WrappedTargetException e ) { 128*cdf0e10cSrcweir e.printStackTrace(log); 129*cdf0e10cSrcweir log.println("Error: exception occured..."); 130*cdf0e10cSrcweir } catch ( com.sun.star.container.NoSuchElementException e ) { 131*cdf0e10cSrcweir e.printStackTrace(log); 132*cdf0e10cSrcweir log.println("Error: exception occured..."); 133*cdf0e10cSrcweir } catch ( com.sun.star.lang.IllegalArgumentException e ) { 134*cdf0e10cSrcweir e.printStackTrace(log); 135*cdf0e10cSrcweir log.println("Error: exception occured..."); 136*cdf0e10cSrcweir } 137*cdf0e10cSrcweir 138*cdf0e10cSrcweir try { 139*cdf0e10cSrcweir portP = (XPropertySet) 140*cdf0e10cSrcweir UnoRuntime.queryInterface(XPropertySet.class, port); 141*cdf0e10cSrcweir paraP = (XPropertySet) 142*cdf0e10cSrcweir UnoRuntime.queryInterface(XPropertySet.class, para); 143*cdf0e10cSrcweir paraP.setPropertyValue("BreakType",com.sun.star.style.BreakType.PAGE_AFTER); 144*cdf0e10cSrcweir } catch ( com.sun.star.lang.WrappedTargetException e ) { 145*cdf0e10cSrcweir log.println("Error, exception occured..."); 146*cdf0e10cSrcweir e.printStackTrace(log); 147*cdf0e10cSrcweir throw new StatusException( "Couldn't get Paragraph", e ); 148*cdf0e10cSrcweir } catch ( com.sun.star.lang.IllegalArgumentException e ) { 149*cdf0e10cSrcweir log.println("Error, exception occured..."); 150*cdf0e10cSrcweir e.printStackTrace(log); 151*cdf0e10cSrcweir throw new StatusException( "Couldn't get Paragraph", e ); 152*cdf0e10cSrcweir } catch ( com.sun.star.beans.UnknownPropertyException e ) { 153*cdf0e10cSrcweir log.println("Error, exception occured..."); 154*cdf0e10cSrcweir e.printStackTrace(log); 155*cdf0e10cSrcweir throw new StatusException( "Couldn't get Paragraph", e ); 156*cdf0e10cSrcweir } catch ( com.sun.star.beans.PropertyVetoException e ) { 157*cdf0e10cSrcweir log.println("Error, exception occured..."); 158*cdf0e10cSrcweir e.printStackTrace(log); 159*cdf0e10cSrcweir throw new StatusException( "Couldn't get Paragraph", e ); 160*cdf0e10cSrcweir } 161*cdf0e10cSrcweir 162*cdf0e10cSrcweir shortWait(); 163*cdf0e10cSrcweir 164*cdf0e10cSrcweir XController xController = xTextDoc.getCurrentController(); 165*cdf0e10cSrcweir 166*cdf0e10cSrcweir XModel aModel = (XModel) 167*cdf0e10cSrcweir UnoRuntime.queryInterface(XModel.class, xTextDoc); 168*cdf0e10cSrcweir 169*cdf0e10cSrcweir //switch to 'Print Preview' mode 170*cdf0e10cSrcweir try { 171*cdf0e10cSrcweir XDispatchProvider xDispProv = (XDispatchProvider) 172*cdf0e10cSrcweir UnoRuntime.queryInterface(XDispatchProvider.class, xController); 173*cdf0e10cSrcweir XURLTransformer xParser = (com.sun.star.util.XURLTransformer) 174*cdf0e10cSrcweir UnoRuntime.queryInterface(XURLTransformer.class, 175*cdf0e10cSrcweir ((XMultiServiceFactory)Param.getMSF()).createInstance("com.sun.star.util.URLTransformer")); 176*cdf0e10cSrcweir // Because it's an in/out parameter we must use an array of URL objects. 177*cdf0e10cSrcweir URL[] aParseURL = new URL[1]; 178*cdf0e10cSrcweir aParseURL[0] = new URL(); 179*cdf0e10cSrcweir aParseURL[0].Complete = ".uno:PrintPreview"; 180*cdf0e10cSrcweir xParser.parseStrict(aParseURL); 181*cdf0e10cSrcweir URL aURL = aParseURL[0]; 182*cdf0e10cSrcweir XDispatch xDispatcher = xDispProv.queryDispatch(aURL, "", 0); 183*cdf0e10cSrcweir if(xDispatcher != null) 184*cdf0e10cSrcweir xDispatcher.dispatch( aURL, null ); 185*cdf0e10cSrcweir } catch (com.sun.star.uno.Exception e) { 186*cdf0e10cSrcweir log.println("Couldn't change mode"); 187*cdf0e10cSrcweir throw new StatusException(Status.failed("Couldn't change mode")); 188*cdf0e10cSrcweir } 189*cdf0e10cSrcweir 190*cdf0e10cSrcweir shortWait(); 191*cdf0e10cSrcweir 192*cdf0e10cSrcweir AccessibilityTools at = new AccessibilityTools(); 193*cdf0e10cSrcweir 194*cdf0e10cSrcweir XWindow xWindow = at.getCurrentWindow((XMultiServiceFactory)Param.getMSF(), aModel); 195*cdf0e10cSrcweir XAccessible xRoot = at.getAccessibleObject(xWindow); 196*cdf0e10cSrcweir 197*cdf0e10cSrcweir at.printAccessibleTree(log, xRoot, Param.getBool(util.PropertyName.DEBUG_IS_ACTIVE)); 198*cdf0e10cSrcweir 199*cdf0e10cSrcweir System.out.println("Panel: "+AccessibleRole.PANEL); 200*cdf0e10cSrcweir System.out.println("ScrollPane: "+AccessibleRole.SCROLL_PANE); 201*cdf0e10cSrcweir oObj = at.getAccessibleObjectForRole(xRoot, AccessibleRole.PANEL,"Page"); 202*cdf0e10cSrcweir 203*cdf0e10cSrcweir log.println("ImplementationName " + utils.getImplName(oObj)); 204*cdf0e10cSrcweir 205*cdf0e10cSrcweir 206*cdf0e10cSrcweir TestEnvironment tEnv = new TestEnvironment(oObj); 207*cdf0e10cSrcweir 208*cdf0e10cSrcweir getAccessibleObjectForRole(xRoot, AccessibleRole.SCROLL_BAR); 209*cdf0e10cSrcweir final XAccessibleValue xAccVal = (XAccessibleValue) UnoRuntime.queryInterface 210*cdf0e10cSrcweir (XAccessibleValue.class, SearchedContext) ; 211*cdf0e10cSrcweir 212*cdf0e10cSrcweir tEnv.addObjRelation("EventProducer", 213*cdf0e10cSrcweir new ifc.accessibility._XAccessibleEventBroadcaster.EventProducer() { 214*cdf0e10cSrcweir public void fireEvent() { 215*cdf0e10cSrcweir Integer old = (Integer) xAccVal.getCurrentValue(); 216*cdf0e10cSrcweir Integer newValue = new Integer(old.intValue()+10); 217*cdf0e10cSrcweir xAccVal.setCurrentValue(newValue); 218*cdf0e10cSrcweir xAccVal.setCurrentValue(old); 219*cdf0e10cSrcweir } 220*cdf0e10cSrcweir }); 221*cdf0e10cSrcweir 222*cdf0e10cSrcweir return tEnv; 223*cdf0e10cSrcweir 224*cdf0e10cSrcweir } 225*cdf0e10cSrcweir 226*cdf0e10cSrcweir public static boolean first = false; 227*cdf0e10cSrcweir public static XAccessibleContext SearchedContext = null; 228*cdf0e10cSrcweir 229*cdf0e10cSrcweir public static void getAccessibleObjectForRole(XAccessible xacc,short role) { 230*cdf0e10cSrcweir XAccessibleContext ac = xacc.getAccessibleContext(); 231*cdf0e10cSrcweir if (ac.getAccessibleRole()==role) { 232*cdf0e10cSrcweir if (first) SearchedContext = ac; 233*cdf0e10cSrcweir else first=true; 234*cdf0e10cSrcweir } else { 235*cdf0e10cSrcweir int k = ac.getAccessibleChildCount(); 236*cdf0e10cSrcweir for (int i=0;i<k;i++) { 237*cdf0e10cSrcweir try { 238*cdf0e10cSrcweir getAccessibleObjectForRole(ac.getAccessibleChild(i),role); 239*cdf0e10cSrcweir if (SearchedContext != null) return ; 240*cdf0e10cSrcweir } catch (com.sun.star.lang.IndexOutOfBoundsException e) { 241*cdf0e10cSrcweir System.out.println("Couldn't get Child"); 242*cdf0e10cSrcweir } 243*cdf0e10cSrcweir } 244*cdf0e10cSrcweir } 245*cdf0e10cSrcweir } 246*cdf0e10cSrcweir 247*cdf0e10cSrcweir 248*cdf0e10cSrcweir /** 249*cdf0e10cSrcweir * Called while disposing a <code>TestEnvironment</code>. 250*cdf0e10cSrcweir * Disposes text document. 251*cdf0e10cSrcweir * @param tParam test parameters 252*cdf0e10cSrcweir * @param tEnv the environment to cleanup 253*cdf0e10cSrcweir * @param log writer to log information while testing 254*cdf0e10cSrcweir */ 255*cdf0e10cSrcweir protected void cleanup( TestParameters Param, PrintWriter log) { 256*cdf0e10cSrcweir log.println("dispose text document"); 257*cdf0e10cSrcweir util.DesktopTools.closeDoc(xTextDoc); 258*cdf0e10cSrcweir } 259*cdf0e10cSrcweir 260*cdf0e10cSrcweir /** 261*cdf0e10cSrcweir * Called while the <code>TestCase</code> initialization. In the 262*cdf0e10cSrcweir * implementation does nothing. Subclasses can override to initialize 263*cdf0e10cSrcweir * objects shared among all <code>TestEnvironment</code>s. 264*cdf0e10cSrcweir * 265*cdf0e10cSrcweir * @param tParam test parameters 266*cdf0e10cSrcweir * @param log writer to log information while testing 267*cdf0e10cSrcweir * 268*cdf0e10cSrcweir * @see #initializeTestCase() 269*cdf0e10cSrcweir */ 270*cdf0e10cSrcweir protected void initialize(TestParameters Param, PrintWriter log) { 271*cdf0e10cSrcweir log.println( "creating a text document" ); 272*cdf0e10cSrcweir xTextDoc = WriterTools.createTextDoc((XMultiServiceFactory)Param.getMSF()); 273*cdf0e10cSrcweir } 274*cdf0e10cSrcweir 275*cdf0e10cSrcweir /** 276*cdf0e10cSrcweir * Sleeps for 0.5 sec. to allow StarOffice to react on <code> 277*cdf0e10cSrcweir * reset</code> call. 278*cdf0e10cSrcweir */ 279*cdf0e10cSrcweir private void shortWait() { 280*cdf0e10cSrcweir try { 281*cdf0e10cSrcweir Thread.sleep(500) ; 282*cdf0e10cSrcweir } catch (InterruptedException e) { 283*cdf0e10cSrcweir log.println("While waiting :" + e) ; 284*cdf0e10cSrcweir } 285*cdf0e10cSrcweir } 286*cdf0e10cSrcweir } 287