bump product version to 5.0.4.1
[LibreOffice.git] / qadevOOo / tests / java / mod / _sch / AccArea.java
blob716de219d50138306320c9b9524caed3b138d9df
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 .
18 package mod._sch;
20 import java.io.PrintWriter;
22 import lib.StatusException;
23 import lib.TestCase;
24 import lib.TestEnvironment;
25 import lib.TestParameters;
26 import util.AccessibilityTools;
27 import util.SOfficeFactory;
28 import util.utils;
30 import com.sun.star.accessibility.AccessibleRole;
31 import com.sun.star.accessibility.XAccessible;
32 import com.sun.star.accessibility.XAccessibleComponent;
33 import com.sun.star.accessibility.XAccessibleContext;
34 import com.sun.star.awt.XWindow;
35 import com.sun.star.chart.XChartDocument;
36 import com.sun.star.frame.XModel;
37 import com.sun.star.uno.UnoRuntime;
38 import com.sun.star.uno.XInterface;
40 public class AccArea extends TestCase {
42 XChartDocument xChartDoc = null;
44 @Override
45 protected TestEnvironment createTestEnvironment(
46 TestParameters Param, PrintWriter log) {
48 if (xChartDoc != null) cleanup(Param, log);
49 log.println( "creating a chart document" );
50 SOfficeFactory SOF = SOfficeFactory.getFactory( Param.getMSF());
51 try {
52 log.println( "creating a chartdocument" );
53 xChartDoc = SOF.createChartDoc();
54 } catch (com.sun.star.uno.Exception e) {
55 // Some exception occurs.FAILED
56 e.printStackTrace( log );
57 throw new StatusException( "Couldn't create document", e );
60 XInterface oObj = null;
62 XModel aModel = UnoRuntime.queryInterface(XModel.class, xChartDoc);
64 XWindow xWindow = AccessibilityTools.getCurrentWindow(aModel);
65 XAccessible xRoot = AccessibilityTools.getAccessibleObject(xWindow);
67 AccessibilityTools.printAccessibleTree(log, xRoot, Param.getBool(util.PropertyName.DEBUG_IS_ACTIVE));
69 XAccessibleContext cont = AccessibilityTools.getAccessibleObjectForRole(
70 xRoot, AccessibleRole.SHAPE, "", "AccArea");
73 oObj = cont;
75 log.println("ImplementationName " + utils.getImplName(oObj));
76 log.println("AccessibleName " + cont.getAccessibleName());
78 TestEnvironment tEnv = new TestEnvironment(oObj);
80 final XAccessibleComponent acc = UnoRuntime.queryInterface(
81 XAccessibleComponent.class,oObj);
82 tEnv.addObjRelation("EventProducer",
83 new ifc.accessibility._XAccessibleEventBroadcaster.EventProducer() {
84 public void fireEvent() {
85 acc.grabFocus();
87 });
89 return tEnv;
93 /**
94 * Called while disposing a <code>TestEnvironment</code>.
95 * Disposes text document.
96 * @param Param test parameters
97 * @param log writer to log information while testing
99 @Override
100 protected void cleanup( TestParameters Param, PrintWriter log) {
101 if( xChartDoc!=null ) {
102 log.println( " closing xChartDoc" );
103 util.DesktopTools.closeDoc(xChartDoc);
104 xChartDoc = null;