1f5a7bb7cSJürgen Schmidt /**************************************************************
2f5a7bb7cSJürgen Schmidt  *
3f5a7bb7cSJürgen Schmidt  * Licensed to the Apache Software Foundation (ASF) under one
4f5a7bb7cSJürgen Schmidt  * or more contributor license agreements.  See the NOTICE file
5f5a7bb7cSJürgen Schmidt  * distributed with this work for additional information
6f5a7bb7cSJürgen Schmidt  * regarding copyright ownership.  The ASF licenses this file
7f5a7bb7cSJürgen Schmidt  * to you under the Apache License, Version 2.0 (the
8f5a7bb7cSJürgen Schmidt  * "License"); you may not use this file except in compliance
9f5a7bb7cSJürgen Schmidt  * with the License.  You may obtain a copy of the License at
10f5a7bb7cSJürgen Schmidt  *
11f5a7bb7cSJürgen Schmidt  *   http://www.apache.org/licenses/LICENSE-2.0
12f5a7bb7cSJürgen Schmidt  *
13f5a7bb7cSJürgen Schmidt  * Unless required by applicable law or agreed to in writing,
14f5a7bb7cSJürgen Schmidt  * software distributed under the License is distributed on an
15f5a7bb7cSJürgen Schmidt  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16f5a7bb7cSJürgen Schmidt  * KIND, either express or implied.  See the License for the
17f5a7bb7cSJürgen Schmidt  * specific language governing permissions and limitations
18f5a7bb7cSJürgen Schmidt  * under the License.
19f5a7bb7cSJürgen Schmidt  *
20f5a7bb7cSJü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.FileUtil;
351ff9903bSLi Feng Wang import org.openoffice.test.common.Testspace;
361ff9903bSLi Feng Wang import org.openoffice.test.uno.UnoApp;
371ff9903bSLi Feng Wang 
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.style.GraphicLocation;
421ff9903bSLi Feng Wang import com.sun.star.text.XText;
431ff9903bSLi Feng Wang import com.sun.star.text.XTextCursor;
441ff9903bSLi Feng Wang import com.sun.star.text.XTextDocument;
451ff9903bSLi Feng Wang import com.sun.star.text.XTextFrame;
461ff9903bSLi Feng Wang import com.sun.star.text.XTextFramesSupplier;
471ff9903bSLi Feng Wang import com.sun.star.uno.UnoRuntime;
481ff9903bSLi Feng Wang import testlib.uno.SWUtil;
491ff9903bSLi Feng Wang @RunWith(value = Parameterized.class)
501ff9903bSLi Feng Wang public class FrameBackGraphic {
511ff9903bSLi Feng Wang 	private static final UnoApp app = new UnoApp();
521ff9903bSLi Feng Wang 	private XTextDocument xTextDocument=null;
531ff9903bSLi Feng Wang 	private XMultiServiceFactory xWriterFactory=null;
541ff9903bSLi Feng Wang 	private XText xText=null;
551ff9903bSLi Feng Wang 	private int backGraphicLocation;
561ff9903bSLi Feng Wang 	private String graphicURL=null;
571ff9903bSLi Feng Wang 	private String graphicName=null;
FrameBackGraphic(String graphicURL,String graphicName,int backGraphicLocation)581ff9903bSLi Feng Wang 	public FrameBackGraphic(String graphicURL,String graphicName,int backGraphicLocation){
591ff9903bSLi Feng Wang 		this.graphicURL=graphicURL;
601ff9903bSLi Feng Wang 		this.graphicName=graphicName;
611ff9903bSLi Feng Wang 		this.backGraphicLocation = backGraphicLocation;
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     			{FileUtil.getUrl(Testspace.prepareData("uno/Desert.jpg")),"draw_jpg_Export",1},
671ff9903bSLi Feng Wang     			{FileUtil.getUrl(Testspace.prepareData("uno/Desert.jpg")),"draw_jpg_Export",2},
681ff9903bSLi Feng Wang     			{FileUtil.getUrl(Testspace.prepareData("uno/Desert.jpg")),"draw_jpg_Export",3},
691ff9903bSLi Feng Wang     			{FileUtil.getUrl(Testspace.prepareData("uno/Desert.jpg")),"draw_jpg_Export",4},
701ff9903bSLi Feng Wang     			{FileUtil.getUrl(Testspace.prepareData("uno/Desert.jpg")),"draw_jpg_Export",5},
711ff9903bSLi Feng Wang     			{FileUtil.getUrl(Testspace.prepareData("uno/Desert.jpg")),"draw_jpg_Export",6},
721ff9903bSLi Feng Wang     			{FileUtil.getUrl(Testspace.prepareData("uno/Desert.jpg")),"draw_jpg_Export",7},
731ff9903bSLi Feng Wang     			{FileUtil.getUrl(Testspace.prepareData("uno/Desert.jpg")),"draw_jpg_Export",8},
741ff9903bSLi Feng Wang     			{FileUtil.getUrl(Testspace.prepareData("uno/Desert.jpg")),"draw_jpg_Export",9},
751ff9903bSLi Feng Wang     			{FileUtil.getUrl(Testspace.prepareData("uno/Desert.jpg")),"draw_jpg_Export",10},
761ff9903bSLi Feng Wang     			{FileUtil.getUrl(Testspace.prepareData("uno/Desert.jpg")),"draw_jpg_Export",11}
771ff9903bSLi Feng Wang     			};
781ff9903bSLi Feng Wang     	return Arrays.asList(params);
791ff9903bSLi Feng Wang     }
801ff9903bSLi Feng Wang 
811ff9903bSLi Feng Wang 	@Before
setUp()821ff9903bSLi Feng Wang 	public void setUp() throws Exception {
831ff9903bSLi Feng Wang 		app.start();
841ff9903bSLi Feng Wang 	}
851ff9903bSLi Feng Wang 
861ff9903bSLi Feng Wang 	@After
tearDown()871ff9903bSLi Feng Wang 	public void tearDown() throws Exception {
881ff9903bSLi Feng Wang 		app.close();
891ff9903bSLi Feng Wang 	}
901ff9903bSLi Feng Wang 	@Test
testFrameBackGraphic()911ff9903bSLi Feng Wang 	public void testFrameBackGraphic() throws Exception {
921ff9903bSLi Feng Wang 		xTextDocument =(XTextDocument)UnoRuntime.queryInterface(XTextDocument.class, app.newDocument("swriter"));
931ff9903bSLi Feng Wang 		xText=xTextDocument.getText();
941ff9903bSLi Feng Wang 		XTextCursor xTextCursor = xText.createTextCursor();
951ff9903bSLi Feng Wang 		// get internal service factory of the document
961ff9903bSLi Feng Wang 		xWriterFactory =(XMultiServiceFactory)UnoRuntime.queryInterface(XMultiServiceFactory.class, xTextDocument);
971ff9903bSLi Feng Wang 		// Create a new Frame from the document's factory
981ff9903bSLi Feng Wang 		XTextFrame xTextFrame1 = (XTextFrame)UnoRuntime.queryInterface(XTextFrame.class, xWriterFactory.createInstance("com.sun.star.text.TextFrame"));
991ff9903bSLi Feng Wang 		xText.insertTextContent(xTextCursor,xTextFrame1,false);
1001ff9903bSLi Feng Wang 		XPropertySet xFrameProps1 = (XPropertySet)UnoRuntime.queryInterface(XPropertySet.class, xTextFrame1);
1011ff9903bSLi Feng Wang 		xFrameProps1.setPropertyValue("BackGraphicURL",graphicURL);
1021ff9903bSLi Feng Wang 		xFrameProps1.setPropertyValue("BackGraphicFilter",graphicName);
1031ff9903bSLi Feng Wang 		xFrameProps1.setPropertyValue("BackGraphicLocation",backGraphicLocation);
1041ff9903bSLi Feng Wang 		XTextDocument xTextDocument_odt=(XTextDocument)UnoRuntime.queryInterface(XTextDocument.class,SWUtil.saveTo_Override_reload(xTextDocument, "writer8",Testspace.getPath("output/test.odt"), app));
1051ff9903bSLi Feng Wang 		XTextFramesSupplier xTFS_odt = (XTextFramesSupplier) UnoRuntime.queryInterface(XTextFramesSupplier.class,xTextDocument_odt);
1061ff9903bSLi Feng Wang 		XNameAccess xTextFrames_odt = xTFS_odt.getTextFrames();
1071ff9903bSLi Feng Wang 		Object xFrame_obj1=xTextFrames_odt.getByName("Frame1");
1081ff9903bSLi Feng Wang 		XTextFrame xFrame_Assert1=(XTextFrame) UnoRuntime.queryInterface(XTextFrame.class, xFrame_obj1);
1091ff9903bSLi Feng Wang 		XPropertySet xFrameProps1_assert = (XPropertySet) UnoRuntime.queryInterface(XPropertySet.class, xFrame_Assert1);
1101ff9903bSLi Feng Wang 		GraphicLocation graphiclocation=(GraphicLocation)xFrameProps1_assert.getPropertyValue("BackGraphicLocation");
1111ff9903bSLi Feng Wang 		assertEquals("verify Frame backgraphic location",backGraphicLocation,graphiclocation.getValue());
112*ff9157e3SDamjan Jovanovic 		assertEquals("verify Frame backgraphic filter",graphicName,xFrameProps1_assert.getPropertyValue("BackGraphicFilter"));
1131ff9903bSLi Feng Wang 		assertEquals("verify Frame backgraphic URL",graphicURL,xFrameProps1_assert.getPropertyValue("BackGraphicURL"));
1141ff9903bSLi Feng Wang 	}
1151ff9903bSLi Feng Wang }
116