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 10cdf0e10cSrcweir * 11*ef39d40dSAndrew Rist * http://www.apache.org/licenses/LICENSE-2.0 12cdf0e10cSrcweir * 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. 19cdf0e10cSrcweir * 20*ef39d40dSAndrew Rist *************************************************************/ 21*ef39d40dSAndrew Rist 22*ef39d40dSAndrew Rist 23cdf0e10cSrcweir 24cdf0e10cSrcweir package mod._fwk; 25cdf0e10cSrcweir 26cdf0e10cSrcweir import com.sun.star.beans.XPropertySet; 27cdf0e10cSrcweir import com.sun.star.frame.XFrame; 28cdf0e10cSrcweir import com.sun.star.lang.XMultiServiceFactory; 29cdf0e10cSrcweir import com.sun.star.uno.UnoRuntime; 30cdf0e10cSrcweir import com.sun.star.uno.XInterface; 31cdf0e10cSrcweir import java.io.PrintWriter; 32cdf0e10cSrcweir import com.sun.star.text.XText; 33cdf0e10cSrcweir import com.sun.star.text.XTextCursor; 34cdf0e10cSrcweir import com.sun.star.text.XTextDocument; 35cdf0e10cSrcweir import com.sun.star.util.XCloseable; 36cdf0e10cSrcweir import lib.StatusException; 37cdf0e10cSrcweir import lib.TestCase; 38cdf0e10cSrcweir import lib.TestEnvironment; 39cdf0e10cSrcweir import lib.TestParameters; 40cdf0e10cSrcweir import util.WriterTools; 41cdf0e10cSrcweir 42cdf0e10cSrcweir /** 43cdf0e10cSrcweir */ 44cdf0e10cSrcweir public class LayoutManager extends TestCase { 45cdf0e10cSrcweir XInterface xManager = null; 46cdf0e10cSrcweir XTextDocument xTextDoc; 47cdf0e10cSrcweir 48cdf0e10cSrcweir /** 49cdf0e10cSrcweir * Cleanup: close the created document 50cdf0e10cSrcweir * @param tParam The test parameters. 51cdf0e10cSrcweir * @param The log writer. 52cdf0e10cSrcweir * @return The test environment. 53cdf0e10cSrcweir */ 54cdf0e10cSrcweir protected void cleanup(TestParameters tParam, PrintWriter log) { 55cdf0e10cSrcweir log.println(" disposing xTextDoc "); 56cdf0e10cSrcweir 57cdf0e10cSrcweir try { 58cdf0e10cSrcweir XCloseable closer = (XCloseable) UnoRuntime.queryInterface( 59cdf0e10cSrcweir XCloseable.class, xTextDoc); 60cdf0e10cSrcweir closer.close(true); 61cdf0e10cSrcweir } catch (com.sun.star.util.CloseVetoException e) { 62cdf0e10cSrcweir log.println("couldn't close document"); 63cdf0e10cSrcweir } catch (com.sun.star.lang.DisposedException e) { 64cdf0e10cSrcweir log.println("couldn't close document"); 65cdf0e10cSrcweir } 66cdf0e10cSrcweir } 67cdf0e10cSrcweir 68cdf0e10cSrcweir /** 69cdf0e10cSrcweir * Create test environment: 70cdf0e10cSrcweir * <ul> 71cdf0e10cSrcweir * <li>Create test doc</li> 72cdf0e10cSrcweir * <li>Get the frame</li> 73cdf0e10cSrcweir * <li>Get the LayoutManager from the frame</li> 74cdf0e10cSrcweir * </ul> 75cdf0e10cSrcweir * @param tParam The test parameters. 76cdf0e10cSrcweir * @param The log writer. 77cdf0e10cSrcweir * @return The test environment. 78cdf0e10cSrcweir */ 79cdf0e10cSrcweir protected TestEnvironment createTestEnvironment(TestParameters tParam, PrintWriter log) { 80cdf0e10cSrcweir TestEnvironment tEnv = null; 81cdf0e10cSrcweir XMultiServiceFactory xMSF = (XMultiServiceFactory)tParam.getMSF(); 82cdf0e10cSrcweir 83cdf0e10cSrcweir log.println("Creating instance..."); 84cdf0e10cSrcweir 85cdf0e10cSrcweir xTextDoc = WriterTools.createTextDoc(xMSF); 86cdf0e10cSrcweir 87cdf0e10cSrcweir XText xText = xTextDoc.getText(); 88cdf0e10cSrcweir XTextCursor xTextCursor = xText.createTextCursor(); 89cdf0e10cSrcweir 90cdf0e10cSrcweir for (int i = 0; i < 11; i++) { 91cdf0e10cSrcweir xText.insertString(xTextCursor, "A sample text and why not? ", false); 92cdf0e10cSrcweir } 93cdf0e10cSrcweir 94cdf0e10cSrcweir XFrame xFrame = xTextDoc.getCurrentController().getFrame(); 95cdf0e10cSrcweir XPropertySet xProp = (XPropertySet)UnoRuntime.queryInterface(XPropertySet.class, xFrame); 96cdf0e10cSrcweir try { 97cdf0e10cSrcweir Object any = xProp.getPropertyValue("LayoutManager"); 98cdf0e10cSrcweir xManager = (XInterface)UnoRuntime.queryInterface(XInterface.class, any); 99cdf0e10cSrcweir } 100cdf0e10cSrcweir catch(com.sun.star.beans.UnknownPropertyException e) { 101cdf0e10cSrcweir e.printStackTrace(log); 102cdf0e10cSrcweir throw new StatusException("Could not get property 'LayoutManager' from the current frame.", e); 103cdf0e10cSrcweir } 104cdf0e10cSrcweir catch(com.sun.star.lang.WrappedTargetException e) { 105cdf0e10cSrcweir e.printStackTrace(log); 106cdf0e10cSrcweir throw new StatusException("Could not get property 'LayoutManager' from the current frame.", e); 107cdf0e10cSrcweir } 108cdf0e10cSrcweir 109cdf0e10cSrcweir // just to make sure, it's the right one. 110cdf0e10cSrcweir log.println("TestObject: " + util.utils.getImplName(xManager)); 111cdf0e10cSrcweir tEnv = new TestEnvironment(xManager); 112cdf0e10cSrcweir 113cdf0e10cSrcweir tEnv.addObjRelation("XLayoutManager.TextDoc", xTextDoc); 114cdf0e10cSrcweir tEnv.addObjRelation("XLayoutManager.Frame",xFrame); 115cdf0e10cSrcweir 116cdf0e10cSrcweir return tEnv; 117cdf0e10cSrcweir } 118cdf0e10cSrcweir } 119cdf0e10cSrcweir 120cdf0e10cSrcweir 121