xref: /trunk/test/testuno/source/fvt/uno/sw/frame/FramePosition.java (revision 42a976b737d4e2b88cfbe2fe1cd610fe957bdc84)
1*f5a7bb7cSJürgen Schmidt /**************************************************************
2*f5a7bb7cSJürgen Schmidt  *
3*f5a7bb7cSJürgen Schmidt  * Licensed to the Apache Software Foundation (ASF) under one
4*f5a7bb7cSJürgen Schmidt  * or more contributor license agreements.  See the NOTICE file
5*f5a7bb7cSJürgen Schmidt  * distributed with this work for additional information
6*f5a7bb7cSJürgen Schmidt  * regarding copyright ownership.  The ASF licenses this file
7*f5a7bb7cSJürgen Schmidt  * to you under the Apache License, Version 2.0 (the
8*f5a7bb7cSJürgen Schmidt  * "License"); you may not use this file except in compliance
9*f5a7bb7cSJürgen Schmidt  * with the License.  You may obtain a copy of the License at
10*f5a7bb7cSJürgen Schmidt  *
11*f5a7bb7cSJürgen Schmidt  *   http://www.apache.org/licenses/LICENSE-2.0
12*f5a7bb7cSJürgen Schmidt  *
13*f5a7bb7cSJürgen Schmidt  * Unless required by applicable law or agreed to in writing,
14*f5a7bb7cSJürgen Schmidt  * software distributed under the License is distributed on an
15*f5a7bb7cSJürgen Schmidt  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16*f5a7bb7cSJürgen Schmidt  * KIND, either express or implied.  See the License for the
17*f5a7bb7cSJürgen Schmidt  * specific language governing permissions and limitations
18*f5a7bb7cSJürgen Schmidt  * under the License.
19*f5a7bb7cSJürgen Schmidt  *
20*f5a7bb7cSJürgen Schmidt  *************************************************************/
211ff9903bSLi Feng Wang package fvt.uno.sw.frame;
221ff9903bSLi Feng Wang 
231ff9903bSLi Feng Wang import static org.junit.Assert.*;
241ff9903bSLi Feng Wang 
251ff9903bSLi Feng Wang import java.util.Arrays;
261ff9903bSLi Feng Wang import java.util.Collection;
271ff9903bSLi Feng Wang 
281ff9903bSLi Feng Wang import org.junit.After;
291ff9903bSLi Feng Wang import org.junit.Before;
301ff9903bSLi Feng Wang import org.junit.Test;
311ff9903bSLi Feng Wang import org.junit.runner.RunWith;
321ff9903bSLi Feng Wang import org.junit.runners.Parameterized;
331ff9903bSLi Feng Wang import org.junit.runners.Parameterized.Parameters;
341ff9903bSLi Feng Wang import org.openoffice.test.common.Testspace;
351ff9903bSLi Feng Wang import org.openoffice.test.uno.UnoApp;
361ff9903bSLi Feng Wang 
371ff9903bSLi Feng Wang import testlib.uno.SWUtil;
381ff9903bSLi Feng Wang import com.sun.star.beans.XPropertySet;
391ff9903bSLi Feng Wang import com.sun.star.container.XNameAccess;
401ff9903bSLi Feng Wang import com.sun.star.lang.XMultiServiceFactory;
411ff9903bSLi Feng Wang import com.sun.star.text.XText;
421ff9903bSLi Feng Wang import com.sun.star.text.XTextCursor;
431ff9903bSLi Feng Wang import com.sun.star.text.XTextDocument;
441ff9903bSLi Feng Wang import com.sun.star.text.XTextFrame;
451ff9903bSLi Feng Wang import com.sun.star.text.XTextFramesSupplier;
461ff9903bSLi Feng Wang import com.sun.star.uno.UnoRuntime;
471ff9903bSLi Feng Wang @RunWith(value = Parameterized.class)
481ff9903bSLi Feng Wang public class FramePosition {
491ff9903bSLi Feng Wang     private static final UnoApp app = new UnoApp();
501ff9903bSLi Feng Wang     private XTextDocument xTextDocument=null;
511ff9903bSLi Feng Wang     private XMultiServiceFactory xWriterFactory=null;
521ff9903bSLi Feng Wang     private XText xText=null;
531ff9903bSLi Feng Wang     private short HoriOrient;
541ff9903bSLi Feng Wang     private short HoriOrientRelation;
551ff9903bSLi Feng Wang     private short VertOrient;
561ff9903bSLi Feng Wang     private short VertOrientRelation;
FramePosition(short HoriOrient,short HoriOrientRelation,short VertOrient,short VertOrientRelation)571ff9903bSLi Feng Wang     public FramePosition(short HoriOrient,short HoriOrientRelation,short VertOrient,short VertOrientRelation){
581ff9903bSLi Feng Wang         this.HoriOrient=HoriOrient;
591ff9903bSLi Feng Wang         this.HoriOrientRelation = HoriOrientRelation;
601ff9903bSLi Feng Wang         this.VertOrient=VertOrient;
611ff9903bSLi Feng Wang         this.VertOrientRelation = VertOrientRelation;
621ff9903bSLi Feng Wang     }
631ff9903bSLi Feng Wang     @Parameters
data()641ff9903bSLi Feng Wang     public static Collection<Object[]> data(){
651ff9903bSLi Feng Wang         Object[][] params = new Object[][]{
661ff9903bSLi Feng Wang                 {(short)0,(short)0,(short)0,(short)0},
671ff9903bSLi Feng Wang                 {(short)1,(short)1,(short)1,(short)1},
681ff9903bSLi Feng Wang                 {(short)2,(short)2,(short)2,(short)2},
691ff9903bSLi Feng Wang                 {(short)3,(short)3,(short)3,(short)2},
701ff9903bSLi Feng Wang                 {(short)0,(short)4,(short)2,(short)0},
711ff9903bSLi Feng Wang                 {(short)1,(short)5,(short)2,(short)2},
721ff9903bSLi Feng Wang                 };
731ff9903bSLi Feng Wang         return Arrays.asList(params);
741ff9903bSLi Feng Wang     }
751ff9903bSLi Feng Wang     @Before
setUp()761ff9903bSLi Feng Wang     public void setUp() throws Exception {
771ff9903bSLi Feng Wang         app.start();
781ff9903bSLi Feng Wang     }
791ff9903bSLi Feng Wang 
801ff9903bSLi Feng Wang     @After
tearDown()811ff9903bSLi Feng Wang     public void tearDown() throws Exception {
821ff9903bSLi Feng Wang         app.close();
831ff9903bSLi Feng Wang     }
841ff9903bSLi Feng Wang 
851ff9903bSLi Feng Wang     @Test
testFramePosition()861ff9903bSLi Feng Wang     public void testFramePosition() throws Exception {
871ff9903bSLi Feng Wang         xTextDocument =(XTextDocument)UnoRuntime.queryInterface(XTextDocument.class, app.newDocument("swriter"));
881ff9903bSLi Feng Wang         xText=xTextDocument.getText();
891ff9903bSLi Feng Wang         XTextCursor xTextCursor = xText.createTextCursor();
901ff9903bSLi Feng Wang         // get internal service factory of the document
911ff9903bSLi Feng Wang         xWriterFactory =(XMultiServiceFactory)UnoRuntime.queryInterface(XMultiServiceFactory.class, xTextDocument);
921ff9903bSLi Feng Wang         // Create a new table from the document's factory
931ff9903bSLi Feng Wang         XTextFrame xTextFrame = (XTextFrame)UnoRuntime.queryInterface(XTextFrame.class, xWriterFactory.createInstance("com.sun.star.text.TextFrame"));
941ff9903bSLi Feng Wang         xText.insertTextContent(xTextCursor,xTextFrame,false);
951ff9903bSLi Feng Wang         XPropertySet xFrameProps = (XPropertySet) UnoRuntime.queryInterface(XPropertySet.class, xTextFrame);
961ff9903bSLi Feng Wang         xFrameProps.setPropertyValue("HoriOrient", HoriOrient);
971ff9903bSLi Feng Wang         xFrameProps.setPropertyValue("HoriOrientRelation", HoriOrientRelation);
981ff9903bSLi Feng Wang         xFrameProps.setPropertyValue("VertOrient", VertOrient);
991ff9903bSLi Feng Wang         xFrameProps.setPropertyValue("VertOrientRelation", VertOrientRelation);
1001ff9903bSLi Feng Wang 
1011ff9903bSLi Feng Wang         //reopen the odt document
1021ff9903bSLi Feng Wang         XTextDocument assertDocument_odt=(XTextDocument)UnoRuntime.queryInterface(XTextDocument.class,SWUtil.saveTo_Override_reload(xTextDocument, "writer8",Testspace.getPath("output/test.odt"), app));
1031ff9903bSLi Feng Wang         XTextFramesSupplier xTFS_odt = (XTextFramesSupplier) UnoRuntime.queryInterface(XTextFramesSupplier.class, assertDocument_odt);
1041ff9903bSLi Feng Wang         XNameAccess xTextFrames_odt = xTFS_odt.getTextFrames();
1051ff9903bSLi Feng Wang         Object xTextFrame_obj_odt=xTextFrames_odt.getByName("Frame1");
1061ff9903bSLi Feng Wang         XTextFrame xTextFrame_Assert_odt=(XTextFrame) UnoRuntime.queryInterface(XTextFrame.class, xTextFrame_obj_odt);
1071ff9903bSLi Feng Wang         XPropertySet xFramProps_odt = (XPropertySet) UnoRuntime.queryInterface(XPropertySet.class, xTextFrame_Assert_odt);
1081ff9903bSLi Feng Wang         assertEquals("verify Frame position",HoriOrient,xFramProps_odt.getPropertyValue("HoriOrient"));
1091ff9903bSLi Feng Wang         assertEquals("verify Frame position",HoriOrientRelation,xFramProps_odt.getPropertyValue("HoriOrientRelation"));
1101ff9903bSLi Feng Wang         assertEquals("verify Frame position",VertOrient,xFramProps_odt.getPropertyValue("VertOrient"));
1111ff9903bSLi Feng Wang         assertEquals("verify Frame position",VertOrientRelation,xFramProps_odt.getPropertyValue("VertOrientRelation"));
1121ff9903bSLi Feng Wang     }
1131ff9903bSLi Feng Wang }
114