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