1*07d7dbdcSHerbert Dürr /**************************************************************
2*07d7dbdcSHerbert Dürr  *
3*07d7dbdcSHerbert Dürr  * Licensed to the Apache Software Foundation (ASF) under one
4*07d7dbdcSHerbert Dürr  * or more contributor license agreements.  See the NOTICE file
5*07d7dbdcSHerbert Dürr  * distributed with this work for additional information
6*07d7dbdcSHerbert Dürr  * regarding copyright ownership.  The ASF licenses this file
7*07d7dbdcSHerbert Dürr  * to you under the Apache License, Version 2.0 (the
8*07d7dbdcSHerbert Dürr  * "License"); you may not use this file except in compliance
9*07d7dbdcSHerbert Dürr  * with the License.  You may obtain a copy of the License at
10*07d7dbdcSHerbert Dürr  *
11*07d7dbdcSHerbert Dürr  *   http://www.apache.org/licenses/LICENSE-2.0
12*07d7dbdcSHerbert Dürr  *
13*07d7dbdcSHerbert Dürr  * Unless required by applicable law or agreed to in writing,
14*07d7dbdcSHerbert Dürr  * software distributed under the License is distributed on an
15*07d7dbdcSHerbert Dürr  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16*07d7dbdcSHerbert Dürr  * KIND, either express or implied.  See the License for the
17*07d7dbdcSHerbert Dürr  * specific language governing permissions and limitations
18*07d7dbdcSHerbert Dürr  * under the License.
19*07d7dbdcSHerbert Dürr  *
20*07d7dbdcSHerbert Dürr  *************************************************************/
21*07d7dbdcSHerbert Dürr 
22eba4d44aSLiu Zhe package fvt.uno.sw.puretext;
23352c0eacSLiu Zhe 
24352c0eacSLiu Zhe import static org.junit.Assert.*;
25352c0eacSLiu Zhe 
26352c0eacSLiu Zhe import org.junit.After;
27352c0eacSLiu Zhe import org.junit.Before;
28352c0eacSLiu Zhe import org.junit.Ignore;
29352c0eacSLiu Zhe import org.junit.Test;
30352c0eacSLiu Zhe import org.openoffice.test.common.FileUtil;
31352c0eacSLiu Zhe import org.openoffice.test.common.Testspace;
32352c0eacSLiu Zhe import org.openoffice.test.uno.UnoApp;
33352c0eacSLiu Zhe //import org.openoffice.test.vcl.Tester.*;
34352c0eacSLiu Zhe import com.sun.star.text.*;
35352c0eacSLiu Zhe import com.sun.star.beans.*;
36352c0eacSLiu Zhe import com.sun.star.frame.XStorable;
37352c0eacSLiu Zhe import com.sun.star.uno.UnoRuntime;
38352c0eacSLiu Zhe 
39352c0eacSLiu Zhe public class CharacterRotationAndScaleWidth {
40352c0eacSLiu Zhe 	private static final UnoApp app = new UnoApp();
41352c0eacSLiu Zhe 	XText xText = null;
42352c0eacSLiu Zhe 
43352c0eacSLiu Zhe 	@Before
setUp()44352c0eacSLiu Zhe 	public void setUp() throws Exception {
45352c0eacSLiu Zhe 		app.start();
46352c0eacSLiu Zhe 
47352c0eacSLiu Zhe 	}
48352c0eacSLiu Zhe 
49352c0eacSLiu Zhe 	@After
tearDown()50352c0eacSLiu Zhe 	public void tearDown() throws Exception {
51352c0eacSLiu Zhe 		app.close();
52352c0eacSLiu Zhe 	}
53352c0eacSLiu Zhe 
54352c0eacSLiu Zhe 	@Test
testCharacterRotationZeroSetting()55352c0eacSLiu Zhe 	public void testCharacterRotationZeroSetting() throws Exception {
56352c0eacSLiu Zhe 		XTextDocument xTextDocument = (XTextDocument) UnoRuntime.queryInterface(XTextDocument.class, app.newDocument("swriter"));// new a text document
57352c0eacSLiu Zhe 		xText = xTextDocument.getText();
58352c0eacSLiu Zhe 		xText.setString("we are Chinese,they are American.We are all living in one earth!"
59352c0eacSLiu Zhe 				+ "and we all love our home very much!!!");
60352c0eacSLiu Zhe 		// create text cursor for selecting and formatting text
61352c0eacSLiu Zhe 		XTextCursor xTextCursor = xText.createTextCursor();
62352c0eacSLiu Zhe 		XPropertySet xCursorProps = (XPropertySet) UnoRuntime.queryInterface(XPropertySet.class, xTextCursor);
63352c0eacSLiu Zhe 		xTextCursor.gotoStart(false);
64352c0eacSLiu Zhe 		xTextCursor.goRight((short) 102, true);
65352c0eacSLiu Zhe 		xCursorProps.setPropertyValue("CharRotation", (short)0);
66352c0eacSLiu Zhe 		xCursorProps.setPropertyValue("CharScaleWidth", (short)150);
67352c0eacSLiu Zhe 		//save to odt
68352c0eacSLiu Zhe 		XStorable xStorable_odt = (XStorable) UnoRuntime.queryInterface(XStorable.class, xTextDocument);
69352c0eacSLiu Zhe 		PropertyValue[] aStoreProperties_odt = new PropertyValue[2];
70352c0eacSLiu Zhe 		aStoreProperties_odt[0] = new PropertyValue();
71352c0eacSLiu Zhe 		aStoreProperties_odt[1] = new PropertyValue();
72352c0eacSLiu Zhe 		aStoreProperties_odt[0].Name = "Override";
73352c0eacSLiu Zhe 		aStoreProperties_odt[0].Value = true;
74352c0eacSLiu Zhe 		aStoreProperties_odt[1].Name = "FilterName";
75352c0eacSLiu Zhe 		aStoreProperties_odt[1].Value = "StarOffice XML (Writer)";
76352c0eacSLiu Zhe 		xStorable_odt.storeToURL(FileUtil.getUrl(Testspace.getPath("output/test.odt")), aStoreProperties_odt);
77352c0eacSLiu Zhe 		//save to doc
78352c0eacSLiu Zhe 		XStorable xStorable_doc = (XStorable) UnoRuntime.queryInterface(XStorable.class, xTextDocument);
79352c0eacSLiu Zhe 		PropertyValue[] aStoreProperties_doc = new PropertyValue[2];
80352c0eacSLiu Zhe 		aStoreProperties_doc[0] = new PropertyValue();
81352c0eacSLiu Zhe 		aStoreProperties_doc[1] = new PropertyValue();
82352c0eacSLiu Zhe 		aStoreProperties_doc[0].Name = "Override";
83352c0eacSLiu Zhe 		aStoreProperties_doc[0].Value = true;
84352c0eacSLiu Zhe 		aStoreProperties_doc[1].Name = "FilterName";
85352c0eacSLiu Zhe 		aStoreProperties_doc[1].Value = "MS Word 97";
86352c0eacSLiu Zhe 		xStorable_doc.storeToURL(FileUtil.getUrl(Testspace.getPath("output/test.doc")), aStoreProperties_doc);
87352c0eacSLiu Zhe 		app.closeDocument(xTextDocument);
88352c0eacSLiu Zhe 
89352c0eacSLiu Zhe 		//reopen the document and assert character rotation and scale width
90352c0eacSLiu Zhe 		XTextDocument assertDocument_odt=(XTextDocument)UnoRuntime.queryInterface(XTextDocument.class, app.loadDocument(Testspace.getPath("output/test.odt")));
91352c0eacSLiu Zhe 		XPropertySet xCursorProps_assert_odt = (XPropertySet) UnoRuntime.queryInterface(XPropertySet.class, assertDocument_odt.getText().createTextCursor());
92352c0eacSLiu Zhe 		//verify set property
93352c0eacSLiu Zhe 		assertEquals("assert character rotation ",(short)0,xCursorProps_assert_odt.getPropertyValue("CharRotation"));
94352c0eacSLiu Zhe 		assertEquals("assert character rotation ",(short)150,xCursorProps_assert_odt.getPropertyValue("CharScaleWidth"));
95352c0eacSLiu Zhe 
96352c0eacSLiu Zhe 		//reopen the document and assert row height setting
97352c0eacSLiu Zhe 		XTextDocument assertDocument_doc=(XTextDocument)UnoRuntime.queryInterface(XTextDocument.class, app.loadDocument(Testspace.getPath("output/test.doc")));
98352c0eacSLiu Zhe 		XPropertySet xCursorProps_assert_doc = (XPropertySet) UnoRuntime.queryInterface(XPropertySet.class, assertDocument_doc.getText().createTextCursor());
99352c0eacSLiu Zhe 		//verify set property
100352c0eacSLiu Zhe 		assertEquals("assert character rotation ",(short)0,xCursorProps_assert_doc.getPropertyValue("CharRotation"));
101352c0eacSLiu Zhe 		assertEquals("assert character rotation ",(short)150,xCursorProps_assert_doc.getPropertyValue("CharScaleWidth"));
102352c0eacSLiu Zhe 	}
103352c0eacSLiu Zhe 	@Test
testCharacterRotationNinetySetting()104352c0eacSLiu Zhe 	public void testCharacterRotationNinetySetting() throws Exception {
105352c0eacSLiu Zhe 		XTextDocument xTextDocument = (XTextDocument) UnoRuntime.queryInterface(XTextDocument.class, app.newDocument("swriter"));// new a text document
106352c0eacSLiu Zhe 		xText = xTextDocument.getText();
107352c0eacSLiu Zhe 		xText.setString("we are Chinese,they are American.We are all living in one earth!"
108352c0eacSLiu Zhe 				+ "and we all love our home very much!!!");
109352c0eacSLiu Zhe 		// create text cursor for selecting and formatting text
110352c0eacSLiu Zhe 		XTextCursor xTextCursor = xText.createTextCursor();
111352c0eacSLiu Zhe 		XPropertySet xCursorProps = (XPropertySet) UnoRuntime.queryInterface(XPropertySet.class, xTextCursor);
112352c0eacSLiu Zhe 		xTextCursor.gotoStart(false);
113352c0eacSLiu Zhe 		xTextCursor.goRight((short) 102, true);
114352c0eacSLiu Zhe 		xCursorProps.setPropertyValue("CharRotation", (short)900);
115352c0eacSLiu Zhe 		xCursorProps.setPropertyValue("CharScaleWidth", (short)200);
116352c0eacSLiu Zhe 		xCursorProps.setPropertyValue("CharRotationIsFitToLine", true);
117352c0eacSLiu Zhe 		//save to odt
118352c0eacSLiu Zhe 		XStorable xStorable_odt = (XStorable) UnoRuntime.queryInterface(XStorable.class, xTextDocument);
119352c0eacSLiu Zhe 		PropertyValue[] aStoreProperties_odt = new PropertyValue[2];
120352c0eacSLiu Zhe 		aStoreProperties_odt[0] = new PropertyValue();
121352c0eacSLiu Zhe 		aStoreProperties_odt[1] = new PropertyValue();
122352c0eacSLiu Zhe 		aStoreProperties_odt[0].Name = "Override";
123352c0eacSLiu Zhe 		aStoreProperties_odt[0].Value = true;
124352c0eacSLiu Zhe 		aStoreProperties_odt[1].Name = "FilterName";
125352c0eacSLiu Zhe 		aStoreProperties_odt[1].Value = "StarOffice XML (Writer)";
126352c0eacSLiu Zhe 		xStorable_odt.storeToURL(FileUtil.getUrl(Testspace.getPath("output/test.odt")), aStoreProperties_odt);
127352c0eacSLiu Zhe 		//save to doc
128352c0eacSLiu Zhe 		XStorable xStorable_doc = (XStorable) UnoRuntime.queryInterface(XStorable.class, xTextDocument);
129352c0eacSLiu Zhe 		PropertyValue[] aStoreProperties_doc = new PropertyValue[2];
130352c0eacSLiu Zhe 		aStoreProperties_doc[0] = new PropertyValue();
131352c0eacSLiu Zhe 		aStoreProperties_doc[1] = new PropertyValue();
132352c0eacSLiu Zhe 		aStoreProperties_doc[0].Name = "Override";
133352c0eacSLiu Zhe 		aStoreProperties_doc[0].Value = true;
134352c0eacSLiu Zhe 		aStoreProperties_doc[1].Name = "FilterName";
135352c0eacSLiu Zhe 		aStoreProperties_doc[1].Value = "MS Word 97";
136352c0eacSLiu Zhe 		xStorable_doc.storeToURL(FileUtil.getUrl(Testspace.getPath("output/test.doc")), aStoreProperties_doc);
137352c0eacSLiu Zhe 		app.closeDocument(xTextDocument);
138352c0eacSLiu Zhe 
139352c0eacSLiu Zhe 		//reopen the document and assert character rotation and scale width
140352c0eacSLiu Zhe 		XTextDocument assertDocument_odt=(XTextDocument)UnoRuntime.queryInterface(XTextDocument.class, app.loadDocument(Testspace.getPath("output/test.odt")));
141352c0eacSLiu Zhe 		XPropertySet xCursorProps_assert_odt = (XPropertySet) UnoRuntime.queryInterface(XPropertySet.class, assertDocument_odt.getText().createTextCursor());
142352c0eacSLiu Zhe 		//verify set property
143352c0eacSLiu Zhe 		assertEquals("assert character rotation ",(short)900,xCursorProps_assert_odt.getPropertyValue("CharRotation"));
144352c0eacSLiu Zhe 		assertEquals("assert character rotation ",(short)200,xCursorProps_assert_odt.getPropertyValue("CharScaleWidth"));
145352c0eacSLiu Zhe 		assertEquals("assert character rotation ",true,xCursorProps_assert_odt.getPropertyValue("CharRotationIsFitToLine"));
146352c0eacSLiu Zhe 
147352c0eacSLiu Zhe 		//reopen the document and assert row height setting
148352c0eacSLiu Zhe 		XTextDocument assertDocument_doc=(XTextDocument)UnoRuntime.queryInterface(XTextDocument.class, app.loadDocument(Testspace.getPath("output/test.doc")));
149352c0eacSLiu Zhe 		XPropertySet xCursorProps_assert_doc = (XPropertySet) UnoRuntime.queryInterface(XPropertySet.class, assertDocument_doc.getText().createTextCursor());
150352c0eacSLiu Zhe 		//verify set property
151352c0eacSLiu Zhe 		assertEquals("assert character rotation ",(short)900,xCursorProps_assert_doc.getPropertyValue("CharRotation"));
152352c0eacSLiu Zhe 		assertEquals("assert character rotation ",(short)200,xCursorProps_assert_doc.getPropertyValue("CharScaleWidth"));
153352c0eacSLiu Zhe 		assertEquals("assert character rotation ",true,xCursorProps_assert_odt.getPropertyValue("CharRotationIsFitToLine"));
154352c0eacSLiu Zhe 	}
155352c0eacSLiu Zhe 	//test character rotation 270 degree
15683ae2205SHerbert Dürr 	@Test
15783ae2205SHerbert Dürr 	@Ignore("Bug #120673 - character rotation changes to 90 from 270 degrees when saving to doc")
testCharacterRotationDefineSetting()158352c0eacSLiu Zhe 	public void testCharacterRotationDefineSetting() throws Exception {
159352c0eacSLiu Zhe 		XTextDocument xTextDocument = (XTextDocument) UnoRuntime.queryInterface(XTextDocument.class, app.newDocument("swriter"));// new a text document
160352c0eacSLiu Zhe 		xText = xTextDocument.getText();
161352c0eacSLiu Zhe 		xText.setString("we are Chinese,they are American.We are all living in one earth!"
162352c0eacSLiu Zhe 				+ "and we all love our home very much!!!");
163352c0eacSLiu Zhe 		// create text cursor for selecting and formatting text
164352c0eacSLiu Zhe 		XTextCursor xTextCursor = xText.createTextCursor();
165352c0eacSLiu Zhe 		XPropertySet xCursorProps = (XPropertySet) UnoRuntime.queryInterface(XPropertySet.class, xTextCursor);
166352c0eacSLiu Zhe 		xTextCursor.gotoStart(false);
167352c0eacSLiu Zhe 		xTextCursor.goRight((short) 102, true);
168352c0eacSLiu Zhe 		xCursorProps.setPropertyValue("CharRotation", (short)2700);
169352c0eacSLiu Zhe 		xCursorProps.setPropertyValue("CharScaleWidth", (short)300);
170352c0eacSLiu Zhe 		//save to odt
171352c0eacSLiu Zhe 		XStorable xStorable_odt = (XStorable) UnoRuntime.queryInterface(XStorable.class, xTextDocument);
172352c0eacSLiu Zhe 		PropertyValue[] aStoreProperties_odt = new PropertyValue[2];
173352c0eacSLiu Zhe 		aStoreProperties_odt[0] = new PropertyValue();
174352c0eacSLiu Zhe 		aStoreProperties_odt[1] = new PropertyValue();
175352c0eacSLiu Zhe 		aStoreProperties_odt[0].Name = "Override";
176352c0eacSLiu Zhe 		aStoreProperties_odt[0].Value = true;
177352c0eacSLiu Zhe 		aStoreProperties_odt[1].Name = "FilterName";
178352c0eacSLiu Zhe 		aStoreProperties_odt[1].Value = "StarOffice XML (Writer)";
179352c0eacSLiu Zhe 		xStorable_odt.storeToURL(FileUtil.getUrl(Testspace.getPath("output/test.odt")), aStoreProperties_odt);
180352c0eacSLiu Zhe 		//save to doc
181352c0eacSLiu Zhe 		XStorable xStorable_doc = (XStorable) UnoRuntime.queryInterface(XStorable.class, xTextDocument);
182352c0eacSLiu Zhe 		PropertyValue[] aStoreProperties_doc = new PropertyValue[2];
183352c0eacSLiu Zhe 		aStoreProperties_doc[0] = new PropertyValue();
184352c0eacSLiu Zhe 		aStoreProperties_doc[1] = new PropertyValue();
185352c0eacSLiu Zhe 		aStoreProperties_doc[0].Name = "Override";
186352c0eacSLiu Zhe 		aStoreProperties_doc[0].Value = true;
187352c0eacSLiu Zhe 		aStoreProperties_doc[1].Name = "FilterName";
188352c0eacSLiu Zhe 		aStoreProperties_doc[1].Value = "MS Word 97";
189352c0eacSLiu Zhe 		xStorable_doc.storeToURL(FileUtil.getUrl(Testspace.getPath("output/test.doc")), aStoreProperties_doc);
190352c0eacSLiu Zhe 		app.closeDocument(xTextDocument);
191352c0eacSLiu Zhe 
192352c0eacSLiu Zhe 		//reopen the document and assert character rotation and scale width
193352c0eacSLiu Zhe 		XTextDocument assertDocument_odt=(XTextDocument)UnoRuntime.queryInterface(XTextDocument.class, app.loadDocument(Testspace.getPath("output/test.odt")));
194352c0eacSLiu Zhe 		XPropertySet xCursorProps_assert_odt = (XPropertySet) UnoRuntime.queryInterface(XPropertySet.class, assertDocument_odt.getText().createTextCursor());
195352c0eacSLiu Zhe 		//verify set property
196352c0eacSLiu Zhe 		assertEquals("assert character rotation ",(short)2700,xCursorProps_assert_odt.getPropertyValue("CharRotation"));
197352c0eacSLiu Zhe 		assertEquals("assert character rotation ",(short)300,xCursorProps_assert_odt.getPropertyValue("CharScaleWidth"));
198352c0eacSLiu Zhe 
199352c0eacSLiu Zhe 		//reopen the document and assert row height setting
200352c0eacSLiu Zhe 		XTextDocument assertDocument_doc=(XTextDocument)UnoRuntime.queryInterface(XTextDocument.class, app.loadDocument(Testspace.getPath("output/test.doc")));
201352c0eacSLiu Zhe 		XPropertySet xCursorProps_assert_doc = (XPropertySet) UnoRuntime.queryInterface(XPropertySet.class, assertDocument_doc.getText().createTextCursor());
202352c0eacSLiu Zhe 		//verify set property
203352c0eacSLiu Zhe 		assertEquals("assert character rotation ",(short)2700,xCursorProps_assert_doc.getPropertyValue("CharRotation"));
204352c0eacSLiu Zhe 		assertEquals("assert character rotation ",(short)300,xCursorProps_assert_doc.getPropertyValue("CharScaleWidth"));
205352c0eacSLiu Zhe 	}
206352c0eacSLiu Zhe }
207