Avoid potential negative array index access to cached text.
[LibreOffice.git] / qadevOOo / tests / java / mod / _svx / AccessibleOLEShape.java
blob8529515a209e6c5c99d07a9d12a6eb1dcc80810e
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.TestCase;
24 import lib.TestEnvironment;
25 import lib.TestParameters;
26 import util.AccessibilityTools;
27 import util.DrawTools;
28 import util.SOfficeFactory;
29 import util.utils;
31 import com.sun.star.accessibility.AccessibleRole;
32 import com.sun.star.accessibility.XAccessible;
33 import com.sun.star.awt.Size;
34 import com.sun.star.awt.XWindow;
35 import com.sun.star.beans.XPropertySet;
36 import com.sun.star.drawing.XShape;
37 import com.sun.star.frame.XModel;
38 import com.sun.star.lang.XComponent;
39 import com.sun.star.uno.UnoRuntime;
40 import com.sun.star.uno.XInterface;
42 public class AccessibleOLEShape extends TestCase {
44 static XComponent xDrawDoc;
45 static XModel aModel;
47 @Override
48 protected void initialize( TestParameters tParam, PrintWriter log ) throws Exception {
50 SOfficeFactory SOF = SOfficeFactory.getFactory( tParam.getMSF() );
52 log.println( "creating a drawdoc" );
53 xDrawDoc = SOF.createDrawDoc(null);
54 aModel = UnoRuntime.queryInterface(XModel.class, xDrawDoc);
57 /**
58 * Disposes the Draw document loaded before.
60 @Override
61 protected void cleanup( TestParameters tParam, PrintWriter log ) {
62 log.println( " disposing xDrawDoc " );
63 util.DesktopTools.closeDoc(xDrawDoc);
66 @Override
67 protected TestEnvironment createTestEnvironment
68 (TestParameters tParam, PrintWriter log) throws Exception {
70 XInterface oObj = null;
72 // creation of testobject here
73 // first we write what we are intend to do to log file
74 log.println( "creating a test environment" );
76 SOfficeFactory SOF = SOfficeFactory.getFactory( tParam.getMSF());
77 final XShape oShape = SOF.createShape
78 (xDrawDoc,5000,5000,1500,1000,"OLE2");
80 DrawTools.getShapes(DrawTools.getDrawPage(xDrawDoc,0)).add(oShape);
82 XPropertySet shape_props = UnoRuntime.queryInterface(XPropertySet.class,oShape);
84 log.println("Inserting a Chart");
86 shape_props.
87 setPropertyValue("CLSID","12DCAE26-281F-416F-a234-c3086127382e");
89 XWindow xWindow = AccessibilityTools.getCurrentWindow (aModel);
90 XAccessible xRoot = AccessibilityTools.getAccessibleObject(xWindow);
92 AccessibilityTools.printAccessibleTree(log, xRoot, tParam.getBool(util.PropertyName.DEBUG_IS_ACTIVE));
94 oObj = AccessibilityTools.getAccessibleObjectForRole(xRoot, AccessibleRole.UNKNOWN, "OLEShape");
96 // create test environment here
97 TestEnvironment tEnv = new TestEnvironment( oObj );
99 tEnv.addObjRelation("EventProducer",
100 new ifc.accessibility._XAccessibleEventBroadcaster.EventProducer() {
101 public void fireEvent() {
102 try {
103 Size size = oShape.getSize();
104 size.Width += 100;
105 oShape.setSize(size);
106 } catch(com.sun.star.beans.PropertyVetoException e) {
107 System.out.println("caught exception: " + e);
112 log.println("Implementation Name: " + utils.getImplName(oObj));
114 return tEnv;
115 } // finish method getTestEnvironment