/************************************************************** * * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. * *************************************************************/ package mod._svx; import java.io.PrintWriter; import lib.StatusException; import lib.TestCase; import lib.TestEnvironment; import lib.TestParameters; import util.AccessibilityTools; import util.SOfficeFactory; import util.utils; import com.sun.star.accessibility.AccessibleRole; import com.sun.star.accessibility.XAccessible; import com.sun.star.accessibility.XAccessibleContext; import com.sun.star.accessibility.XAccessibleEditableText; import com.sun.star.awt.XWindow; import com.sun.star.frame.XModel; import com.sun.star.lang.XComponent; import com.sun.star.lang.XMultiServiceFactory; import com.sun.star.uno.UnoRuntime; import com.sun.star.uno.XInterface; public class AccessibleEditableTextPara extends TestCase { static XComponent xSpreadsheetDoc = null; /** * Called to create an instance of TestEnvironment * with an object to test and related objects. * Obtains accissible object for the spreadsheet document. * * @param Param test parameters * @param log writer to log information while testing * * @see TestEnvironment * @see #getTestEnvironment */ protected TestEnvironment createTestEnvironment( TestParameters Param, PrintWriter log) { XInterface oObj = null; XModel aModel = (XModel) UnoRuntime.queryInterface(XModel.class, xSpreadsheetDoc); AccessibilityTools at = new AccessibilityTools(); XWindow xWindow = at.getCurrentWindow( (XMultiServiceFactory) Param.getMSF(), aModel); XAccessible xRoot = at.getAccessibleObject(xWindow); at.printAccessibleTree(log, xRoot, Param.getBool(util.PropertyName.DEBUG_IS_ACTIVE)); XAccessibleContext InputLine = at.getAccessibleObjectForRole(xRoot, AccessibleRole.TEXT_FRAME,"Input line"); try { oObj = InputLine.getAccessibleChild(0); XAccessibleEditableText et = (XAccessibleEditableText) UnoRuntime.queryInterface(XAccessibleEditableText.class, oObj); et.setText("AccessibleEditablePara"); } catch (com.sun.star.lang.IndexOutOfBoundsException e) { } log.println("ImplementationName " + utils.getImplName(oObj)); TestEnvironment tEnv = new TestEnvironment(oObj); final XAccessibleEditableText edText = (XAccessibleEditableText) UnoRuntime.queryInterface(XAccessibleEditableText.class,oObj) ; tEnv.addObjRelation("EventProducer", new ifc.accessibility._XAccessibleEventBroadcaster.EventProducer() { public void fireEvent() { try { int l = new String("AccessibleEditablePara").length(); edText.deleteText(0, l); edText.setText("Event"); edText.setText("AccessibleEditablePara"); }catch(com.sun.star.lang.IndexOutOfBoundsException e) {} } }); return tEnv; } /** * Called while disposing a TestEnvironment. * Disposes text document. * @param Param test parameters * @param log writer to log information while testing */ protected void cleanup( TestParameters Param, PrintWriter log) { log.println( " disposing xSheetDoc " ); util.DesktopTools.closeDoc(xSpreadsheetDoc); } /** * Called while the TestCase initialization. In the * implementation does nothing. Subclasses can override to initialize * objects shared among all TestEnvironments. * * @param Param test parameters * @param log writer to log information while testing * * @see #initializeTestCase */ protected void initialize(TestParameters Param, PrintWriter log) { // get a soffice factory object SOfficeFactory SOF = SOfficeFactory.getFactory( (XMultiServiceFactory) Param.getMSF()); try { log.println("creating a spreadsheetdocument"); xSpreadsheetDoc = (XComponent) UnoRuntime.queryInterface(XComponent.class,SOF.createCalcDoc(null)); shortWait(); } catch (com.sun.star.uno.Exception e) { e.printStackTrace( log ); throw new StatusException( "Couldn't create document ", e ); } } /** * Sleeps for 0.5 sec. to allow StarOffice to react on * reset call. */ private void shortWait() { try { Thread.sleep(500) ; } catch (InterruptedException e) { log.println("While waiting :" + e) ; } } }