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 10*ef39d40dSAndrew Rist * 11*ef39d40dSAndrew Rist * http://www.apache.org/licenses/LICENSE-2.0 12*ef39d40dSAndrew Rist * 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. 19*ef39d40dSAndrew Rist * 20*ef39d40dSAndrew Rist *************************************************************/ 21*ef39d40dSAndrew Rist 22*ef39d40dSAndrew Rist 23cdf0e10cSrcweir package mod._sw; 24cdf0e10cSrcweir 25cdf0e10cSrcweir import com.sun.star.beans.PropertyAttribute; 26cdf0e10cSrcweir import com.sun.star.beans.XPropertySet; 27cdf0e10cSrcweir import com.sun.star.container.XIndexAccess; 28cdf0e10cSrcweir import com.sun.star.container.XNameAccess; 29cdf0e10cSrcweir import com.sun.star.container.XNameContainer; 30cdf0e10cSrcweir import com.sun.star.lang.XMultiServiceFactory; 31cdf0e10cSrcweir import com.sun.star.style.XStyle; 32cdf0e10cSrcweir import com.sun.star.style.XStyleFamiliesSupplier; 33cdf0e10cSrcweir import com.sun.star.text.XText; 34cdf0e10cSrcweir import com.sun.star.text.XTextCursor; 35cdf0e10cSrcweir import com.sun.star.text.XTextDocument; 36cdf0e10cSrcweir import com.sun.star.uno.UnoRuntime; 37cdf0e10cSrcweir import com.sun.star.uno.XInterface; 38cdf0e10cSrcweir import java.io.PrintWriter; 39cdf0e10cSrcweir import lib.Status; 40cdf0e10cSrcweir import lib.StatusException; 41cdf0e10cSrcweir import lib.TestCase; 42cdf0e10cSrcweir import lib.TestEnvironment; 43cdf0e10cSrcweir import lib.TestParameters; 44cdf0e10cSrcweir import util.DesktopTools; 45cdf0e10cSrcweir import util.SOfficeFactory; 46cdf0e10cSrcweir import util.utils; 47cdf0e10cSrcweir 48cdf0e10cSrcweir /** 49cdf0e10cSrcweir * Test for object which is represented by service 50cdf0e10cSrcweir * <code>com.sun.star.style.ConditionalParagraphStyle</code>. <p> 51cdf0e10cSrcweir * @see com.sun.star.style.ConditionalParagraphStyle 52cdf0e10cSrcweir */ 53cdf0e10cSrcweir public class ConditionalParagraphStyle extends TestCase { 54cdf0e10cSrcweir 55cdf0e10cSrcweir XTextDocument xTextDoc; 56cdf0e10cSrcweir SOfficeFactory SOF = null; 57cdf0e10cSrcweir 58cdf0e10cSrcweir /** 59cdf0e10cSrcweir * Creates text document. 60cdf0e10cSrcweir */ 61cdf0e10cSrcweir protected void initialize( TestParameters tParam, PrintWriter log ) { 62cdf0e10cSrcweir SOF = SOfficeFactory.getFactory( (XMultiServiceFactory)tParam.getMSF() ); 63cdf0e10cSrcweir try { 64cdf0e10cSrcweir log.println( "creating a textdocument" ); 65cdf0e10cSrcweir xTextDoc = SOF.createTextDoc( null ); 66cdf0e10cSrcweir } catch ( com.sun.star.uno.Exception e ) { 67cdf0e10cSrcweir e.printStackTrace( log ); 68cdf0e10cSrcweir throw new StatusException( "Couldn't create document", e ); 69cdf0e10cSrcweir } 70cdf0e10cSrcweir } 71cdf0e10cSrcweir 72cdf0e10cSrcweir /** 73cdf0e10cSrcweir * Disposes text document. 74cdf0e10cSrcweir */ 75cdf0e10cSrcweir protected void cleanup( TestParameters tParam, PrintWriter log ) { 76cdf0e10cSrcweir log.println( " disposing xTextDoc " ); 77cdf0e10cSrcweir DesktopTools.closeDoc(xTextDoc); 78cdf0e10cSrcweir } 79cdf0e10cSrcweir 80cdf0e10cSrcweir /** 81cdf0e10cSrcweir * Create a new instance of the conditional 82cdf0e10cSrcweir * paragraph style, and insert it into the document. 83cdf0e10cSrcweir * @see com.sun.star.style.ConditionalParagraphStyle 84cdf0e10cSrcweir * @param tParam The test paramters 85cdf0e10cSrcweir * @param log The log writer. 86cdf0e10cSrcweir */ 87cdf0e10cSrcweir protected TestEnvironment createTestEnvironment(TestParameters tParam, PrintWriter log) { 88cdf0e10cSrcweir TestEnvironment tEnv = null; 89cdf0e10cSrcweir XNameAccess oSFNA = null; 90cdf0e10cSrcweir XStyle oStyle = null; 91cdf0e10cSrcweir XStyle oMyStyle = null; 92cdf0e10cSrcweir 93cdf0e10cSrcweir log.println("creating a test environment"); 94cdf0e10cSrcweir 95cdf0e10cSrcweir try { 96cdf0e10cSrcweir log.println("getting style"); 97cdf0e10cSrcweir XStyleFamiliesSupplier oSFS = (XStyleFamiliesSupplier) 98cdf0e10cSrcweir UnoRuntime.queryInterface(XStyleFamiliesSupplier.class, 99cdf0e10cSrcweir xTextDoc); 100cdf0e10cSrcweir XNameAccess oSF = oSFS.getStyleFamilies(); 101cdf0e10cSrcweir oSFNA = (XNameAccess) UnoRuntime.queryInterface( 102cdf0e10cSrcweir XNameAccess.class,oSF.getByName("ParagraphStyles")); 103cdf0e10cSrcweir XIndexAccess oSFIA = (XIndexAccess) 104cdf0e10cSrcweir UnoRuntime.queryInterface(XIndexAccess.class, oSFNA); 105cdf0e10cSrcweir oStyle = (XStyle) UnoRuntime.queryInterface( 106cdf0e10cSrcweir XStyle.class,oSFIA.getByIndex(1)); 107cdf0e10cSrcweir } catch ( com.sun.star.lang.WrappedTargetException e ) { 108cdf0e10cSrcweir log.println("Error: exception occured."); 109cdf0e10cSrcweir e.printStackTrace(log); 110cdf0e10cSrcweir throw new StatusException( "Couldn't create environment ", e ); 111cdf0e10cSrcweir } catch ( com.sun.star.lang.IndexOutOfBoundsException e ) { 112cdf0e10cSrcweir log.println("Error: exception occured."); 113cdf0e10cSrcweir e.printStackTrace(log); 114cdf0e10cSrcweir throw new StatusException( "Couldn't create environment ", e ); 115cdf0e10cSrcweir } catch ( com.sun.star.container.NoSuchElementException e ) { 116cdf0e10cSrcweir log.println("Error: exception occured."); 117cdf0e10cSrcweir e.printStackTrace(log); 118cdf0e10cSrcweir throw new StatusException( "Couldn't create environment ", e ); 119cdf0e10cSrcweir } 120cdf0e10cSrcweir 121cdf0e10cSrcweir try { 122cdf0e10cSrcweir log.print("Creating a user-defined style... "); 123cdf0e10cSrcweir XMultiServiceFactory oMSF = (XMultiServiceFactory) 124cdf0e10cSrcweir UnoRuntime.queryInterface(XMultiServiceFactory.class, xTextDoc); 125cdf0e10cSrcweir XInterface oInt = (XInterface) 126cdf0e10cSrcweir oMSF.createInstance("com.sun.star.style.ConditionalParagraphStyle"); 127cdf0e10cSrcweir oMyStyle = (XStyle) UnoRuntime.queryInterface(XStyle.class, oInt); 128cdf0e10cSrcweir } catch ( com.sun.star.uno.Exception e ) { 129cdf0e10cSrcweir log.println("Error: exception occured."); 130cdf0e10cSrcweir e.printStackTrace(log); 131cdf0e10cSrcweir throw new StatusException( "Couldn't create environment ", e ); 132cdf0e10cSrcweir } 133cdf0e10cSrcweir 134cdf0e10cSrcweir 135cdf0e10cSrcweir if (oMyStyle == null) { 136cdf0e10cSrcweir log.println("FAILED"); 137cdf0e10cSrcweir throw new StatusException(Status.failed("Couldn't create an own style ")); 138cdf0e10cSrcweir } 139cdf0e10cSrcweir else { 140cdf0e10cSrcweir log.println("OK"); 141cdf0e10cSrcweir } 142cdf0e10cSrcweir 143cdf0e10cSrcweir XNameContainer oSFNC = (XNameContainer) 144cdf0e10cSrcweir UnoRuntime.queryInterface(XNameContainer.class, oSFNA); 145cdf0e10cSrcweir 146cdf0e10cSrcweir try { 147cdf0e10cSrcweir if ( oSFNC.hasByName("My Style") ) 148cdf0e10cSrcweir oSFNC.removeByName("My Style"); 149cdf0e10cSrcweir oSFNC.insertByName("My Style", oMyStyle); 150cdf0e10cSrcweir } catch ( com.sun.star.lang.WrappedTargetException e ) { 151cdf0e10cSrcweir e.printStackTrace(log); 152cdf0e10cSrcweir throw new StatusException( "Couldn't create environment ", e ); 153cdf0e10cSrcweir } catch ( com.sun.star.lang.IllegalArgumentException e ) { 154cdf0e10cSrcweir e.printStackTrace(log); 155cdf0e10cSrcweir throw new StatusException( "Couldn't create environment ", e ); 156cdf0e10cSrcweir } catch ( com.sun.star.container.NoSuchElementException e ) { 157cdf0e10cSrcweir e.printStackTrace(log); 158cdf0e10cSrcweir throw new StatusException( "Couldn't create environment ", e ); 159cdf0e10cSrcweir } catch ( com.sun.star.container.ElementExistException e ) { 160cdf0e10cSrcweir e.printStackTrace(log); 161cdf0e10cSrcweir throw new StatusException( "Couldn't create environment ", e ); 162cdf0e10cSrcweir } 163cdf0e10cSrcweir 164cdf0e10cSrcweir XText oText = xTextDoc.getText(); 165cdf0e10cSrcweir XTextCursor oCursor = oText.createTextCursor(); 166cdf0e10cSrcweir XPropertySet xProp = (XPropertySet) 167cdf0e10cSrcweir UnoRuntime.queryInterface(XPropertySet.class, oCursor); 168cdf0e10cSrcweir try { 169cdf0e10cSrcweir xProp.setPropertyValue("ParaStyleName", oMyStyle.getName()); 170cdf0e10cSrcweir } catch ( com.sun.star.lang.WrappedTargetException e ) { 171cdf0e10cSrcweir e.printStackTrace( log ); 172cdf0e10cSrcweir throw new StatusException( "Couldn't create environment ", e ); 173cdf0e10cSrcweir } catch ( com.sun.star.lang.IllegalArgumentException e ) { 174cdf0e10cSrcweir e.printStackTrace( log ); 175cdf0e10cSrcweir throw new StatusException( "Couldn't create environment ", e ); 176cdf0e10cSrcweir } catch ( com.sun.star.beans.PropertyVetoException e ) { 177cdf0e10cSrcweir e.printStackTrace( log ); 178cdf0e10cSrcweir throw new StatusException( "Couldn't create environment ", e ); 179cdf0e10cSrcweir } catch ( com.sun.star.beans.UnknownPropertyException e ) { 180cdf0e10cSrcweir e.printStackTrace( log ); 181cdf0e10cSrcweir throw new StatusException( "Couldn't create environment ", e ); 182cdf0e10cSrcweir } 183cdf0e10cSrcweir 184cdf0e10cSrcweir log.println("creating a new environment for object"); 185cdf0e10cSrcweir tEnv = new TestEnvironment(oMyStyle); 186cdf0e10cSrcweir tEnv.addObjRelation("PoolStyle", oStyle); 187cdf0e10cSrcweir 188cdf0e10cSrcweir XPropertySet xStyleProp = (XPropertySet) 189cdf0e10cSrcweir UnoRuntime.queryInterface(XPropertySet.class, oMyStyle); 190cdf0e10cSrcweir short exclude = PropertyAttribute.MAYBEVOID + PropertyAttribute.READONLY; 191cdf0e10cSrcweir String[] names = utils.getFilteredPropertyNames(xStyleProp, (short)0, exclude); 192cdf0e10cSrcweir tEnv.addObjRelation("PropertyNames", names); 193cdf0e10cSrcweir 194cdf0e10cSrcweir return tEnv; 195cdf0e10cSrcweir } 196cdf0e10cSrcweir 197cdf0e10cSrcweir } 198