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 24cdf0e10cSrcweir package mod._sw; 25cdf0e10cSrcweir 26cdf0e10cSrcweir import java.io.PrintWriter; 27cdf0e10cSrcweir 28cdf0e10cSrcweir import lib.StatusException; 29cdf0e10cSrcweir import lib.TestCase; 30cdf0e10cSrcweir import lib.TestEnvironment; 31cdf0e10cSrcweir import lib.TestParameters; 32cdf0e10cSrcweir import util.InstCreator; 33cdf0e10cSrcweir import util.SOfficeFactory; 34cdf0e10cSrcweir import util.TableDsc; 35cdf0e10cSrcweir 36cdf0e10cSrcweir import com.sun.star.container.XIndexAccess; 37cdf0e10cSrcweir import com.sun.star.container.XNameAccess; 38cdf0e10cSrcweir import com.sun.star.container.XNamed; 39cdf0e10cSrcweir import com.sun.star.lang.XComponent; 40cdf0e10cSrcweir import com.sun.star.lang.XMultiServiceFactory; 41cdf0e10cSrcweir import com.sun.star.text.XText; 42cdf0e10cSrcweir import com.sun.star.text.XTextColumns; 43cdf0e10cSrcweir import com.sun.star.text.XTextContent; 44cdf0e10cSrcweir import com.sun.star.text.XTextCursor; 45cdf0e10cSrcweir import com.sun.star.text.XTextDocument; 46cdf0e10cSrcweir import com.sun.star.text.XTextSection; 47cdf0e10cSrcweir import com.sun.star.text.XTextSectionsSupplier; 48cdf0e10cSrcweir import com.sun.star.text.XWordCursor; 49cdf0e10cSrcweir import com.sun.star.uno.AnyConverter; 50cdf0e10cSrcweir import com.sun.star.uno.Type; 51cdf0e10cSrcweir import com.sun.star.uno.UnoRuntime; 52cdf0e10cSrcweir import com.sun.star.uno.XInterface; 53cdf0e10cSrcweir 54cdf0e10cSrcweir /** 55cdf0e10cSrcweir * 56cdf0e10cSrcweir * initial description 57cdf0e10cSrcweir * @see com.sun.star.text.XText 58cdf0e10cSrcweir * 59cdf0e10cSrcweir */ 60cdf0e10cSrcweir 61cdf0e10cSrcweir public class SwXTextSection extends TestCase { 62cdf0e10cSrcweir XTextDocument xTextDoc; 63cdf0e10cSrcweir 64cdf0e10cSrcweir protected void initialize( TestParameters tParam, PrintWriter log ) { 65cdf0e10cSrcweir SOfficeFactory SOF = SOfficeFactory.getFactory( (XMultiServiceFactory)tParam.getMSF() ); 66cdf0e10cSrcweir 67cdf0e10cSrcweir try { 68cdf0e10cSrcweir log.println( "creating a textdocument" ); 69cdf0e10cSrcweir xTextDoc = SOF.createTextDoc( null ); 70cdf0e10cSrcweir } catch ( com.sun.star.uno.Exception e ) { 71cdf0e10cSrcweir // Some exception occures.FAILED 72cdf0e10cSrcweir e.printStackTrace( log ); 73cdf0e10cSrcweir throw new StatusException( "Couldn't create document", e ); 74cdf0e10cSrcweir } 75cdf0e10cSrcweir } 76cdf0e10cSrcweir 77cdf0e10cSrcweir protected void cleanup( TestParameters tParam, PrintWriter log ) { 78cdf0e10cSrcweir log.println( " disposing xTextDoc " ); 79cdf0e10cSrcweir util.DesktopTools.closeDoc(xTextDoc); 80cdf0e10cSrcweir } 81cdf0e10cSrcweir 82cdf0e10cSrcweir /** 83cdf0e10cSrcweir * creating a Testenvironment for the interfaces to be tested 84cdf0e10cSrcweir */ 85cdf0e10cSrcweir protected synchronized TestEnvironment createTestEnvironment(TestParameters Param, PrintWriter log) { 86cdf0e10cSrcweir 87cdf0e10cSrcweir XInterface oObj = null; 88cdf0e10cSrcweir XInterface oTS = null; 89cdf0e10cSrcweir XTextSection xTS = null; 90cdf0e10cSrcweir XText oText = null; 91cdf0e10cSrcweir XTextColumns TC = null; 92cdf0e10cSrcweir Object instance = null; 93cdf0e10cSrcweir 94cdf0e10cSrcweir log.println( "creating a test environment" ); 95cdf0e10cSrcweir 96cdf0e10cSrcweir oText = xTextDoc.getText(); 97cdf0e10cSrcweir XTextCursor oCursor = oText.createTextCursor(); 98cdf0e10cSrcweir 99cdf0e10cSrcweir XMultiServiceFactory oDocMSF = (XMultiServiceFactory) 100cdf0e10cSrcweir UnoRuntime.queryInterface(XMultiServiceFactory.class, xTextDoc); 101cdf0e10cSrcweir 102cdf0e10cSrcweir try { 103cdf0e10cSrcweir XTextSectionsSupplier oTSSupp = (XTextSectionsSupplier) 104cdf0e10cSrcweir UnoRuntime.queryInterface 105cdf0e10cSrcweir ( XTextSectionsSupplier.class, xTextDoc ); 106cdf0e10cSrcweir XNameAccess oTSSuppName = oTSSupp.getTextSections(); 107cdf0e10cSrcweir 108cdf0e10cSrcweir //cleanup if necessary 109cdf0e10cSrcweir if (oTSSuppName.hasByName("SwXTextSection")) { 110cdf0e10cSrcweir XTextSection old = (XTextSection) AnyConverter.toObject( 111cdf0e10cSrcweir new Type(XTextSection.class), 112cdf0e10cSrcweir oTSSuppName.getByName("SwXTextSection")); 113cdf0e10cSrcweir XComponent oldC = (XComponent) 114cdf0e10cSrcweir UnoRuntime.queryInterface(XComponent.class,old); 115cdf0e10cSrcweir oldC.dispose(); 116cdf0e10cSrcweir oText.setString(""); 117cdf0e10cSrcweir } 118cdf0e10cSrcweir 119cdf0e10cSrcweir //insert two sections parent and child 120cdf0e10cSrcweir oTS = (XInterface) oDocMSF.createInstance 121cdf0e10cSrcweir ("com.sun.star.text.TextSection"); 122cdf0e10cSrcweir instance = oDocMSF.createInstance("com.sun.star.text.TextSection"); 123cdf0e10cSrcweir XTextContent oTSC = (XTextContent) 124cdf0e10cSrcweir UnoRuntime.queryInterface(XTextContent.class, oTS); 125cdf0e10cSrcweir oText.insertTextContent(oCursor, oTSC, false); 126cdf0e10cSrcweir XWordCursor oWordC = (XWordCursor) 127cdf0e10cSrcweir UnoRuntime.queryInterface(XWordCursor.class, oCursor); 128cdf0e10cSrcweir oCursor.setString("End of TextSection"); 129cdf0e10cSrcweir oCursor.gotoStart(false); 130cdf0e10cSrcweir oCursor.setString("Start of TextSection "); 131cdf0e10cSrcweir oWordC.gotoEndOfWord(false); 132cdf0e10cSrcweir XInterface oTS2 = (XInterface) oDocMSF.createInstance 133cdf0e10cSrcweir ("com.sun.star.text.TextSection"); 134cdf0e10cSrcweir oTSC = (XTextContent)UnoRuntime.queryInterface(XTextContent.class, oTS2); 135cdf0e10cSrcweir oText.insertTextContent(oCursor, oTSC, false); 136cdf0e10cSrcweir 137cdf0e10cSrcweir XIndexAccess oTSSuppIndex = (XIndexAccess) 138cdf0e10cSrcweir UnoRuntime.queryInterface(XIndexAccess.class, oTSSuppName); 139cdf0e10cSrcweir 140cdf0e10cSrcweir log.println( "getting a TextSection with the XTextSectionSupplier()" ); 141cdf0e10cSrcweir xTS = (XTextSection) AnyConverter.toObject( 142cdf0e10cSrcweir new Type(XTextSection.class),oTSSuppIndex.getByIndex(0)); 143cdf0e10cSrcweir XNamed xTSName = (XNamed) 144cdf0e10cSrcweir UnoRuntime.queryInterface( XNamed.class, xTS); 145cdf0e10cSrcweir xTSName.setName("SwXTextSection"); 146cdf0e10cSrcweir } 147cdf0e10cSrcweir catch(Exception e){ 148cdf0e10cSrcweir System.out.println("Couldn't get Textsection " + e); 149cdf0e10cSrcweir } 150cdf0e10cSrcweir 151cdf0e10cSrcweir oObj = xTS; 152cdf0e10cSrcweir 153cdf0e10cSrcweir log.println( "creating a new environment for TextSection object" ); 154cdf0e10cSrcweir TestEnvironment tEnv = new TestEnvironment( oObj ); 155cdf0e10cSrcweir 156cdf0e10cSrcweir log.println( "adding InstDescriptor object" ); 157cdf0e10cSrcweir TableDsc tDsc = new TableDsc( 6, 4 ); 158cdf0e10cSrcweir 159cdf0e10cSrcweir log.println( "adding InstCreator object" ); 160cdf0e10cSrcweir tEnv.addObjRelation( "XTEXTINFO", new InstCreator( xTextDoc, tDsc ) ); 161cdf0e10cSrcweir 162cdf0e10cSrcweir tEnv.addObjRelation("TRO",new Boolean(true)); 163cdf0e10cSrcweir 164cdf0e10cSrcweir try { 165cdf0e10cSrcweir TC = (XTextColumns) UnoRuntime.queryInterface(XTextColumns.class, 166cdf0e10cSrcweir oDocMSF.createInstance("com.sun.star.text.TextColumns")); 167cdf0e10cSrcweir } catch ( com.sun.star.uno.Exception e ) { 168cdf0e10cSrcweir e.printStackTrace(log); 169cdf0e10cSrcweir throw new StatusException 170cdf0e10cSrcweir ("Couldn't create instance of service TextColumns", e ); 171cdf0e10cSrcweir } 172cdf0e10cSrcweir tEnv.addObjRelation("TC",TC); 173cdf0e10cSrcweir 174cdf0e10cSrcweir tEnv.addObjRelation("CONTENT", (XTextContent) 175cdf0e10cSrcweir UnoRuntime.queryInterface(XTextContent.class,instance)); 176cdf0e10cSrcweir tEnv.addObjRelation("RANGE", xTextDoc.getText().createTextCursor()); 177cdf0e10cSrcweir 178cdf0e10cSrcweir return tEnv; 179cdf0e10cSrcweir } // finish method getTestEnvironment 180cdf0e10cSrcweir 181cdf0e10cSrcweir }// finish class SwXTextSection 182cdf0e10cSrcweir 183cdf0e10cSrcweir 184