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._svtools; 28*cdf0e10cSrcweir 29*cdf0e10cSrcweir import com.sun.star.view.XSelectionSupplier; 30*cdf0e10cSrcweir import java.awt.Robot; 31*cdf0e10cSrcweir import java.awt.event.InputEvent; 32*cdf0e10cSrcweir import java.io.PrintWriter; 33*cdf0e10cSrcweir 34*cdf0e10cSrcweir import lib.StatusException; 35*cdf0e10cSrcweir import lib.TestCase; 36*cdf0e10cSrcweir import lib.TestEnvironment; 37*cdf0e10cSrcweir import lib.TestParameters; 38*cdf0e10cSrcweir import util.AccessibilityTools; 39*cdf0e10cSrcweir import util.DesktopTools; 40*cdf0e10cSrcweir import util.SOfficeFactory; 41*cdf0e10cSrcweir 42*cdf0e10cSrcweir import com.sun.star.accessibility.AccessibleRole; 43*cdf0e10cSrcweir import com.sun.star.accessibility.XAccessible; 44*cdf0e10cSrcweir import com.sun.star.accessibility.XAccessibleComponent; 45*cdf0e10cSrcweir import com.sun.star.awt.Point; 46*cdf0e10cSrcweir import com.sun.star.awt.XWindow; 47*cdf0e10cSrcweir import com.sun.star.beans.PropertyValue; 48*cdf0e10cSrcweir import com.sun.star.frame.XController; 49*cdf0e10cSrcweir import com.sun.star.frame.XDesktop; 50*cdf0e10cSrcweir import com.sun.star.frame.XDispatch; 51*cdf0e10cSrcweir import com.sun.star.frame.XDispatchProvider; 52*cdf0e10cSrcweir import com.sun.star.frame.XFrame; 53*cdf0e10cSrcweir import com.sun.star.frame.XModel; 54*cdf0e10cSrcweir import com.sun.star.lang.XMultiServiceFactory; 55*cdf0e10cSrcweir import com.sun.star.text.XTextDocument; 56*cdf0e10cSrcweir import com.sun.star.uno.UnoRuntime; 57*cdf0e10cSrcweir import com.sun.star.uno.XInterface; 58*cdf0e10cSrcweir import com.sun.star.util.URL; 59*cdf0e10cSrcweir 60*cdf0e10cSrcweir 61*cdf0e10cSrcweir /** 62*cdf0e10cSrcweir * Test for object that implements the following interfaces : 63*cdf0e10cSrcweir * <ul> 64*cdf0e10cSrcweir * <li> 65*cdf0e10cSrcweir * <code>::com::sun::star::accessibility::XAccessibleContext 66*cdf0e10cSrcweir * </code></li> 67*cdf0e10cSrcweir * <li> 68*cdf0e10cSrcweir * <code>::com::sun::star::accessibility::XAccessibleEventBroadcaster 69*cdf0e10cSrcweir * </code></li> 70*cdf0e10cSrcweir * </ul> <p> 71*cdf0e10cSrcweir * 72*cdf0e10cSrcweir * @see com.sun.star.accessibility.XAccessibleEventBroadcaster 73*cdf0e10cSrcweir * @see com.sun.star.accessibility.XAccessibleContext 74*cdf0e10cSrcweir * @see ifc.accessibility._XAccessibleEventBroadcaster 75*cdf0e10cSrcweir * @see ifc.accessibility._XAccessibleContext 76*cdf0e10cSrcweir */ 77*cdf0e10cSrcweir public class AccessibleBrowseBoxHeaderBar extends TestCase { 78*cdf0e10cSrcweir static XDesktop the_Desk; 79*cdf0e10cSrcweir static XTextDocument xTextDoc; 80*cdf0e10cSrcweir 81*cdf0e10cSrcweir /** 82*cdf0e10cSrcweir * Creates the Desktop service (<code>com.sun.star.frame.Desktop</code>). 83*cdf0e10cSrcweir */ 84*cdf0e10cSrcweir protected void initialize(TestParameters Param, PrintWriter log) { 85*cdf0e10cSrcweir the_Desk = (XDesktop) UnoRuntime.queryInterface(XDesktop.class, 86*cdf0e10cSrcweir DesktopTools.createDesktop( 87*cdf0e10cSrcweir (XMultiServiceFactory) Param.getMSF())); 88*cdf0e10cSrcweir } 89*cdf0e10cSrcweir 90*cdf0e10cSrcweir /** 91*cdf0e10cSrcweir * Disposes the document, if exists, created in 92*cdf0e10cSrcweir * <code>createTestEnvironment</code> method. 93*cdf0e10cSrcweir */ 94*cdf0e10cSrcweir protected void cleanup(TestParameters Param, PrintWriter log) { 95*cdf0e10cSrcweir log.println("disposing xTextDoc"); 96*cdf0e10cSrcweir 97*cdf0e10cSrcweir if (xTextDoc != null) { 98*cdf0e10cSrcweir xTextDoc.dispose(); 99*cdf0e10cSrcweir } 100*cdf0e10cSrcweir } 101*cdf0e10cSrcweir 102*cdf0e10cSrcweir /** 103*cdf0e10cSrcweir * Creates a text document. Opens the DataSource browser. 104*cdf0e10cSrcweir * Creates an instance of the service <code>com.sun.star.awt.Toolkit</code> 105*cdf0e10cSrcweir * and gets active top window. Then obtains an accessible object with 106*cdf0e10cSrcweir * the role <code>AccessibleRole.TABLE</code>. 107*cdf0e10cSrcweir * Object relations created : 108*cdf0e10cSrcweir * <ul> 109*cdf0e10cSrcweir * <li> <code>'EventProducer'</code> for 110*cdf0e10cSrcweir * {@link ifc.accessibility._XAccessibleEventBroadcaster}: 111*cdf0e10cSrcweir * </li> 112*cdf0e10cSrcweir * </ul> 113*cdf0e10cSrcweir * 114*cdf0e10cSrcweir * @param tParam test parameters 115*cdf0e10cSrcweir * @param log writer to log information while testing 116*cdf0e10cSrcweir * 117*cdf0e10cSrcweir * @see com.sun.star.awt.Toolkit 118*cdf0e10cSrcweir * @see com.sun.star.accessibility.AccessibleRole 119*cdf0e10cSrcweir * @see ifc.accessibility._XAccessibleEventBroadcaster 120*cdf0e10cSrcweir * @see com.sun.star.accessibility.XAccessibleEventBroadcaster 121*cdf0e10cSrcweir */ 122*cdf0e10cSrcweir protected TestEnvironment createTestEnvironment(TestParameters tParam, 123*cdf0e10cSrcweir PrintWriter log) { 124*cdf0e10cSrcweir log.println("creating a test environment"); 125*cdf0e10cSrcweir 126*cdf0e10cSrcweir if (xTextDoc != null) { 127*cdf0e10cSrcweir xTextDoc.dispose(); 128*cdf0e10cSrcweir } 129*cdf0e10cSrcweir 130*cdf0e10cSrcweir // get a soffice factory object 131*cdf0e10cSrcweir SOfficeFactory SOF = SOfficeFactory.getFactory( (XMultiServiceFactory) tParam.getMSF()); 132*cdf0e10cSrcweir 133*cdf0e10cSrcweir try { 134*cdf0e10cSrcweir log.println("creating a text document"); 135*cdf0e10cSrcweir xTextDoc = SOF.createTextDoc(null); 136*cdf0e10cSrcweir } catch (com.sun.star.uno.Exception e) { 137*cdf0e10cSrcweir // Some exception occures.FAILED 138*cdf0e10cSrcweir e.printStackTrace(log); 139*cdf0e10cSrcweir throw new StatusException("Couldn't create document", e); 140*cdf0e10cSrcweir } 141*cdf0e10cSrcweir 142*cdf0e10cSrcweir shortWait(); 143*cdf0e10cSrcweir 144*cdf0e10cSrcweir XModel aModel1 = (XModel) UnoRuntime.queryInterface(XModel.class, 145*cdf0e10cSrcweir xTextDoc); 146*cdf0e10cSrcweir 147*cdf0e10cSrcweir XController secondController = aModel1.getCurrentController(); 148*cdf0e10cSrcweir 149*cdf0e10cSrcweir XDispatchProvider aProv = (XDispatchProvider) UnoRuntime.queryInterface( 150*cdf0e10cSrcweir XDispatchProvider.class, 151*cdf0e10cSrcweir secondController); 152*cdf0e10cSrcweir 153*cdf0e10cSrcweir XDispatch getting = null; 154*cdf0e10cSrcweir 155*cdf0e10cSrcweir log.println("opening DatasourceBrowser"); 156*cdf0e10cSrcweir 157*cdf0e10cSrcweir URL the_url = new URL(); 158*cdf0e10cSrcweir the_url.Complete = ".component:DB/DataSourceBrowser"; 159*cdf0e10cSrcweir getting = aProv.queryDispatch(the_url, "_beamer", 12); 160*cdf0e10cSrcweir 161*cdf0e10cSrcweir //am controller ein XSelectionSupplier->mit params rufen 162*cdf0e10cSrcweir PropertyValue[] noArgs = new PropertyValue[0]; 163*cdf0e10cSrcweir getting.dispatch(the_url, noArgs); 164*cdf0e10cSrcweir 165*cdf0e10cSrcweir PropertyValue[] params = new PropertyValue[3]; 166*cdf0e10cSrcweir PropertyValue param1 = new PropertyValue(); 167*cdf0e10cSrcweir param1.Name = "DataSourceName"; 168*cdf0e10cSrcweir param1.Value = "Bibliography"; 169*cdf0e10cSrcweir params[0] = param1; 170*cdf0e10cSrcweir 171*cdf0e10cSrcweir PropertyValue param2 = new PropertyValue(); 172*cdf0e10cSrcweir param2.Name = "CommandType"; 173*cdf0e10cSrcweir param2.Value = new Integer(com.sun.star.sdb.CommandType.TABLE); 174*cdf0e10cSrcweir params[1] = param2; 175*cdf0e10cSrcweir 176*cdf0e10cSrcweir PropertyValue param3 = new PropertyValue(); 177*cdf0e10cSrcweir param3.Name = "Command"; 178*cdf0e10cSrcweir param3.Value = "biblio"; 179*cdf0e10cSrcweir params[2] = param3; 180*cdf0e10cSrcweir 181*cdf0e10cSrcweir shortWait(); 182*cdf0e10cSrcweir 183*cdf0e10cSrcweir XFrame the_frame1 = the_Desk.getCurrentFrame(); 184*cdf0e10cSrcweir 185*cdf0e10cSrcweir if (the_frame1 == null) { 186*cdf0e10cSrcweir log.println("Current frame was not found !!!"); 187*cdf0e10cSrcweir } 188*cdf0e10cSrcweir 189*cdf0e10cSrcweir XFrame the_frame2 = the_frame1.findFrame("_beamer", 4); 190*cdf0e10cSrcweir 191*cdf0e10cSrcweir the_frame2.setName("DatasourceBrowser"); 192*cdf0e10cSrcweir 193*cdf0e10cSrcweir XController xCont = the_frame2.getController(); 194*cdf0e10cSrcweir 195*cdf0e10cSrcweir XSelectionSupplier xSelect = (XSelectionSupplier) UnoRuntime.queryInterface( 196*cdf0e10cSrcweir XSelectionSupplier.class, xCont); 197*cdf0e10cSrcweir 198*cdf0e10cSrcweir try { 199*cdf0e10cSrcweir xSelect.select(params); 200*cdf0e10cSrcweir } catch (com.sun.star.lang.IllegalArgumentException ex) { 201*cdf0e10cSrcweir throw new StatusException("Could not select Biblio-Database", ex); 202*cdf0e10cSrcweir } 203*cdf0e10cSrcweir 204*cdf0e10cSrcweir XInterface oObj = null; 205*cdf0e10cSrcweir 206*cdf0e10cSrcweir AccessibilityTools at = new AccessibilityTools(); 207*cdf0e10cSrcweir 208*cdf0e10cSrcweir XWindow xWindow = secondController.getFrame().getContainerWindow(); 209*cdf0e10cSrcweir 210*cdf0e10cSrcweir XAccessible xRoot = at.getAccessibleObject(xWindow); 211*cdf0e10cSrcweir 212*cdf0e10cSrcweir oObj = at.getAccessibleObjectForRole(xRoot, AccessibleRole.TABLE); 213*cdf0e10cSrcweir 214*cdf0e10cSrcweir at.printAccessibleTree(log, xRoot, tParam.getBool(util.PropertyName.DEBUG_IS_ACTIVE)); 215*cdf0e10cSrcweir log.println("ImplementationName: " + util.utils.getImplName(oObj)); 216*cdf0e10cSrcweir 217*cdf0e10cSrcweir TestEnvironment tEnv = new TestEnvironment(oObj); 218*cdf0e10cSrcweir 219*cdf0e10cSrcweir shortWait(); 220*cdf0e10cSrcweir 221*cdf0e10cSrcweir XAccessibleComponent accComp = (XAccessibleComponent) UnoRuntime.queryInterface( 222*cdf0e10cSrcweir XAccessibleComponent.class, 223*cdf0e10cSrcweir oObj); 224*cdf0e10cSrcweir final Point point = accComp.getLocationOnScreen(); 225*cdf0e10cSrcweir 226*cdf0e10cSrcweir shortWait(); 227*cdf0e10cSrcweir 228*cdf0e10cSrcweir tEnv.addObjRelation("EventProducer", 229*cdf0e10cSrcweir new ifc.accessibility._XAccessibleEventBroadcaster.EventProducer() { 230*cdf0e10cSrcweir public void fireEvent() { 231*cdf0e10cSrcweir try { 232*cdf0e10cSrcweir Robot rob = new Robot(); 233*cdf0e10cSrcweir rob.mouseMove(point.X + 5, point.Y + 5); 234*cdf0e10cSrcweir rob.mousePress(InputEvent.BUTTON1_MASK); 235*cdf0e10cSrcweir } catch (java.awt.AWTException e) { 236*cdf0e10cSrcweir System.out.println("couldn't fire event"); 237*cdf0e10cSrcweir } 238*cdf0e10cSrcweir } 239*cdf0e10cSrcweir }); 240*cdf0e10cSrcweir 241*cdf0e10cSrcweir return tEnv; 242*cdf0e10cSrcweir } 243*cdf0e10cSrcweir 244*cdf0e10cSrcweir /** 245*cdf0e10cSrcweir * Sleeps for 0.5 sec. to allow StarOffice to react on <code> 246*cdf0e10cSrcweir * reset</code> call. 247*cdf0e10cSrcweir */ 248*cdf0e10cSrcweir private void shortWait() { 249*cdf0e10cSrcweir try { 250*cdf0e10cSrcweir Thread.sleep(5000);; 251*cdf0e10cSrcweir } catch (InterruptedException e) { 252*cdf0e10cSrcweir System.out.println("While waiting :" + e); 253*cdf0e10cSrcweir } 254*cdf0e10cSrcweir } 255*cdf0e10cSrcweir } 256