1*b1cdbd2cSJim Jagielski /************************************************************** 2*b1cdbd2cSJim Jagielski * 3*b1cdbd2cSJim Jagielski * Licensed to the Apache Software Foundation (ASF) under one 4*b1cdbd2cSJim Jagielski * or more contributor license agreements. See the NOTICE file 5*b1cdbd2cSJim Jagielski * distributed with this work for additional information 6*b1cdbd2cSJim Jagielski * regarding copyright ownership. The ASF licenses this file 7*b1cdbd2cSJim Jagielski * to you under the Apache License, Version 2.0 (the 8*b1cdbd2cSJim Jagielski * "License"); you may not use this file except in compliance 9*b1cdbd2cSJim Jagielski * with the License. You may obtain a copy of the License at 10*b1cdbd2cSJim Jagielski * 11*b1cdbd2cSJim Jagielski * http://www.apache.org/licenses/LICENSE-2.0 12*b1cdbd2cSJim Jagielski * 13*b1cdbd2cSJim Jagielski * Unless required by applicable law or agreed to in writing, 14*b1cdbd2cSJim Jagielski * software distributed under the License is distributed on an 15*b1cdbd2cSJim Jagielski * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16*b1cdbd2cSJim Jagielski * KIND, either express or implied. See the License for the 17*b1cdbd2cSJim Jagielski * specific language governing permissions and limitations 18*b1cdbd2cSJim Jagielski * under the License. 19*b1cdbd2cSJim Jagielski * 20*b1cdbd2cSJim Jagielski *************************************************************/ 21*b1cdbd2cSJim Jagielski 22*b1cdbd2cSJim Jagielski 23*b1cdbd2cSJim Jagielski 24*b1cdbd2cSJim Jagielski package mod._sd; 25*b1cdbd2cSJim Jagielski 26*b1cdbd2cSJim Jagielski import java.io.PrintWriter; 27*b1cdbd2cSJim Jagielski 28*b1cdbd2cSJim Jagielski import lib.StatusException; 29*b1cdbd2cSJim Jagielski import lib.TestCase; 30*b1cdbd2cSJim Jagielski import lib.TestEnvironment; 31*b1cdbd2cSJim Jagielski import lib.TestParameters; 32*b1cdbd2cSJim Jagielski import util.SOfficeFactory; 33*b1cdbd2cSJim Jagielski 34*b1cdbd2cSJim Jagielski import com.sun.star.container.XNameContainer; 35*b1cdbd2cSJim Jagielski import com.sun.star.lang.XComponent; 36*b1cdbd2cSJim Jagielski import com.sun.star.lang.XMultiServiceFactory; 37*b1cdbd2cSJim Jagielski import com.sun.star.lang.XSingleServiceFactory; 38*b1cdbd2cSJim Jagielski import com.sun.star.presentation.XCustomPresentationSupplier; 39*b1cdbd2cSJim Jagielski import com.sun.star.presentation.XPresentationSupplier; 40*b1cdbd2cSJim Jagielski import com.sun.star.uno.UnoRuntime; 41*b1cdbd2cSJim Jagielski import com.sun.star.uno.XInterface; 42*b1cdbd2cSJim Jagielski 43*b1cdbd2cSJim Jagielski /** 44*b1cdbd2cSJim Jagielski * Test for object which is represented by service 45*b1cdbd2cSJim Jagielski * <code>com.sun.star.presentation.Presentation</code>. <p> 46*b1cdbd2cSJim Jagielski * Object implements the following interfaces : 47*b1cdbd2cSJim Jagielski * <ul> 48*b1cdbd2cSJim Jagielski * <li> <code>com::sun::star::presentation::Presentation</code></li> 49*b1cdbd2cSJim Jagielski * <li> <code>com::sun::star::presentation::XPresentation</code></li> 50*b1cdbd2cSJim Jagielski * <li> <code>com::sun::star::beans::XPropertySet</code></li> 51*b1cdbd2cSJim Jagielski * </ul> 52*b1cdbd2cSJim Jagielski * @see com.sun.star.presentation.Presentation 53*b1cdbd2cSJim Jagielski * @see com.sun.star.presentation.XPresentation 54*b1cdbd2cSJim Jagielski * @see com.sun.star.beans.XPropertySet 55*b1cdbd2cSJim Jagielski * @see ifc.presentation._Presentation 56*b1cdbd2cSJim Jagielski * @see ifc.presentation._XPresentation 57*b1cdbd2cSJim Jagielski * @see ifc.beans._XPropertySet 58*b1cdbd2cSJim Jagielski */ 59*b1cdbd2cSJim Jagielski public class SdXPresentation extends TestCase { 60*b1cdbd2cSJim Jagielski XComponent xImpressDoc; 61*b1cdbd2cSJim Jagielski 62*b1cdbd2cSJim Jagielski /** 63*b1cdbd2cSJim Jagielski * Creates Impress document. 64*b1cdbd2cSJim Jagielski */ initialize(TestParameters Param, PrintWriter log)65*b1cdbd2cSJim Jagielski protected void initialize(TestParameters Param, PrintWriter log) { 66*b1cdbd2cSJim Jagielski // get a soffice factory object 67*b1cdbd2cSJim Jagielski SOfficeFactory SOF = SOfficeFactory.getFactory( 68*b1cdbd2cSJim Jagielski (XMultiServiceFactory)Param.getMSF()); 69*b1cdbd2cSJim Jagielski 70*b1cdbd2cSJim Jagielski try { 71*b1cdbd2cSJim Jagielski log.println( "creating a draw document" ); 72*b1cdbd2cSJim Jagielski xImpressDoc = SOF.createImpressDoc(null); 73*b1cdbd2cSJim Jagielski } catch (com.sun.star.uno.Exception e) { 74*b1cdbd2cSJim Jagielski e.printStackTrace( log ); 75*b1cdbd2cSJim Jagielski throw new StatusException("Couldn't create document", e); 76*b1cdbd2cSJim Jagielski } 77*b1cdbd2cSJim Jagielski } 78*b1cdbd2cSJim Jagielski 79*b1cdbd2cSJim Jagielski /** 80*b1cdbd2cSJim Jagielski * Disposes Impress document. 81*b1cdbd2cSJim Jagielski */ cleanup( TestParameters Param, PrintWriter log)82*b1cdbd2cSJim Jagielski protected void cleanup( TestParameters Param, PrintWriter log) { 83*b1cdbd2cSJim Jagielski log.println("disposing xImpressDoc"); 84*b1cdbd2cSJim Jagielski util.DesktopTools.closeDoc(xImpressDoc); 85*b1cdbd2cSJim Jagielski } 86*b1cdbd2cSJim Jagielski 87*b1cdbd2cSJim Jagielski /** 88*b1cdbd2cSJim Jagielski * Creating a Testenvironment for the interfaces to be tested. 89*b1cdbd2cSJim Jagielski * Retrieves the presentation from the document using the interface 90*b1cdbd2cSJim Jagielski * <code>XPresentationSupplier</code>. The retrieved presentation is the 91*b1cdbd2cSJim Jagielski * instance of the service <code>com.sun.star.presentation.Presentation</code>. 92*b1cdbd2cSJim Jagielski * Retrieves the collection of the customized presentations from the document 93*b1cdbd2cSJim Jagielski * using the interface <code>XCustomPresentationSupplier</code>. 94*b1cdbd2cSJim Jagielski * Creates and inserts two new instances of presentation to the retrieved 95*b1cdbd2cSJim Jagielski * collection. 96*b1cdbd2cSJim Jagielski * Object relations created : 97*b1cdbd2cSJim Jagielski * <ul> 98*b1cdbd2cSJim Jagielski * <li> <code>'Presentation'</code> for 99*b1cdbd2cSJim Jagielski * {@link ifc.presentation._Presentation}(the retrieved presentation)</li> 100*b1cdbd2cSJim Jagielski * </ul> 101*b1cdbd2cSJim Jagielski * @see com.sun.star.presentation.XCustomPresentationSupplier 102*b1cdbd2cSJim Jagielski * @see com.sun.star.presentation.Presentation 103*b1cdbd2cSJim Jagielski * @see com.sun.star.presentation.XCustomPresentationSupplier 104*b1cdbd2cSJim Jagielski */ createTestEnvironment( TestParameters Param, PrintWriter log)105*b1cdbd2cSJim Jagielski public TestEnvironment createTestEnvironment( 106*b1cdbd2cSJim Jagielski TestParameters Param, PrintWriter log) throws StatusException { 107*b1cdbd2cSJim Jagielski 108*b1cdbd2cSJim Jagielski // creation of testobject here 109*b1cdbd2cSJim Jagielski // first we write what we are intend to do to log file 110*b1cdbd2cSJim Jagielski log.println( "creating a test environment" ); 111*b1cdbd2cSJim Jagielski 112*b1cdbd2cSJim Jagielski log.println( "get presentation" ); 113*b1cdbd2cSJim Jagielski XPresentationSupplier oPS = (XPresentationSupplier) 114*b1cdbd2cSJim Jagielski UnoRuntime.queryInterface(XPresentationSupplier.class, xImpressDoc); 115*b1cdbd2cSJim Jagielski XInterface oObj = oPS.getPresentation(); 116*b1cdbd2cSJim Jagielski 117*b1cdbd2cSJim Jagielski log.println( "get custom presentation" ); 118*b1cdbd2cSJim Jagielski XCustomPresentationSupplier oCPS = (XCustomPresentationSupplier) 119*b1cdbd2cSJim Jagielski UnoRuntime.queryInterface( 120*b1cdbd2cSJim Jagielski XCustomPresentationSupplier.class, xImpressDoc); 121*b1cdbd2cSJim Jagielski XNameContainer xCP = oCPS.getCustomPresentations(); 122*b1cdbd2cSJim Jagielski 123*b1cdbd2cSJim Jagielski XInterface oInstance = null; 124*b1cdbd2cSJim Jagielski XInterface oInstance2 = null; 125*b1cdbd2cSJim Jagielski 126*b1cdbd2cSJim Jagielski XSingleServiceFactory oSingleMSF = (XSingleServiceFactory) 127*b1cdbd2cSJim Jagielski UnoRuntime.queryInterface(XSingleServiceFactory.class, xCP); 128*b1cdbd2cSJim Jagielski 129*b1cdbd2cSJim Jagielski try{ 130*b1cdbd2cSJim Jagielski oInstance = (XInterface) oSingleMSF.createInstance(); 131*b1cdbd2cSJim Jagielski oInstance2 = (XInterface) oSingleMSF.createInstance(); 132*b1cdbd2cSJim Jagielski } catch (com.sun.star.uno.Exception e) { 133*b1cdbd2cSJim Jagielski e.printStackTrace(log); 134*b1cdbd2cSJim Jagielski throw new StatusException("Couldn't create instance", e); 135*b1cdbd2cSJim Jagielski } 136*b1cdbd2cSJim Jagielski 137*b1cdbd2cSJim Jagielski try { 138*b1cdbd2cSJim Jagielski xCP.insertByName("FirstPresentation",oInstance); 139*b1cdbd2cSJim Jagielski xCP.insertByName("SecondPresentation", oInstance2); 140*b1cdbd2cSJim Jagielski } catch (com.sun.star.lang.WrappedTargetException e) { 141*b1cdbd2cSJim Jagielski e.printStackTrace(log); 142*b1cdbd2cSJim Jagielski throw new StatusException("Could't insert Instance", e); 143*b1cdbd2cSJim Jagielski } catch (com.sun.star.container.ElementExistException e) { 144*b1cdbd2cSJim Jagielski e.printStackTrace(log); 145*b1cdbd2cSJim Jagielski throw new StatusException("Could't insert Instance", e); 146*b1cdbd2cSJim Jagielski } catch (com.sun.star.lang.IllegalArgumentException e) { 147*b1cdbd2cSJim Jagielski e.printStackTrace(log); 148*b1cdbd2cSJim Jagielski throw new StatusException("Could't insert Instance", e); 149*b1cdbd2cSJim Jagielski } 150*b1cdbd2cSJim Jagielski 151*b1cdbd2cSJim Jagielski log.println( "creating a new environment for XPresentation object" ); 152*b1cdbd2cSJim Jagielski TestEnvironment tEnv = new TestEnvironment( oObj ); 153*b1cdbd2cSJim Jagielski 154*b1cdbd2cSJim Jagielski tEnv.addObjRelation("Presentation",oObj); 155*b1cdbd2cSJim Jagielski 156*b1cdbd2cSJim Jagielski return tEnv; 157*b1cdbd2cSJim Jagielski } // finish method getTestEnvironment 158*b1cdbd2cSJim Jagielski 159*b1cdbd2cSJim Jagielski } // finish class SdPresentation 160*b1cdbd2cSJim Jagielski 161