bump product version to 5.0.4.1
[LibreOffice.git] / qadevOOo / tests / java / mod / _forms / OCurrencyControl.java
blob903721f9a9f393cbb182a6521a46f803f6713eb0
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._forms;
20 import java.io.PrintWriter;
22 import lib.StatusException;
23 import lib.TestCase;
24 import lib.TestEnvironment;
25 import lib.TestParameters;
26 import util.FormTools;
27 import util.SOfficeFactory;
28 import util.WriterTools;
30 import com.sun.star.awt.XControl;
31 import com.sun.star.awt.XControlModel;
32 import com.sun.star.awt.XDevice;
33 import com.sun.star.awt.XGraphics;
34 import com.sun.star.awt.XTextComponent;
35 import com.sun.star.awt.XToolkit;
36 import com.sun.star.awt.XWindow;
37 import com.sun.star.awt.XWindowPeer;
38 import com.sun.star.drawing.XControlShape;
39 import com.sun.star.text.XTextDocument;
40 import com.sun.star.uno.UnoRuntime;
41 import com.sun.star.uno.XInterface;
42 import com.sun.star.util.XCloseable;
43 import com.sun.star.view.XControlAccess;
46 /**
47 * Test for object which is represented by default controller
48 * of the <code>com.sun.star.form.component.CurrencyField</code>
49 * component. <p>
51 * Object implements the following interfaces :
52 * <ul>
53 * <li> <code>com::sun::star::awt::XView</code></li>
54 * <li> <code>com::sun::star::form::XBoundControl</code></li>
55 * <li> <code>com::sun::star::awt::XControl</code></li>
56 * <li> <code>com::sun::star::awt::XTextComponent</code></li>
57 * <li> <code>com::sun::star::awt::XLayoutConstrains</code></li>
58 * <li> <code>com::sun::star::awt::XTextListener</code></li>
59 * <li> <code>com::sun::star::awt::XWindow</code></li>
60 * <li> <code>com::sun::star::awt::XCurrencyField</code></li>
61 * <li> <code>com::sun::star::lang::XComponent</code></li>
62 * <li> <code>com::sun::star::awt::XTextLayoutConstrains</code></li>
63 * <li> <code>com::sun::star::lang::XEventListener</code></li>
64 * </ul> <p>
65 * This object test <b> is NOT </b> designed to be run in several
66 * threads concurently.
68 * @see com.sun.star.awt.XView
69 * @see com.sun.star.form.XBoundControl
70 * @see com.sun.star.awt.XControl
71 * @see com.sun.star.awt.XTextComponent
72 * @see com.sun.star.awt.XLayoutConstrains
73 * @see com.sun.star.awt.XTextListener
74 * @see com.sun.star.awt.XWindow
75 * @see com.sun.star.awt.XCurrencyField
76 * @see com.sun.star.lang.XComponent
77 * @see com.sun.star.awt.XTextLayoutConstrains
78 * @see com.sun.star.lang.XEventListener
79 * @see ifc.awt._XView
80 * @see ifc.form._XBoundControl
81 * @see ifc.awt._XControl
82 * @see ifc.awt._XTextComponent
83 * @see ifc.awt._XLayoutConstrains
84 * @see ifc.awt._XTextListener
85 * @see ifc.awt._XWindow
86 * @see ifc.awt._XCurrencyField
87 * @see ifc.lang._XComponent
88 * @see ifc.awt._XTextLayoutConstrains
89 * @see ifc.lang._XEventListener
91 public class OCurrencyControl extends TestCase {
92 XTextDocument xTextDoc;
94 /**
95 * Creates a new text document.
97 @Override
98 protected void initialize(TestParameters Param, PrintWriter log) {
99 SOfficeFactory SOF = SOfficeFactory.getFactory(Param.getMSF());
101 try {
102 log.println("creating a textdocument");
103 xTextDoc = SOF.createTextDoc(null);
104 } catch (com.sun.star.uno.Exception e) {
105 // Some exception occurs.FAILED
106 e.printStackTrace(log);
107 throw new StatusException("Couldn't create document", e);
112 * Disposes the text document created before
114 @Override
115 protected void cleanup(TestParameters tParam, PrintWriter log) {
116 log.println(" disposing xTextDoc ");
118 try {
119 XCloseable closer = UnoRuntime.queryInterface(
120 XCloseable.class, xTextDoc);
121 closer.close(true);
122 } catch (com.sun.star.util.CloseVetoException e) {
123 log.println("couldn't close document");
124 } catch (com.sun.star.lang.DisposedException e) {
125 log.println("couldn't close document");
130 * Creates two components and inserts them to the form of
131 * text document. One component
132 * (<code>com.sun.star.form.component.CurrencyField</code>) is created
133 * for testing, another to be passed as relation. Using a controller
134 * of the text document the controller of the first component is
135 * obtained and returned in environment as a test object. <p>
137 * Object relations created :
138 * <ul>
139 * <li> <code>'GRAPHICS'</code> for
140 * {@link ifc.awt._XView} : a graphics component
141 * created using screen device of the window peer of
142 * the controller tested. </li>
143 * <li> <code>'CONTEXT'</code> for
144 * {@link ifc.awt._XControl} : the text document
145 * where the component is inserted. </li>
146 * <li> <code>'WINPEER'</code> for
147 * {@link ifc.awt._XControl} : Window peer of the
148 * controller tested. </li>
149 * <li> <code>'TOOLKIT'</code> for
150 * {@link ifc.awt._XControl} : toolkit of the component.</li>
151 * <li> <code>'MODEL'</code> for
152 * {@link ifc.awt._XControl} : the model of the controller.</li>
153 * <li> <code>'XWindow.AnotherWindow'</code> for
154 * {@link ifc.awt._XWindow} : the controller of another
155 * component. </li>
156 * <li> <code>'XTextComponent.onlyNumbers'</code> for
157 * {@link ifc.awt._XTextComponent} : as the currency field
158 * can have only numeric values the relation must be specified. </li>
159 * </ul>
161 @Override
162 protected TestEnvironment createTestEnvironment(TestParameters Param,
163 PrintWriter log) {
164 XInterface oObj = null;
165 XWindowPeer the_win = null;
166 XToolkit the_kit = null;
167 XDevice aDevice = null;
168 XGraphics aGraphic = null;
169 XControl aControl = null;
171 //Insert a ControlShape and get the ControlModel
172 XControlShape aShape = FormTools.createControlShape(xTextDoc, 3000,
173 4500, 15000, 10000,
174 "CurrencyField");
176 WriterTools.getDrawPage(xTextDoc).add(aShape);
178 XControlModel the_Model = aShape.getControl();
180 XControlShape aShape2 = FormTools.createControlShape(xTextDoc, 3000,
181 4500, 5000, 10000,
182 "TextField");
184 WriterTools.getDrawPage(xTextDoc).add(aShape2);
186 XControlModel the_Model2 = aShape2.getControl();
188 //Try to query XControlAccess
189 XControlAccess the_access = UnoRuntime.queryInterface(
190 XControlAccess.class,
191 xTextDoc.getCurrentController());
193 //now get the OCurrencyControl
194 try {
195 oObj = the_access.getControl(the_Model);
196 aControl = the_access.getControl(the_Model2);
197 the_win = the_access.getControl(the_Model).getPeer();
198 the_kit = the_win.getToolkit();
199 aDevice = the_kit.createScreenCompatibleDevice(200, 200);
200 aGraphic = aDevice.createGraphics();
201 } catch (com.sun.star.container.NoSuchElementException e) {
202 log.println("Couldn't get OCurrencyControl");
203 e.printStackTrace(log);
204 throw new StatusException("Couldn't get OCurrencyControl", e);
207 log.println("creating a new environment for OCurrencyControl object");
209 TestEnvironment tEnv = new TestEnvironment(oObj);
212 //Adding ObjRelation for XView
213 tEnv.addObjRelation("GRAPHICS", aGraphic);
216 //Adding ObjRelation for XControl
217 tEnv.addObjRelation("CONTEXT", xTextDoc);
218 tEnv.addObjRelation("WINPEER", the_win);
219 tEnv.addObjRelation("TOOLKIT", the_kit);
220 tEnv.addObjRelation("MODEL", the_Model);
223 // Adding relation for XTextComponent
224 tEnv.addObjRelation("XTextComponent.onlyNumbers", new Object());
226 // Adding relation for XWindow
227 XWindow forObjRel = UnoRuntime.queryInterface(XWindow.class,
228 aControl);
230 tEnv.addObjRelation("XWindow.AnotherWindow", forObjRel);
231 tEnv.addObjRelation("XWindow.ControlShape", aShape);
233 // Adding relation for XTextListener
234 ifc.awt._XTextListener.TestTextListener listener =
235 new ifc.awt._XTextListener.TestTextListener();
236 XTextComponent textComp = UnoRuntime.queryInterface(
237 XTextComponent.class, oObj);
238 textComp.addTextListener(listener);
239 tEnv.addObjRelation("TestTextListener", listener);
241 return tEnv;
242 } // finish method getTestEnvironment
243 } // finish class OCurrencyControl