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 24cdf0e10cSrcweir package mod._sc; 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.accessibility.XAccessibleAction; 39cdf0e10cSrcweir import com.sun.star.accessibility.XAccessibleContext; 40cdf0e10cSrcweir import com.sun.star.awt.XExtendedToolkit; 41cdf0e10cSrcweir import com.sun.star.awt.XWindow; 42cdf0e10cSrcweir import com.sun.star.beans.PropertyValue; 43cdf0e10cSrcweir import com.sun.star.lang.XComponent; 44cdf0e10cSrcweir import com.sun.star.lang.XMultiServiceFactory; 45cdf0e10cSrcweir import com.sun.star.uno.UnoRuntime; 46cdf0e10cSrcweir import com.sun.star.uno.XInterface; 47cdf0e10cSrcweir 48cdf0e10cSrcweir public class ScAccessibleCsvCell extends TestCase { 49cdf0e10cSrcweir 50cdf0e10cSrcweir Thread lThread = null; 51cdf0e10cSrcweir static XAccessibleAction accAction = null; 52cdf0e10cSrcweir 53cdf0e10cSrcweir /** 54cdf0e10cSrcweir * Called to create an instance of <code>TestEnvironment</code> with an 55cdf0e10cSrcweir * object to test and related objects. Subclasses should implement this 56cdf0e10cSrcweir * method to provide the implementation and related objects. The method is 57cdf0e10cSrcweir * called from <code>getTestEnvironment()</code>. 58cdf0e10cSrcweir * 59cdf0e10cSrcweir * @param tParam test parameters 60cdf0e10cSrcweir * @param log writer to log information while testing 61cdf0e10cSrcweir * 62cdf0e10cSrcweir * @see TestEnvironment 63*5496b966SPedro Giffuni * @see #getTestEnvironment 64cdf0e10cSrcweir */ 65cdf0e10cSrcweir protected TestEnvironment createTestEnvironment(TestParameters tParam, PrintWriter log) { 66cdf0e10cSrcweir XInterface oObj = null; 67cdf0e10cSrcweir 68cdf0e10cSrcweir shortWait(); 69cdf0e10cSrcweir 70cdf0e10cSrcweir try { 71cdf0e10cSrcweir oObj = (XInterface) ((XMultiServiceFactory)tParam.getMSF()).createInstance 72cdf0e10cSrcweir ("com.sun.star.awt.Toolkit") ; 73cdf0e10cSrcweir } catch (com.sun.star.uno.Exception e) { 74cdf0e10cSrcweir log.println("Couldn't get toolkit"); 75cdf0e10cSrcweir e.printStackTrace(log); 76cdf0e10cSrcweir throw new StatusException("Couldn't get toolkit", e ); 77cdf0e10cSrcweir } 78cdf0e10cSrcweir 79cdf0e10cSrcweir 80cdf0e10cSrcweir XExtendedToolkit tk = (XExtendedToolkit) 81cdf0e10cSrcweir UnoRuntime.queryInterface(XExtendedToolkit.class,oObj); 82cdf0e10cSrcweir 83cdf0e10cSrcweir XWindow xWindow = (XWindow) 84cdf0e10cSrcweir UnoRuntime.queryInterface(XWindow.class,tk.getActiveTopWindow()); 85cdf0e10cSrcweir 86cdf0e10cSrcweir XAccessible xRoot = AccessibilityTools.getAccessibleObject(xWindow); 87cdf0e10cSrcweir 88cdf0e10cSrcweir AccessibilityTools.printAccessibleTree(log, xRoot, tParam.getBool(util.PropertyName.DEBUG_IS_ACTIVE)); 89cdf0e10cSrcweir oObj = AccessibilityTools.getAccessibleObjectForRole 90cdf0e10cSrcweir (xRoot, AccessibleRole.PUSH_BUTTON, "Cancel"); 91cdf0e10cSrcweir 92cdf0e10cSrcweir accAction = (XAccessibleAction) UnoRuntime.queryInterface(XAccessibleAction.class, oObj); 93cdf0e10cSrcweir 94cdf0e10cSrcweir oObj = AccessibilityTools.getAccessibleObjectForRole 95cdf0e10cSrcweir (xRoot, AccessibleRole.TABLE, true); 96cdf0e10cSrcweir 97cdf0e10cSrcweir //util.dbg.printInterfaces(oObj); 98cdf0e10cSrcweir 99cdf0e10cSrcweir XAccessibleContext cont = (XAccessibleContext) 100cdf0e10cSrcweir UnoRuntime.queryInterface(XAccessibleContext.class, oObj); 101cdf0e10cSrcweir 102cdf0e10cSrcweir String name = ""; 103cdf0e10cSrcweir try { 104cdf0e10cSrcweir XAccessible acc = cont.getAccessibleChild(3); 105cdf0e10cSrcweir name = acc.getAccessibleContext().getAccessibleName(); 106cdf0e10cSrcweir log.println("Child: "+ name); 107cdf0e10cSrcweir log.println("ImplementationName " + utils.getImplName(acc)); 108cdf0e10cSrcweir oObj = acc; 109cdf0e10cSrcweir } 110cdf0e10cSrcweir catch(com.sun.star.lang.IndexOutOfBoundsException e) {} 111cdf0e10cSrcweir 112cdf0e10cSrcweir TestEnvironment tEnv = new TestEnvironment(oObj); 113cdf0e10cSrcweir 114cdf0e10cSrcweir tEnv.addObjRelation("EditOnly", 115cdf0e10cSrcweir "This method isn't supported in this dialog"); 116cdf0e10cSrcweir 117cdf0e10cSrcweir tEnv.addObjRelation("XAccessibleText.Text", name); 118cdf0e10cSrcweir 119cdf0e10cSrcweir return tEnv; 120cdf0e10cSrcweir } 121cdf0e10cSrcweir 122cdf0e10cSrcweir /** 123cdf0e10cSrcweir * Called while disposing a <code>TestEnvironment</code>. 124cdf0e10cSrcweir * Disposes calc document. 125cdf0e10cSrcweir * @param tParam test parameters 126cdf0e10cSrcweir * @param tEnv the environment to cleanup 127cdf0e10cSrcweir * @param log writer to log information while testing 128cdf0e10cSrcweir */ 129cdf0e10cSrcweir protected void cleanup( TestParameters Param, PrintWriter log) { 130cdf0e10cSrcweir log.println( " closing Dialog " ); 131cdf0e10cSrcweir try { 132cdf0e10cSrcweir accAction.doAccessibleAction(0); 133cdf0e10cSrcweir } catch (com.sun.star.lang.IndexOutOfBoundsException iae) { 134cdf0e10cSrcweir log.println("Couldn't close dialog"); 135cdf0e10cSrcweir } 136cdf0e10cSrcweir } 137cdf0e10cSrcweir 138cdf0e10cSrcweir /** 139cdf0e10cSrcweir * Called while the <code>TestCase</code> initialization. In the 140cdf0e10cSrcweir * implementation does nothing. Subclasses can override to initialize 141cdf0e10cSrcweir * objects shared among all <code>TestEnvironment</code>s. 142cdf0e10cSrcweir * 143cdf0e10cSrcweir * @param tParam test parameters 144cdf0e10cSrcweir * @param log writer to log information while testing 145cdf0e10cSrcweir * 146*5496b966SPedro Giffuni * @see #initializeTestCase 147cdf0e10cSrcweir */ 148cdf0e10cSrcweir protected void initialize(TestParameters Param, PrintWriter log) { 149cdf0e10cSrcweir // get a soffice factory object 150cdf0e10cSrcweir SOfficeFactory SOF = SOfficeFactory.getFactory( (XMultiServiceFactory)Param.getMSF()); 151cdf0e10cSrcweir 152cdf0e10cSrcweir log.println("opening dialog"); 153cdf0e10cSrcweir 154cdf0e10cSrcweir PropertyValue[] args = new PropertyValue[1]; 155cdf0e10cSrcweir try { 156cdf0e10cSrcweir args[0] = new PropertyValue(); 157cdf0e10cSrcweir args[0].Name = "InteractionHandler"; 158cdf0e10cSrcweir args[0].Value = ((XMultiServiceFactory)Param.getMSF()).createInstance( 159cdf0e10cSrcweir "com.sun.star.comp.uui.UUIInteractionHandler"); 160cdf0e10cSrcweir } catch(com.sun.star.uno.Exception e) { 161cdf0e10cSrcweir } 162cdf0e10cSrcweir 163cdf0e10cSrcweir lThread = new loadThread(SOF, args); 164cdf0e10cSrcweir lThread.start(); 165cdf0e10cSrcweir shortWait(); 166cdf0e10cSrcweir } 167cdf0e10cSrcweir 168cdf0e10cSrcweir /** 169cdf0e10cSrcweir * Sleeps for 2 sec. to allow StarOffice to react on <code> 170cdf0e10cSrcweir * reset</code> call. 171cdf0e10cSrcweir */ 172cdf0e10cSrcweir private void shortWait() { 173cdf0e10cSrcweir try { 174cdf0e10cSrcweir Thread.sleep(2000) ; 175cdf0e10cSrcweir } catch (InterruptedException e) { 176cdf0e10cSrcweir log.println("While waiting :" + e) ; 177cdf0e10cSrcweir } 178cdf0e10cSrcweir } 179cdf0e10cSrcweir 180cdf0e10cSrcweir public class loadThread extends Thread { 181cdf0e10cSrcweir 182cdf0e10cSrcweir private SOfficeFactory SOF = null ; 183cdf0e10cSrcweir private PropertyValue[] args = null; 184cdf0e10cSrcweir public XComponent xSpreadSheedDoc = null; 185cdf0e10cSrcweir 186cdf0e10cSrcweir public loadThread(SOfficeFactory SOF, PropertyValue[] Args) { 187cdf0e10cSrcweir this.SOF = SOF; 188cdf0e10cSrcweir this.args = Args; 189cdf0e10cSrcweir } 190cdf0e10cSrcweir 191cdf0e10cSrcweir public void run() { 192cdf0e10cSrcweir try { 193cdf0e10cSrcweir String url= utils.getFullTestURL("10test.csv"); 194cdf0e10cSrcweir log.println("loading "+url); 195cdf0e10cSrcweir SOF.loadDocument(url,args); 196cdf0e10cSrcweir } catch (com.sun.star.uno.Exception e) { 197cdf0e10cSrcweir e.printStackTrace(); 198cdf0e10cSrcweir throw new StatusException( "Couldn't create document ", e ); 199cdf0e10cSrcweir } 200cdf0e10cSrcweir } 201cdf0e10cSrcweir } 202cdf0e10cSrcweir 203cdf0e10cSrcweir 204cdf0e10cSrcweir } 205