bump product version to 5.0.4.1
[LibreOffice.git] / qadevOOo / tests / java / mod / _toolkit / AccessibleListItem.java
blob1443a4a68aeddf3375c266df78d8a06828a7656f
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._toolkit;
20 import com.sun.star.accessibility.AccessibleRole;
21 import com.sun.star.accessibility.XAccessible;
22 import com.sun.star.accessibility.XAccessibleAction;
23 import com.sun.star.accessibility.XAccessibleComponent;
24 import com.sun.star.accessibility.XAccessibleSelection;
25 import com.sun.star.awt.XExtendedToolkit;
26 import com.sun.star.awt.XWindow;
27 import com.sun.star.beans.PropertyValue;
28 import com.sun.star.frame.XController;
29 import com.sun.star.frame.XDispatch;
30 import com.sun.star.frame.XDispatchProvider;
31 import com.sun.star.frame.XModel;
32 import com.sun.star.lang.XMultiServiceFactory;
33 import com.sun.star.text.XTextDocument;
34 import com.sun.star.uno.UnoRuntime;
35 import com.sun.star.uno.XInterface;
36 import com.sun.star.util.URL;
37 import com.sun.star.util.XURLTransformer;
39 import java.io.PrintWriter;
41 import lib.StatusException;
42 import lib.TestCase;
43 import lib.TestEnvironment;
44 import lib.TestParameters;
46 import util.AccessibilityTools;
47 import util.SOfficeFactory;
48 import util.utils;
51 /**
52 * Test for object which is represented accessible component
53 * of 'File type' list box item situated in 'Insert Hyperlink'
54 * dialog on tab 'New Document'. <p>
56 * Object implements the following interfaces :
57 * <ul>
58 * <li> <code>::com::sun::star::accessibility::XAccessibleEventBroadcaster</code></li>
59 * <li> <code>::com::sun::star::accessibility::XAccessibleComponent</code></li>
60 * <li> <code>::com::sun::star::accessibility::XAccessibleContext</code></li>
61 * <li> <code>::com::sun::star::accessibility::XAccessibleText</code></li>
62 * </ul> <p>
64 * @see com.sun.star.accessibility.XAccessibleEventBroadcaster
65 * @see com.sun.star.accessibility.XAccessibleComponent
66 * @see com.sun.star.accessibility.XAccessibleContext
67 * @see com.sun.star.accessibility.XAccessibleText
68 * @see ifc.accessibility._XAccessibleEventBroadcaster
69 * @see ifc.accessibility._XAccessibleComponent
70 * @see ifc.accessibility._XAccessibleContext
71 * @see ifc.accessibility._XAccessibleText
73 public class AccessibleListItem extends TestCase {
74 private static XTextDocument xTextDoc = null;
75 private static XAccessibleAction action = null;
77 /**
78 * Opens 'Insert Hyperlink' dialog using document dispatch provider.
79 * Finds active top window (the dialog
80 * window) and finds button 'Close' (for closing this dialog when
81 * disposing) walking through the accessible component tree.
82 * Then the TREE component is found and the 'New Document' tab is
83 * selected to make list box visible. After that listbox item is obtained.
85 @Override
86 protected TestEnvironment createTestEnvironment(TestParameters Param,
87 PrintWriter log) {
88 XInterface oObj = null;
89 XMultiServiceFactory msf = Param.getMSF();
91 try {
92 oObj = (XInterface) msf.createInstance("com.sun.star.awt.Toolkit");
93 } catch (com.sun.star.uno.Exception e) {
94 log.println("Couldn't get toolkit");
95 e.printStackTrace(log);
96 throw new StatusException("Couldn't get toolkit", e);
99 XExtendedToolkit tk = UnoRuntime.queryInterface(
100 XExtendedToolkit.class, oObj);
102 util.utils.pause(1000);
104 XModel aModel1 = UnoRuntime.queryInterface(XModel.class,
105 xTextDoc);
107 XController secondController = aModel1.getCurrentController();
109 XDispatchProvider aProv = UnoRuntime.queryInterface(
110 XDispatchProvider.class,
111 secondController);
113 XURLTransformer urlTransf = null;
115 try {
116 XInterface transf = (XInterface) msf.createInstance(
117 "com.sun.star.util.URLTransformer");
118 urlTransf = UnoRuntime.queryInterface(
119 XURLTransformer.class, transf);
120 } catch (com.sun.star.uno.Exception e) {
121 e.printStackTrace(log);
122 throw new StatusException("Couldn't create URLTransformer", e);
125 XDispatch getting = null;
126 log.println("opening HyperlinkDialog");
128 URL[] url = new URL[1];
129 url[0] = new URL();
130 url[0].Complete = ".uno:HyperlinkDialog";
131 urlTransf.parseStrict(url);
132 getting = aProv.queryDispatch(url[0], "", 0);
134 PropertyValue[] noArgs = new PropertyValue[0];
135 getting.dispatch(url[0], noArgs);
137 util.utils.pause(1000);
139 XWindow xWindow = UnoRuntime.queryInterface(XWindow.class,
140 tk.getActiveTopWindow());
142 XAccessible xRoot = AccessibilityTools.getAccessibleObject(xWindow);
145 AccessibilityTools.printAccessibleTree(log, xRoot, Param.getBool(util.PropertyName.DEBUG_IS_ACTIVE));
146 // obtaining 'Close' button
147 oObj = AccessibilityTools.getAccessibleObjectForRole(xRoot, AccessibleRole.PUSH_BUTTON,
148 "Close");
149 action = UnoRuntime.queryInterface(
150 XAccessibleAction.class, oObj);
152 // Selecting 'New Document' tab
153 try {
154 oObj = AccessibilityTools.getAccessibleObjectForRole(xRoot, AccessibleRole.TREE);
156 XAccessibleSelection xAccSel = UnoRuntime.queryInterface(
157 XAccessibleSelection.class,
158 oObj);
159 xAccSel.selectAccessibleChild(3);
160 util.utils.pause(1000);
161 } catch (com.sun.star.lang.IndexOutOfBoundsException e) {
162 throw new StatusException("Can't switch to required tab", e);
165 oObj = AccessibilityTools.getAccessibleObjectForRole(xRoot, AccessibleRole.LIST_ITEM,"Spr");
167 log.println("ImplementationName " + utils.getImplName(oObj));
169 TestEnvironment tEnv = new TestEnvironment(oObj);
171 tEnv.addObjRelation("EditOnly",
172 "This method isn't supported in this component");
174 tEnv.addObjRelation("LimitedBounds", "yes");
176 final XAccessibleComponent acomp = UnoRuntime.queryInterface(
177 XAccessibleComponent.class,
178 oObj);
179 tEnv.addObjRelation("EventProducer",
180 new ifc.accessibility._XAccessibleEventBroadcaster.EventProducer() {
181 public void fireEvent() {
182 acomp.grabFocus();
186 return tEnv;
190 * Closes dialog using action of button 'Close'
192 @Override
193 protected void cleanup(TestParameters Param, PrintWriter log) {
194 log.println(" Closing dialog ... ");
196 try {
197 action.doAccessibleAction(0);
198 } catch (com.sun.star.lang.IndexOutOfBoundsException ioe) {
199 log.println("Couldn't close dialog");
200 } catch (com.sun.star.lang.DisposedException de) {
201 log.println("Dialog already disposed");
204 util.DesktopTools.closeDoc(xTextDoc);
208 * Creates writer document
210 @Override
211 protected void initialize(TestParameters Param, PrintWriter log) {
212 try {
213 SOfficeFactory SOF = SOfficeFactory.getFactory(
214 Param.getMSF());
215 xTextDoc = SOF.createTextDoc(null);
216 } catch (com.sun.star.uno.Exception e) {
217 throw new StatusException("Can't create document", e);