xref: /AOO41X/main/qadevOOo/tests/java/mod/_sd/SdUnoDrawView.java (revision ef39d40d3f5e66cf3f035b3e93783012b340500d)
1*ef39d40dSAndrew Rist /**************************************************************
2cdf0e10cSrcweir  *
3*ef39d40dSAndrew Rist  * Licensed to the Apache Software Foundation (ASF) under one
4*ef39d40dSAndrew Rist  * or more contributor license agreements.  See the NOTICE file
5*ef39d40dSAndrew Rist  * distributed with this work for additional information
6*ef39d40dSAndrew Rist  * regarding copyright ownership.  The ASF licenses this file
7*ef39d40dSAndrew Rist  * to you under the Apache License, Version 2.0 (the
8*ef39d40dSAndrew Rist  * "License"); you may not use this file except in compliance
9*ef39d40dSAndrew Rist  * with the License.  You may obtain a copy of the License at
10cdf0e10cSrcweir  *
11*ef39d40dSAndrew Rist  *   http://www.apache.org/licenses/LICENSE-2.0
12cdf0e10cSrcweir  *
13*ef39d40dSAndrew Rist  * Unless required by applicable law or agreed to in writing,
14*ef39d40dSAndrew Rist  * software distributed under the License is distributed on an
15*ef39d40dSAndrew Rist  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16*ef39d40dSAndrew Rist  * KIND, either express or implied.  See the License for the
17*ef39d40dSAndrew Rist  * specific language governing permissions and limitations
18*ef39d40dSAndrew Rist  * under the License.
19cdf0e10cSrcweir  *
20*ef39d40dSAndrew Rist  *************************************************************/
21*ef39d40dSAndrew Rist 
22*ef39d40dSAndrew Rist 
23cdf0e10cSrcweir 
24cdf0e10cSrcweir package mod._sd;
25cdf0e10cSrcweir 
26cdf0e10cSrcweir import java.io.PrintWriter;
27cdf0e10cSrcweir import java.util.Comparator;
28cdf0e10cSrcweir 
29cdf0e10cSrcweir import lib.Status;
30cdf0e10cSrcweir import lib.StatusException;
31cdf0e10cSrcweir import lib.TestCase;
32cdf0e10cSrcweir import lib.TestEnvironment;
33cdf0e10cSrcweir import lib.TestParameters;
34cdf0e10cSrcweir import util.DesktopTools;
35cdf0e10cSrcweir import util.SOfficeFactory;
36cdf0e10cSrcweir import util.utils;
37cdf0e10cSrcweir 
38cdf0e10cSrcweir import com.sun.star.awt.XWindow;
39cdf0e10cSrcweir import com.sun.star.container.XIndexAccess;
40cdf0e10cSrcweir import com.sun.star.drawing.XDrawPage;
41cdf0e10cSrcweir import com.sun.star.drawing.XDrawPages;
42cdf0e10cSrcweir import com.sun.star.drawing.XDrawPagesSupplier;
43cdf0e10cSrcweir import com.sun.star.drawing.XShape;
44cdf0e10cSrcweir import com.sun.star.drawing.XShapes;
45cdf0e10cSrcweir import com.sun.star.frame.XController;
46cdf0e10cSrcweir import com.sun.star.frame.XDesktop;
47cdf0e10cSrcweir import com.sun.star.frame.XFrame;
48cdf0e10cSrcweir import com.sun.star.frame.XModel;
49cdf0e10cSrcweir import com.sun.star.lang.XComponent;
50cdf0e10cSrcweir import com.sun.star.lang.XMultiServiceFactory;
51cdf0e10cSrcweir import com.sun.star.uno.AnyConverter;
52cdf0e10cSrcweir import com.sun.star.uno.Type;
53cdf0e10cSrcweir import com.sun.star.uno.UnoRuntime;
54cdf0e10cSrcweir import com.sun.star.uno.XInterface;
55cdf0e10cSrcweir import com.sun.star.util.XModifiable;
56cdf0e10cSrcweir 
57cdf0e10cSrcweir /**
58cdf0e10cSrcweir * Test for object which is represented by service
59cdf0e10cSrcweir * <code>com.sun.star.drawing.DrawingDocumentDrawView</code>. <p>
60cdf0e10cSrcweir * Object implements the following interfaces :
61cdf0e10cSrcweir * <ul>
62cdf0e10cSrcweir *  <li> <code>com::sun::star::drawing::DrawingDocumentDrawView</code></li>
63cdf0e10cSrcweir *  <li> <code>com::sun::star::lang::XComponent</code></li>
64cdf0e10cSrcweir *  <li> <code>com::sun::star::lang::XServiceInfo</code></li>
65cdf0e10cSrcweir *  <li> <code>com::sun::star::frame::XController</code></li>
66cdf0e10cSrcweir *  <li> <code>com::sun::star::beans::XPropertySet</code></li>
67cdf0e10cSrcweir *  <li> <code>com::sun::star::view::XSelectionSupplier</code></li>
68cdf0e10cSrcweir *  <li> <code>com::sun::star::drawing::XDrawView</code></li>
69cdf0e10cSrcweir * </ul>
70cdf0e10cSrcweir * @see com.sun.star.drawing.DrawingDocumentDrawView
71cdf0e10cSrcweir * @see com.sun.star.lang.XComponent
72cdf0e10cSrcweir * @see com.sun.star.lang.XServiceInfo
73cdf0e10cSrcweir * @see com.sun.star.frame.XController
74cdf0e10cSrcweir * @see com.sun.star.beans.XPropertySet
75cdf0e10cSrcweir * @see com.sun.star.view.XSelectionSupplier
76cdf0e10cSrcweir * @see com.sun.star.drawing.XDrawView
77cdf0e10cSrcweir * @see ifc.drawing._DrawingDocumentDrawView
78cdf0e10cSrcweir * @see ifc.lang._XComponent
79cdf0e10cSrcweir * @see ifc.lang._XServiceInfo
80cdf0e10cSrcweir * @see ifc.frame._XController
81cdf0e10cSrcweir * @see ifc.beans._XPropertySet
82cdf0e10cSrcweir * @see ifc.view._XSelectionSupplier
83cdf0e10cSrcweir * @see ifc.drawing._XDrawView
84cdf0e10cSrcweir */
85cdf0e10cSrcweir public class SdUnoDrawView extends TestCase {
86cdf0e10cSrcweir     static XDesktop the_Desk;
87cdf0e10cSrcweir     static XComponent xDrawDoc;
88cdf0e10cSrcweir     static XComponent xSecondDrawDoc;
89cdf0e10cSrcweir 
90cdf0e10cSrcweir     /**
91cdf0e10cSrcweir     * Creates the instance of the service
92cdf0e10cSrcweir     * <code>com.sun.star.frame.Desktop</code>.
93cdf0e10cSrcweir     * @see com.sun.star.frame.Desktop
94cdf0e10cSrcweir     */
95cdf0e10cSrcweir     protected void initialize(TestParameters Param, PrintWriter log) {
96cdf0e10cSrcweir         the_Desk = (XDesktop)
97cdf0e10cSrcweir             UnoRuntime.queryInterface(
98cdf0e10cSrcweir                 XDesktop.class, DesktopTools.createDesktop(
99cdf0e10cSrcweir                                     (XMultiServiceFactory)Param.getMSF()) );
100cdf0e10cSrcweir     }
101cdf0e10cSrcweir 
102cdf0e10cSrcweir     /**
103cdf0e10cSrcweir     * Called while disposing a <code>TestEnvironment</code>.
104cdf0e10cSrcweir     * Disposes Impress documents.
105cdf0e10cSrcweir     * @param tParam test parameters
106cdf0e10cSrcweir     * @param tEnv the environment to cleanup
107cdf0e10cSrcweir     * @param log writer to log information while testing
108cdf0e10cSrcweir     */
109cdf0e10cSrcweir     protected void cleanup( TestParameters Param, PrintWriter log) {
110cdf0e10cSrcweir         log.println("disposing draw documents");
111cdf0e10cSrcweir         util.DesktopTools.closeDoc(xDrawDoc);
112cdf0e10cSrcweir         util.DesktopTools.closeDoc(xSecondDrawDoc);
113cdf0e10cSrcweir     }
114cdf0e10cSrcweir 
115cdf0e10cSrcweir     /**
116cdf0e10cSrcweir     * Creating a Testenvironment for the interfaces to be tested.
117cdf0e10cSrcweir     * Creates two impress documents. After creating
118cdf0e10cSrcweir     * of the documents makes short
119cdf0e10cSrcweir     * wait to allow frames to be loaded. Retrieves
120cdf0e10cSrcweir     * the collection of the draw pages
121cdf0e10cSrcweir     * from the first document and takes one of them. Inserts some shapes to the
122cdf0e10cSrcweir     * retrieved draw page. Obtains a current controller from the first document
123cdf0e10cSrcweir     * using the interface <code>XModel</code>. The obtained controller is the
124cdf0e10cSrcweir     * instance of the service
125cdf0e10cSrcweir     * <code>com.sun.star.drawing.DrawingDocumentDrawView</code>.
126cdf0e10cSrcweir     * Object relations created :
127cdf0e10cSrcweir     * <ul>
128cdf0e10cSrcweir     *  <li> <code>'Pages'</code> for
129cdf0e10cSrcweir     *      {@link ifc.drawing._XDrawView}(the retrieved collection of the draw
130cdf0e10cSrcweir     *      pages) </li>
131cdf0e10cSrcweir     *  <li> <code>'FirstModel'</code> for
132cdf0e10cSrcweir     *      {@link ifc.frame._XController}(the interface <code>XModel</code> of
133cdf0e10cSrcweir     *      the first created document) </li>
134cdf0e10cSrcweir     *  <li> <code>'Frame'</code> for
135cdf0e10cSrcweir     *      {@link ifc.frame._XController}(the frame of the created
136cdf0e10cSrcweir     *      document) </li>
137cdf0e10cSrcweir     *  <li> <code>'SecondModel'</code> for
138cdf0e10cSrcweir     *      {@link ifc.frame._XController}(the interface <code>XModel</code> of
139cdf0e10cSrcweir     *      the second created document) </li>
140cdf0e10cSrcweir     *  <li> <code>'SecondController'</code> for
141cdf0e10cSrcweir     *      {@link ifc.frame._XController}(the current controller of the second
142cdf0e10cSrcweir     *      created document) </li>
143cdf0e10cSrcweir     *  <li> <code>'DrawPage'</code> for
144cdf0e10cSrcweir     *      {@link ifc.drawing.DrawingDocumentDrawView}(the draw page which will
145cdf0e10cSrcweir     *      be new current page) </li>
146cdf0e10cSrcweir     * </ul>
147cdf0e10cSrcweir     * @see com.sun.star.frame.XModel
148cdf0e10cSrcweir     * @see com.sun.star.drawing.DrawingDocumentDrawView
149cdf0e10cSrcweir     */
150cdf0e10cSrcweir     public synchronized lib.TestEnvironment createTestEnvironment
151cdf0e10cSrcweir             (TestParameters Param, PrintWriter log) {
152cdf0e10cSrcweir 
153cdf0e10cSrcweir         log.println( "creating a test environment" );
154cdf0e10cSrcweir 
155cdf0e10cSrcweir         // get a soffice factory object
156cdf0e10cSrcweir         SOfficeFactory SOF = SOfficeFactory.getFactory(
157cdf0e10cSrcweir                                     (XMultiServiceFactory)Param.getMSF());
158cdf0e10cSrcweir 
159cdf0e10cSrcweir         try {
160cdf0e10cSrcweir             log.println( "creating two draw documents" );
161cdf0e10cSrcweir             xDrawDoc = SOF.createDrawDoc(null);
162cdf0e10cSrcweir             shortWait();
163cdf0e10cSrcweir             xSecondDrawDoc = SOF.createDrawDoc(null);
164cdf0e10cSrcweir             shortWait();
165cdf0e10cSrcweir         } catch (com.sun.star.uno.Exception e) {
166cdf0e10cSrcweir             e.printStackTrace( log );
167cdf0e10cSrcweir             throw new StatusException("Couldn't create document", e);
168cdf0e10cSrcweir         }
169cdf0e10cSrcweir 
170cdf0e10cSrcweir         // get the drawpage of drawing here
171cdf0e10cSrcweir         log.println( "getting Drawpage" );
172cdf0e10cSrcweir         XDrawPagesSupplier oDPS = (XDrawPagesSupplier)
173cdf0e10cSrcweir             UnoRuntime.queryInterface(XDrawPagesSupplier.class, xDrawDoc);
174cdf0e10cSrcweir         XDrawPages the_pages = oDPS.getDrawPages();
175cdf0e10cSrcweir         XIndexAccess oDPi = (XIndexAccess)
176cdf0e10cSrcweir             UnoRuntime.queryInterface(XIndexAccess.class,the_pages);
177cdf0e10cSrcweir 
178cdf0e10cSrcweir         XDrawPage oDrawPage = null;
179cdf0e10cSrcweir         try {
180cdf0e10cSrcweir             oDrawPage = (XDrawPage) AnyConverter.toObject(
181cdf0e10cSrcweir                         new Type(XDrawPage.class),oDPi.getByIndex(0));
182cdf0e10cSrcweir         } catch (com.sun.star.lang.WrappedTargetException e) {
183cdf0e10cSrcweir             e.printStackTrace( log );
184cdf0e10cSrcweir             throw new StatusException("Couldn't get DrawPage", e);
185cdf0e10cSrcweir         } catch (com.sun.star.lang.IndexOutOfBoundsException e) {
186cdf0e10cSrcweir             e.printStackTrace( log );
187cdf0e10cSrcweir             throw new StatusException("Couldn't get DrawPage", e);
188cdf0e10cSrcweir         } catch (com.sun.star.lang.IllegalArgumentException e) {
189cdf0e10cSrcweir             e.printStackTrace( log );
190cdf0e10cSrcweir             throw new StatusException("Couldn't get DrawPage", e);
191cdf0e10cSrcweir         }
192cdf0e10cSrcweir 
193cdf0e10cSrcweir         //put something on the drawpage
194cdf0e10cSrcweir         log.println( "inserting some Shapes" );
195cdf0e10cSrcweir         XShapes oShapes = (XShapes)
196cdf0e10cSrcweir             UnoRuntime.queryInterface(XShapes.class, oDrawPage);
197cdf0e10cSrcweir         XShape shape1 = SOF.createShape(
198cdf0e10cSrcweir             xDrawDoc, 3000, 4500, 15000, 1000, "Ellipse");
199cdf0e10cSrcweir         XShape shape2 = SOF.createShape(
200cdf0e10cSrcweir             xDrawDoc, 5000, 3500, 7500, 5000, "Rectangle");
201cdf0e10cSrcweir         XShape shape3 = SOF.createShape(
202cdf0e10cSrcweir             xDrawDoc, 3000, 500, 5000, 1000, "Line");
203cdf0e10cSrcweir         oShapes.add(shape1);
204cdf0e10cSrcweir         oShapes.add(shape2);
205cdf0e10cSrcweir         oShapes.add(shape3);
206cdf0e10cSrcweir         shortWait();
207cdf0e10cSrcweir 
208cdf0e10cSrcweir         XModel aModel = (XModel)
209cdf0e10cSrcweir             UnoRuntime.queryInterface(XModel.class, xDrawDoc);
210cdf0e10cSrcweir 
211cdf0e10cSrcweir         XInterface oObj = aModel.getCurrentController();
212cdf0e10cSrcweir 
213cdf0e10cSrcweir         XModel aModel2 = (XModel)
214cdf0e10cSrcweir             UnoRuntime.queryInterface(XModel.class, xSecondDrawDoc);
215cdf0e10cSrcweir 
216cdf0e10cSrcweir         XWindow anotherWindow = (XWindow) UnoRuntime.queryInterface(
217cdf0e10cSrcweir                                 XWindow.class,aModel2.getCurrentController());
218cdf0e10cSrcweir 
219cdf0e10cSrcweir         log.println( "creating a new environment for impress view object" );
220cdf0e10cSrcweir         TestEnvironment tEnv = new TestEnvironment( oObj );
221cdf0e10cSrcweir 
222cdf0e10cSrcweir         if (anotherWindow != null) {
223cdf0e10cSrcweir             tEnv.addObjRelation("XWindow.AnotherWindow",anotherWindow);
224cdf0e10cSrcweir         }
225cdf0e10cSrcweir 
226cdf0e10cSrcweir 
227cdf0e10cSrcweir         tEnv.addObjRelation("Selections", new Object[] {
228cdf0e10cSrcweir             shape1, shape2, shape3});
229cdf0e10cSrcweir 
230cdf0e10cSrcweir 
231cdf0e10cSrcweir         tEnv.addObjRelation("Pages", the_pages);
232cdf0e10cSrcweir 
233cdf0e10cSrcweir         //Adding ObjRelations for XController
234cdf0e10cSrcweir         tEnv.addObjRelation("FirstModel", aModel);
235cdf0e10cSrcweir 
236cdf0e10cSrcweir         tEnv.addObjRelation("XUserInputInterception.XModel", aModel);
237cdf0e10cSrcweir 
238cdf0e10cSrcweir         XFrame the_frame = the_Desk.getCurrentFrame();
239cdf0e10cSrcweir         tEnv.addObjRelation("Frame", the_frame);
240cdf0e10cSrcweir 
241cdf0e10cSrcweir          aModel = (XModel)
242cdf0e10cSrcweir             UnoRuntime.queryInterface(XModel.class, xSecondDrawDoc);
243cdf0e10cSrcweir         //Adding ObjRelations for XController
244cdf0e10cSrcweir         tEnv.addObjRelation("SecondModel", aModel);
245cdf0e10cSrcweir 
246cdf0e10cSrcweir         XController secondController = aModel.getCurrentController();
247cdf0e10cSrcweir         tEnv.addObjRelation("SecondController", secondController);
248cdf0e10cSrcweir         tEnv.addObjRelation("XDispatchProvider.URL",
249cdf0e10cSrcweir                                     "slot:27009");
250cdf0e10cSrcweir 
251cdf0e10cSrcweir         //Adding relations for DrawingDocumentDrawView
252cdf0e10cSrcweir         XDrawPage new_page = the_pages.insertNewByIndex(1);
253cdf0e10cSrcweir         tEnv.addObjRelation("DrawPage", new_page);
254cdf0e10cSrcweir 
255cdf0e10cSrcweir         log.println("Implementation Name: "+utils.getImplName(oObj));
256cdf0e10cSrcweir 
257cdf0e10cSrcweir         XModifiable modify = (XModifiable)
258cdf0e10cSrcweir             UnoRuntime.queryInterface(XModifiable.class,xDrawDoc);
259cdf0e10cSrcweir 
260cdf0e10cSrcweir         tEnv.addObjRelation("Modifiable",modify);
261cdf0e10cSrcweir 
262cdf0e10cSrcweir         tEnv.addObjRelation("XComponent.DisposeThis", xDrawDoc);
263cdf0e10cSrcweir 
264cdf0e10cSrcweir         tEnv.addObjRelation("Comparer", new Comparator() {
265cdf0e10cSrcweir             public int compare(Object o1, Object o2) {
266cdf0e10cSrcweir                 XIndexAccess indAc1 = (XIndexAccess)
267cdf0e10cSrcweir                     UnoRuntime.queryInterface(XIndexAccess.class, o1);
268cdf0e10cSrcweir                 XIndexAccess indAc2 = (XIndexAccess)
269cdf0e10cSrcweir                     UnoRuntime.queryInterface(XIndexAccess.class, o2);
270cdf0e10cSrcweir                 if (indAc1 == null || indAc2 == null) return -1;
271cdf0e10cSrcweir                 if (indAc1.getCount() == indAc2.getCount()) {
272cdf0e10cSrcweir                     return 0;
273cdf0e10cSrcweir                 }
274cdf0e10cSrcweir                 return 1;
275cdf0e10cSrcweir             }
276cdf0e10cSrcweir             public boolean equals(Object obj) {
277cdf0e10cSrcweir                 return compare(this, obj) == 0;
278cdf0e10cSrcweir             } });
279cdf0e10cSrcweir 
280cdf0e10cSrcweir 
281cdf0e10cSrcweir         return tEnv;
282cdf0e10cSrcweir 
283cdf0e10cSrcweir     } // finish method getTestEnvironment
284cdf0e10cSrcweir 
285cdf0e10cSrcweir     private void shortWait() {
286cdf0e10cSrcweir         try {
287cdf0e10cSrcweir             Thread.sleep(1000) ;
288cdf0e10cSrcweir         } catch (InterruptedException e) {
289cdf0e10cSrcweir             System.out.println("While waiting :" + e) ;
290cdf0e10cSrcweir         }
291cdf0e10cSrcweir     }
292cdf0e10cSrcweir 
293cdf0e10cSrcweir 
294cdf0e10cSrcweir } // finish class SdUnoDrawView
295cdf0e10cSrcweir 
296