bump product version to 4.2.0.1
[LibreOffice.git] / qadevOOo / tests / java / mod / _svx / AccessiblePresentationShape.java
blob38b17b62ad0f5d9fdce106efb5007d0d9ae4188b
1 /*
2 * This file is part of the LibreOffice project.
4 * This Source Code Form is subject to the terms of the Mozilla Public
5 * License, v. 2.0. If a copy of the MPL was not distributed with this
6 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 * This file incorporates work covered by the following license notice:
10 * Licensed to the Apache Software Foundation (ASF) under one or more
11 * contributor license agreements. See the NOTICE file distributed
12 * with this work for additional information regarding copyright
13 * ownership. The ASF licenses this file to you under the Apache
14 * License, Version 2.0 (the "License"); you may not use this file
15 * except in compliance with the License. You may obtain a copy of
16 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
19 package mod._svx;
21 import java.io.PrintWriter;
23 import lib.StatusException;
24 import lib.TestCase;
25 import lib.TestEnvironment;
26 import lib.TestParameters;
27 import util.AccessibilityTools;
28 import util.DrawTools;
29 import util.SOfficeFactory;
30 import util.utils;
32 import com.sun.star.accessibility.AccessibleRole;
33 import com.sun.star.accessibility.XAccessible;
34 import com.sun.star.awt.Size;
35 import com.sun.star.awt.XWindow;
36 import com.sun.star.beans.XPropertySet;
37 import com.sun.star.drawing.XShape;
38 import com.sun.star.frame.XModel;
39 import com.sun.star.lang.XComponent;
40 import com.sun.star.lang.XMultiServiceFactory;
41 import com.sun.star.uno.UnoRuntime;
42 import com.sun.star.uno.XInterface;
44 public class AccessiblePresentationShape extends TestCase {
46 static XComponent xDrawDoc;
47 static XModel aModel;
49 protected void initialize( TestParameters tParam, PrintWriter log ) {
51 SOfficeFactory SOF = SOfficeFactory.getFactory( (XMultiServiceFactory)tParam.getMSF() );
53 try {
54 log.println( "creating a drawdoc" );
55 xDrawDoc = SOF.createImpressDoc(null);
56 aModel = UnoRuntime.queryInterface(XModel.class, xDrawDoc);
58 } catch ( com.sun.star.uno.Exception e ) {
59 // Some exception occurs.FAILED
60 e.printStackTrace( log );
61 throw new StatusException( "Couldn't create document", e );
65 /**
66 * Disposes the Draw document loaded before.
68 protected void cleanup( TestParameters tParam, PrintWriter log ) {
69 log.println( " disposing xDrawDoc " );
70 util.DesktopTools.closeDoc(xDrawDoc);
73 protected TestEnvironment createTestEnvironment
74 (TestParameters tParam, PrintWriter log) {
76 XInterface oObj = null;
77 XShape oShape = null;
79 // creation of testobject here
80 // first we write what we are intend to do to log file
81 log.println( "creating a test environment" );
83 XMultiServiceFactory docMSF = UnoRuntime.queryInterface(XMultiServiceFactory.class, xDrawDoc);
84 try {
85 oShape = UnoRuntime.queryInterface(XShape.class,
86 docMSF.createInstance
87 ("com.sun.star.presentation.HandoutShape"));
88 } catch (com.sun.star.uno.Exception e) {
89 throw new StatusException("couldn't create component", e);
93 DrawTools.getShapes(DrawTools.getDrawPage(xDrawDoc,0)).add(oShape);
95 XPropertySet shapeProps = UnoRuntime.queryInterface(XPropertySet.class, oShape);
97 try {
98 shapeProps.setPropertyValue(
99 "IsEmptyPresentationObject", new Boolean(false));
100 } catch (Exception e) {}
102 AccessibilityTools at = new AccessibilityTools();
104 XWindow xWindow = AccessibilityTools.getCurrentWindow ((XMultiServiceFactory)tParam.getMSF(),aModel);
105 XAccessible xRoot = AccessibilityTools.getAccessibleObject(xWindow);
107 AccessibilityTools.printAccessibleTree(log, xRoot, tParam.getBool(util.PropertyName.DEBUG_IS_ACTIVE));
108 // oObj = at.getAccessibleObjectForRole
109 // (xRoot, AccessibleRole.SHAPE, "ImpressHandout");
110 oObj = AccessibilityTools.getAccessibleObjectForRole(xRoot, AccessibleRole.UNKNOWN, "ImpressHandout");
112 log.println("Implementation Name: "+utils.getImplName(oObj));
114 // create test environment here
115 TestEnvironment tEnv = new TestEnvironment( oObj );
117 final XShape fShape = oShape ;
118 tEnv.addObjRelation("EventProducer",
119 new ifc.accessibility._XAccessibleEventBroadcaster.EventProducer() {
120 public void fireEvent() {
121 try {
122 Size size = fShape.getSize();
123 size.Width += 100;
124 fShape.setSize(size);
125 } catch(com.sun.star.beans.PropertyVetoException e) {}
129 log.println("Implementation Name: " + utils.getImplName(oObj));
131 return tEnv;
132 } // finish method getTestEnvironment