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 10cdf0e10cSrcweir * 11*ef39d40dSAndrew Rist * http://www.apache.org/licenses/LICENSE-2.0 12cdf0e10cSrcweir * 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. 19cdf0e10cSrcweir * 20*ef39d40dSAndrew Rist *************************************************************/ 21*ef39d40dSAndrew Rist 22*ef39d40dSAndrew Rist 23cdf0e10cSrcweir 24cdf0e10cSrcweir package mod._sd; 25cdf0e10cSrcweir 26cdf0e10cSrcweir import java.io.PrintWriter; 27cdf0e10cSrcweir 28cdf0e10cSrcweir import lib.StatusException; 29cdf0e10cSrcweir import lib.TestCase; 30cdf0e10cSrcweir import lib.TestEnvironment; 31cdf0e10cSrcweir import lib.TestParameters; 32cdf0e10cSrcweir import util.AccessibilityTools; 33cdf0e10cSrcweir import util.SOfficeFactory; 34cdf0e10cSrcweir import util.utils; 35cdf0e10cSrcweir 36cdf0e10cSrcweir import com.sun.star.accessibility.AccessibleRole; 37cdf0e10cSrcweir import com.sun.star.accessibility.XAccessible; 38cdf0e10cSrcweir import com.sun.star.awt.XWindow; 39cdf0e10cSrcweir import com.sun.star.drawing.XDrawPages; 40cdf0e10cSrcweir import com.sun.star.drawing.XDrawPagesSupplier; 41cdf0e10cSrcweir import com.sun.star.frame.XDispatch; 42cdf0e10cSrcweir import com.sun.star.frame.XDispatchProvider; 43cdf0e10cSrcweir import com.sun.star.frame.XModel; 44cdf0e10cSrcweir import com.sun.star.lang.XComponent; 45cdf0e10cSrcweir import com.sun.star.lang.XMultiServiceFactory; 46cdf0e10cSrcweir import com.sun.star.uno.UnoRuntime; 47cdf0e10cSrcweir import com.sun.star.uno.XInterface; 48cdf0e10cSrcweir import com.sun.star.util.URL; 49cdf0e10cSrcweir import com.sun.star.util.XURLTransformer; 50cdf0e10cSrcweir 51cdf0e10cSrcweir public class AccessibleSlideView extends TestCase { 52cdf0e10cSrcweir 53cdf0e10cSrcweir XModel aModel = null; 54cdf0e10cSrcweir XComponent xImpressDoc = null; 55cdf0e10cSrcweir 56cdf0e10cSrcweir /** 57cdf0e10cSrcweir * Called to create an instance of <code>TestEnvironment</code> with an 58cdf0e10cSrcweir * object to test and related objects. Subclasses should implement this 59cdf0e10cSrcweir * method to provide the implementation and related objects. The method is 60cdf0e10cSrcweir * called from <code>getTestEnvironment()</code>. 61cdf0e10cSrcweir * 62cdf0e10cSrcweir * @param tParam test parameters 63cdf0e10cSrcweir * @param log writer to log information while testing 64cdf0e10cSrcweir * 65cdf0e10cSrcweir * @see TestEnvironment 66cdf0e10cSrcweir * @see #getTestEnvironment() 67cdf0e10cSrcweir */ 68cdf0e10cSrcweir protected TestEnvironment createTestEnvironment 69cdf0e10cSrcweir (TestParameters Param, PrintWriter log) { 70cdf0e10cSrcweir XInterface oObj = null; 71cdf0e10cSrcweir 72cdf0e10cSrcweir AccessibilityTools at = new AccessibilityTools(); 73cdf0e10cSrcweir 74cdf0e10cSrcweir XDrawPagesSupplier oDPS = (XDrawPagesSupplier) 75cdf0e10cSrcweir UnoRuntime.queryInterface(XDrawPagesSupplier.class, aModel); 76cdf0e10cSrcweir XDrawPages oDPn = oDPS.getDrawPages(); 77cdf0e10cSrcweir 78cdf0e10cSrcweir oDPn.insertNewByIndex(0); 79cdf0e10cSrcweir 80cdf0e10cSrcweir shortWait(); 81cdf0e10cSrcweir 82cdf0e10cSrcweir XWindow xWindow = at.getCurrentWindow ( 83cdf0e10cSrcweir (XMultiServiceFactory)Param.getMSF(),aModel); 84cdf0e10cSrcweir XAccessible xRoot = at.getAccessibleObject(xWindow); 85cdf0e10cSrcweir 86cdf0e10cSrcweir at.printAccessibleTree(log, xRoot, Param.getBool(util.PropertyName.DEBUG_IS_ACTIVE)); 87cdf0e10cSrcweir 88cdf0e10cSrcweir at.getAccessibleObjectForRole(xRoot, AccessibleRole.DOCUMENT); 89cdf0e10cSrcweir 90cdf0e10cSrcweir oObj = AccessibilityTools.SearchedContext; 91cdf0e10cSrcweir 92cdf0e10cSrcweir System.out.println("ImplementationName "+utils.getImplName(oObj)); 93cdf0e10cSrcweir 94cdf0e10cSrcweir TestEnvironment tEnv = new TestEnvironment(oObj); 95cdf0e10cSrcweir 96cdf0e10cSrcweir //util.dbg.printInterfaces(oObj); 97cdf0e10cSrcweir log.println("Implementationname: "+util.utils.getImplName(oObj)); 98cdf0e10cSrcweir 99cdf0e10cSrcweir final XDrawPages DrawPages = oDPn; 100cdf0e10cSrcweir 101cdf0e10cSrcweir tEnv.addObjRelation("EventProducer", 102cdf0e10cSrcweir new ifc.accessibility._XAccessibleEventBroadcaster.EventProducer() { 103cdf0e10cSrcweir public void fireEvent() { 104cdf0e10cSrcweir DrawPages.insertNewByIndex(2); 105cdf0e10cSrcweir } 106cdf0e10cSrcweir }); 107cdf0e10cSrcweir 108cdf0e10cSrcweir return tEnv; 109cdf0e10cSrcweir 110cdf0e10cSrcweir } 111cdf0e10cSrcweir 112cdf0e10cSrcweir /** 113cdf0e10cSrcweir * Called while disposing a <code>TestEnvironment</code>. 114cdf0e10cSrcweir * Disposes Impress documents. 115cdf0e10cSrcweir * @param tParam test parameters 116cdf0e10cSrcweir * @param tEnv the environment to cleanup 117cdf0e10cSrcweir * @param log writer to log information while testing 118cdf0e10cSrcweir */ 119cdf0e10cSrcweir protected void cleanup( TestParameters Param, PrintWriter log ) { 120cdf0e10cSrcweir log.println("disposing impress document"); 121cdf0e10cSrcweir util.DesktopTools.closeDoc(xImpressDoc);; 122cdf0e10cSrcweir } 123cdf0e10cSrcweir 124cdf0e10cSrcweir /** 125cdf0e10cSrcweir * Called while the <code>TestCase</code> initialization. In the 126cdf0e10cSrcweir * implementation does nothing. Subclasses can override to initialize 127cdf0e10cSrcweir * objects shared among all <code>TestEnvironment</code>s. 128cdf0e10cSrcweir * 129cdf0e10cSrcweir * @param tParam test parameters 130cdf0e10cSrcweir * @param log writer to log information while testing 131cdf0e10cSrcweir * 132cdf0e10cSrcweir * @see #initializeTestCase() 133cdf0e10cSrcweir */ 134cdf0e10cSrcweir protected void initialize(TestParameters Param, PrintWriter log) { 135cdf0e10cSrcweir // get a soffice factory object 136cdf0e10cSrcweir SOfficeFactory SOF = SOfficeFactory.getFactory( 137cdf0e10cSrcweir (XMultiServiceFactory)Param.getMSF()); 138cdf0e10cSrcweir 139cdf0e10cSrcweir try { 140cdf0e10cSrcweir log.println( "creating a impress document" ); 141cdf0e10cSrcweir xImpressDoc = SOF.createImpressDoc(null); 142cdf0e10cSrcweir } catch (com.sun.star.uno.Exception e) { 143cdf0e10cSrcweir e.printStackTrace( log ); 144cdf0e10cSrcweir throw new StatusException("Couldn't create document", e); 145cdf0e10cSrcweir } 146cdf0e10cSrcweir 147cdf0e10cSrcweir shortWait(); 148cdf0e10cSrcweir 149cdf0e10cSrcweir aModel = (XModel) 150cdf0e10cSrcweir UnoRuntime.queryInterface(XModel.class, xImpressDoc); 151cdf0e10cSrcweir 152cdf0e10cSrcweir //Change to Outline view 153cdf0e10cSrcweir try { 154cdf0e10cSrcweir String aSlotID = "slot:27011"; 155cdf0e10cSrcweir XDispatchProvider xDispProv = (XDispatchProvider) 156cdf0e10cSrcweir UnoRuntime.queryInterface( XDispatchProvider.class, 157cdf0e10cSrcweir aModel.getCurrentController() ); 158cdf0e10cSrcweir XURLTransformer xParser = (com.sun.star.util.XURLTransformer) 159cdf0e10cSrcweir UnoRuntime.queryInterface(XURLTransformer.class, 160cdf0e10cSrcweir ((XMultiServiceFactory)Param.getMSF()). 161cdf0e10cSrcweir createInstance("com.sun.star.util.URLTransformer")); 162cdf0e10cSrcweir // Because it's an in/out parameter we must use an array of URL objects. 163cdf0e10cSrcweir URL[] aParseURL = new URL[1]; 164cdf0e10cSrcweir aParseURL[0] = new URL(); 165cdf0e10cSrcweir aParseURL[0].Complete = aSlotID; 166cdf0e10cSrcweir xParser.parseStrict(aParseURL); 167cdf0e10cSrcweir URL aURL = aParseURL[0]; 168cdf0e10cSrcweir XDispatch xDispatcher = xDispProv.queryDispatch( aURL,"",0); 169cdf0e10cSrcweir if( xDispatcher != null ) 170cdf0e10cSrcweir xDispatcher.dispatch( aURL, null ); 171cdf0e10cSrcweir } catch (com.sun.star.uno.Exception e) { 172cdf0e10cSrcweir log.println("Couldn't change mode"); 173cdf0e10cSrcweir } 174cdf0e10cSrcweir 175cdf0e10cSrcweir shortWait(); 176cdf0e10cSrcweir 177cdf0e10cSrcweir } 178cdf0e10cSrcweir 179cdf0e10cSrcweir private void shortWait() { 180cdf0e10cSrcweir try { 181cdf0e10cSrcweir Thread.sleep(2000) ; 182cdf0e10cSrcweir } catch (InterruptedException e) { 183cdf0e10cSrcweir System.out.println("While waiting :" + e) ; 184cdf0e10cSrcweir } 185cdf0e10cSrcweir } 186cdf0e10cSrcweir } 187cdf0e10cSrcweir 188