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.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 */ initialize(TestParameters Param, PrintWriter log)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. 105*e6b649b5SPedro Giffuni * @param Param test parameters 106cdf0e10cSrcweir * @param log writer to log information while testing 107cdf0e10cSrcweir */ cleanup( TestParameters Param, PrintWriter log)108cdf0e10cSrcweir protected void cleanup( TestParameters Param, PrintWriter log) { 109cdf0e10cSrcweir log.println("disposing draw documents"); 110cdf0e10cSrcweir util.DesktopTools.closeDoc(xDrawDoc); 111cdf0e10cSrcweir util.DesktopTools.closeDoc(xSecondDrawDoc); 112cdf0e10cSrcweir } 113cdf0e10cSrcweir 114cdf0e10cSrcweir /** 115cdf0e10cSrcweir * Creating a Testenvironment for the interfaces to be tested. 116cdf0e10cSrcweir * Creates two impress documents. After creating 117cdf0e10cSrcweir * of the documents makes short 118cdf0e10cSrcweir * wait to allow frames to be loaded. Retrieves 119cdf0e10cSrcweir * the collection of the draw pages 120cdf0e10cSrcweir * from the first document and takes one of them. Inserts some shapes to the 121cdf0e10cSrcweir * retrieved draw page. Obtains a current controller from the first document 122cdf0e10cSrcweir * using the interface <code>XModel</code>. The obtained controller is the 123cdf0e10cSrcweir * instance of the service 124cdf0e10cSrcweir * <code>com.sun.star.drawing.DrawingDocumentDrawView</code>. 125cdf0e10cSrcweir * Object relations created : 126cdf0e10cSrcweir * <ul> 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 * <li> <code>'DrawPage'</code> for 143*e6b649b5SPedro Giffuni * {@link ifc.drawing._DrawingDocumentDrawView}(the draw page which will 144cdf0e10cSrcweir * be new current page) </li> 145cdf0e10cSrcweir * </ul> 146cdf0e10cSrcweir * @see com.sun.star.frame.XModel 147cdf0e10cSrcweir * @see com.sun.star.drawing.DrawingDocumentDrawView 148cdf0e10cSrcweir */ createTestEnvironment(TestParameters Param, PrintWriter log)149cdf0e10cSrcweir public synchronized lib.TestEnvironment createTestEnvironment 150cdf0e10cSrcweir (TestParameters Param, PrintWriter log) { 151cdf0e10cSrcweir 152cdf0e10cSrcweir log.println( "creating a test environment" ); 153cdf0e10cSrcweir 154cdf0e10cSrcweir // get a soffice factory object 155cdf0e10cSrcweir SOfficeFactory SOF = SOfficeFactory.getFactory( 156cdf0e10cSrcweir (XMultiServiceFactory)Param.getMSF()); 157cdf0e10cSrcweir 158cdf0e10cSrcweir try { 159cdf0e10cSrcweir log.println( "creating two draw documents" ); 160cdf0e10cSrcweir xDrawDoc = SOF.createDrawDoc(null); 161cdf0e10cSrcweir shortWait(); 162cdf0e10cSrcweir xSecondDrawDoc = SOF.createDrawDoc(null); 163cdf0e10cSrcweir shortWait(); 164cdf0e10cSrcweir } catch (com.sun.star.uno.Exception e) { 165cdf0e10cSrcweir e.printStackTrace( log ); 166cdf0e10cSrcweir throw new StatusException("Couldn't create document", e); 167cdf0e10cSrcweir } 168cdf0e10cSrcweir 169cdf0e10cSrcweir // get the drawpage of drawing here 170cdf0e10cSrcweir log.println( "getting Drawpage" ); 171cdf0e10cSrcweir XDrawPagesSupplier oDPS = (XDrawPagesSupplier) 172cdf0e10cSrcweir UnoRuntime.queryInterface(XDrawPagesSupplier.class, xDrawDoc); 173cdf0e10cSrcweir XDrawPages the_pages = oDPS.getDrawPages(); 174cdf0e10cSrcweir XIndexAccess oDPi = (XIndexAccess) 175cdf0e10cSrcweir UnoRuntime.queryInterface(XIndexAccess.class,the_pages); 176cdf0e10cSrcweir 177cdf0e10cSrcweir XDrawPage oDrawPage = null; 178cdf0e10cSrcweir try { 179cdf0e10cSrcweir oDrawPage = (XDrawPage) AnyConverter.toObject( 180cdf0e10cSrcweir new Type(XDrawPage.class),oDPi.getByIndex(0)); 181cdf0e10cSrcweir } catch (com.sun.star.lang.WrappedTargetException e) { 182cdf0e10cSrcweir e.printStackTrace( log ); 183cdf0e10cSrcweir throw new StatusException("Couldn't get DrawPage", e); 184cdf0e10cSrcweir } catch (com.sun.star.lang.IndexOutOfBoundsException e) { 185cdf0e10cSrcweir e.printStackTrace( log ); 186cdf0e10cSrcweir throw new StatusException("Couldn't get DrawPage", e); 187cdf0e10cSrcweir } catch (com.sun.star.lang.IllegalArgumentException e) { 188cdf0e10cSrcweir e.printStackTrace( log ); 189cdf0e10cSrcweir throw new StatusException("Couldn't get DrawPage", e); 190cdf0e10cSrcweir } 191cdf0e10cSrcweir 192cdf0e10cSrcweir //put something on the drawpage 193cdf0e10cSrcweir log.println( "inserting some Shapes" ); 194cdf0e10cSrcweir XShapes oShapes = (XShapes) 195cdf0e10cSrcweir UnoRuntime.queryInterface(XShapes.class, oDrawPage); 196cdf0e10cSrcweir XShape shape1 = SOF.createShape( 197cdf0e10cSrcweir xDrawDoc, 3000, 4500, 15000, 1000, "Ellipse"); 198cdf0e10cSrcweir XShape shape2 = SOF.createShape( 199cdf0e10cSrcweir xDrawDoc, 5000, 3500, 7500, 5000, "Rectangle"); 200cdf0e10cSrcweir XShape shape3 = SOF.createShape( 201cdf0e10cSrcweir xDrawDoc, 3000, 500, 5000, 1000, "Line"); 202cdf0e10cSrcweir oShapes.add(shape1); 203cdf0e10cSrcweir oShapes.add(shape2); 204cdf0e10cSrcweir oShapes.add(shape3); 205cdf0e10cSrcweir shortWait(); 206cdf0e10cSrcweir 207cdf0e10cSrcweir XModel aModel = (XModel) 208cdf0e10cSrcweir UnoRuntime.queryInterface(XModel.class, xDrawDoc); 209cdf0e10cSrcweir 210cdf0e10cSrcweir XInterface oObj = aModel.getCurrentController(); 211cdf0e10cSrcweir 212cdf0e10cSrcweir XModel aModel2 = (XModel) 213cdf0e10cSrcweir UnoRuntime.queryInterface(XModel.class, xSecondDrawDoc); 214cdf0e10cSrcweir 215cdf0e10cSrcweir XWindow anotherWindow = (XWindow) UnoRuntime.queryInterface( 216cdf0e10cSrcweir XWindow.class,aModel2.getCurrentController()); 217cdf0e10cSrcweir 218cdf0e10cSrcweir log.println( "creating a new environment for impress view object" ); 219cdf0e10cSrcweir TestEnvironment tEnv = new TestEnvironment( oObj ); 220cdf0e10cSrcweir 221cdf0e10cSrcweir if (anotherWindow != null) { 222cdf0e10cSrcweir tEnv.addObjRelation("XWindow.AnotherWindow",anotherWindow); 223cdf0e10cSrcweir } 224cdf0e10cSrcweir 225cdf0e10cSrcweir 226cdf0e10cSrcweir tEnv.addObjRelation("Selections", new Object[] { 227cdf0e10cSrcweir shape1, shape2, shape3}); 228cdf0e10cSrcweir 229cdf0e10cSrcweir 230cdf0e10cSrcweir tEnv.addObjRelation("Pages", the_pages); 231cdf0e10cSrcweir 232cdf0e10cSrcweir //Adding ObjRelations for XController 233cdf0e10cSrcweir tEnv.addObjRelation("FirstModel", aModel); 234cdf0e10cSrcweir 235cdf0e10cSrcweir tEnv.addObjRelation("XUserInputInterception.XModel", aModel); 236cdf0e10cSrcweir 237cdf0e10cSrcweir XFrame the_frame = the_Desk.getCurrentFrame(); 238cdf0e10cSrcweir tEnv.addObjRelation("Frame", the_frame); 239cdf0e10cSrcweir 240cdf0e10cSrcweir aModel = (XModel) 241cdf0e10cSrcweir UnoRuntime.queryInterface(XModel.class, xSecondDrawDoc); 242cdf0e10cSrcweir //Adding ObjRelations for XController 243cdf0e10cSrcweir tEnv.addObjRelation("SecondModel", aModel); 244cdf0e10cSrcweir 245cdf0e10cSrcweir XController secondController = aModel.getCurrentController(); 246cdf0e10cSrcweir tEnv.addObjRelation("SecondController", secondController); 247cdf0e10cSrcweir tEnv.addObjRelation("XDispatchProvider.URL", 248cdf0e10cSrcweir "slot:27009"); 249cdf0e10cSrcweir 250cdf0e10cSrcweir //Adding relations for DrawingDocumentDrawView 251cdf0e10cSrcweir XDrawPage new_page = the_pages.insertNewByIndex(1); 252cdf0e10cSrcweir tEnv.addObjRelation("DrawPage", new_page); 253cdf0e10cSrcweir 254cdf0e10cSrcweir log.println("Implementation Name: "+utils.getImplName(oObj)); 255cdf0e10cSrcweir 256cdf0e10cSrcweir XModifiable modify = (XModifiable) 257cdf0e10cSrcweir UnoRuntime.queryInterface(XModifiable.class,xDrawDoc); 258cdf0e10cSrcweir 259cdf0e10cSrcweir tEnv.addObjRelation("Modifiable",modify); 260cdf0e10cSrcweir 261cdf0e10cSrcweir tEnv.addObjRelation("XComponent.DisposeThis", xDrawDoc); 262cdf0e10cSrcweir 263cdf0e10cSrcweir tEnv.addObjRelation("Comparer", new Comparator() { 264cdf0e10cSrcweir public int compare(Object o1, Object o2) { 265cdf0e10cSrcweir XIndexAccess indAc1 = (XIndexAccess) 266cdf0e10cSrcweir UnoRuntime.queryInterface(XIndexAccess.class, o1); 267cdf0e10cSrcweir XIndexAccess indAc2 = (XIndexAccess) 268cdf0e10cSrcweir UnoRuntime.queryInterface(XIndexAccess.class, o2); 269cdf0e10cSrcweir if (indAc1 == null || indAc2 == null) return -1; 270cdf0e10cSrcweir if (indAc1.getCount() == indAc2.getCount()) { 271cdf0e10cSrcweir return 0; 272cdf0e10cSrcweir } 273cdf0e10cSrcweir return 1; 274cdf0e10cSrcweir } 275cdf0e10cSrcweir public boolean equals(Object obj) { 276cdf0e10cSrcweir return compare(this, obj) == 0; 277cdf0e10cSrcweir } }); 278cdf0e10cSrcweir 279cdf0e10cSrcweir 280cdf0e10cSrcweir return tEnv; 281cdf0e10cSrcweir 282cdf0e10cSrcweir } // finish method getTestEnvironment 283cdf0e10cSrcweir shortWait()284cdf0e10cSrcweir private void shortWait() { 285cdf0e10cSrcweir try { 286cdf0e10cSrcweir Thread.sleep(1000) ; 287cdf0e10cSrcweir } catch (InterruptedException e) { 288cdf0e10cSrcweir System.out.println("While waiting :" + e) ; 289cdf0e10cSrcweir } 290cdf0e10cSrcweir } 291cdf0e10cSrcweir 292cdf0e10cSrcweir 293cdf0e10cSrcweir } // finish class SdUnoDrawView 294cdf0e10cSrcweir 295