bump product version to 5.0.4.1
[LibreOffice.git] / qadevOOo / tests / java / mod / _sch / AccStatisticsObject.java
blobd1cbf720e97b6edce04205eba562e6fd0aba5013
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.beans.XPropertySet;
36 import com.sun.star.chart.XChartDocument;
37 import com.sun.star.frame.XModel;
38 import com.sun.star.uno.UnoRuntime;
39 import com.sun.star.uno.XInterface;
41 public class AccStatisticsObject extends TestCase {
43 XChartDocument xChartDoc = null;
45 @Override
46 protected TestEnvironment createTestEnvironment(
47 TestParameters Param, PrintWriter log) {
49 if (xChartDoc != null) cleanup(Param, log);
50 log.println( "creating a chart document" );
51 SOfficeFactory SOF = SOfficeFactory.getFactory( Param.getMSF());
52 try {
53 log.println( "creating a chartdocument" );
54 xChartDoc = SOF.createChartDoc();
55 log.println("Display MeanValue");
56 XPropertySet diagProps = UnoRuntime.queryInterface(XPropertySet.class, xChartDoc.getDiagram());
57 diagProps.setPropertyValue("MeanValue",Boolean.TRUE);
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 );
64 XInterface oObj = null;
66 XModel aModel = UnoRuntime.queryInterface(XModel.class, xChartDoc);
68 XWindow xWindow = AccessibilityTools.getCurrentWindow(aModel);
69 XAccessible xRoot = AccessibilityTools.getAccessibleObject(xWindow);
71 XAccessibleContext cont = AccessibilityTools.getAccessibleObjectForRole(
72 xRoot, AccessibleRole.SHAPE, "", "AccStatisticsObject");
75 oObj = cont;
77 log.println("ImplementationName " + utils.getImplName(oObj));
78 log.println("AccessibleName " + cont.getAccessibleName());
80 TestEnvironment tEnv = new TestEnvironment(oObj);
82 final XAccessibleComponent acc = UnoRuntime.queryInterface(
83 XAccessibleComponent.class,oObj);
84 tEnv.addObjRelation("EventProducer",
85 new ifc.accessibility._XAccessibleEventBroadcaster.EventProducer() {
86 public void fireEvent() {
87 acc.grabFocus();
89 });
91 return tEnv;
95 /**
96 * Called while disposing a <code>TestEnvironment</code>.
97 * Disposes text document.
98 * @param Param test parameters
99 * @param log writer to log information while testing
101 @Override
102 protected void cleanup( TestParameters Param, PrintWriter log) {
103 if( xChartDoc!=null ) {
104 log.println( " closing xChartDoc" );
105 util.DesktopTools.closeDoc(xChartDoc);
106 xChartDoc = null;