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.Test; 29352c0eacSLiu Zhe import org.openoffice.test.common.FileUtil; 30352c0eacSLiu Zhe import org.openoffice.test.common.Testspace; 31352c0eacSLiu Zhe import org.openoffice.test.uno.UnoApp; 32352c0eacSLiu Zhe import com.sun.star.text.*; 33352c0eacSLiu Zhe import com.sun.star.beans.*; 34352c0eacSLiu Zhe import com.sun.star.frame.XStorable; 35352c0eacSLiu Zhe import com.sun.star.uno.UnoRuntime; 36352c0eacSLiu Zhe 37352c0eacSLiu Zhe public class CharacterLocale { 38352c0eacSLiu Zhe private static final UnoApp app = new UnoApp(); 39352c0eacSLiu Zhe XText xText = null; 40352c0eacSLiu Zhe 41352c0eacSLiu Zhe @Before setUp()42352c0eacSLiu Zhe public void setUp() throws Exception { 43352c0eacSLiu Zhe app.start(); 44352c0eacSLiu Zhe 45352c0eacSLiu Zhe } 46352c0eacSLiu Zhe 47352c0eacSLiu Zhe @After tearDown()48352c0eacSLiu Zhe public void tearDown() throws Exception { 49352c0eacSLiu Zhe app.close(); 50352c0eacSLiu Zhe } 51352c0eacSLiu Zhe 52352c0eacSLiu Zhe @Test testCharacterLocaleSetting()53352c0eacSLiu Zhe public void testCharacterLocaleSetting() throws Exception { 54352c0eacSLiu Zhe XTextDocument xTextDocument = (XTextDocument) UnoRuntime.queryInterface(XTextDocument.class, app.newDocument("swriter"));// new a text document 55352c0eacSLiu Zhe //save to odt 56352c0eacSLiu Zhe XStorable xStorable_odt = (XStorable) UnoRuntime.queryInterface(XStorable.class, xTextDocument); 57352c0eacSLiu Zhe PropertyValue[] aStoreProperties_odt = new PropertyValue[2]; 58352c0eacSLiu Zhe aStoreProperties_odt[0] = new PropertyValue(); 59352c0eacSLiu Zhe aStoreProperties_odt[1] = new PropertyValue(); 60352c0eacSLiu Zhe aStoreProperties_odt[0].Name = "Override"; 61352c0eacSLiu Zhe aStoreProperties_odt[0].Value = true; 62352c0eacSLiu Zhe aStoreProperties_odt[1].Name = "FilterName"; 63352c0eacSLiu Zhe aStoreProperties_odt[1].Value = "StarOffice XML (Writer)"; 64352c0eacSLiu Zhe xStorable_odt.storeToURL(FileUtil.getUrl(Testspace.getPath("output/test.odt")), aStoreProperties_odt); 65352c0eacSLiu Zhe //save to doc 66352c0eacSLiu Zhe XStorable xStorable_doc = (XStorable) UnoRuntime.queryInterface(XStorable.class, xTextDocument); 67352c0eacSLiu Zhe PropertyValue[] aStoreProperties_doc = new PropertyValue[2]; 68352c0eacSLiu Zhe aStoreProperties_doc[0] = new PropertyValue(); 69352c0eacSLiu Zhe aStoreProperties_doc[1] = new PropertyValue(); 70352c0eacSLiu Zhe aStoreProperties_doc[0].Name = "Override"; 71352c0eacSLiu Zhe aStoreProperties_doc[0].Value = true; 72352c0eacSLiu Zhe aStoreProperties_doc[1].Name = "FilterName"; 73352c0eacSLiu Zhe aStoreProperties_doc[1].Value = "MS Word 97"; 74352c0eacSLiu Zhe xStorable_doc.storeToURL(FileUtil.getUrl(Testspace.getPath("output/test.doc")), aStoreProperties_doc); 75352c0eacSLiu Zhe app.closeDocument(xTextDocument); 76352c0eacSLiu Zhe 77352c0eacSLiu Zhe //reopen the document and assert row height setting 78352c0eacSLiu Zhe XTextDocument assertDocument_odt=(XTextDocument)UnoRuntime.queryInterface(XTextDocument.class, app.loadDocument(Testspace.getPath("output/test.odt"))); 79352c0eacSLiu Zhe XPropertySet xCursorProps_assert_odt = (XPropertySet) UnoRuntime.queryInterface(XPropertySet.class, assertDocument_odt.getText().createTextCursor()); 80352c0eacSLiu Zhe //verify set property 81352c0eacSLiu Zhe Object charLocale_obj_odt=xCursorProps_assert_odt.getPropertyValue("CharLocale"); 82352c0eacSLiu Zhe com.sun.star.lang.Locale charLocale_odt=(com.sun.star.lang.Locale)UnoRuntime.queryInterface(com.sun.star.lang.Locale.class,charLocale_obj_odt); 83352c0eacSLiu Zhe 84352c0eacSLiu Zhe assertEquals("assert character language","en",charLocale_odt.Language); 85352c0eacSLiu Zhe assertEquals("assert character language","US",charLocale_odt.Country); 86352c0eacSLiu Zhe 87352c0eacSLiu Zhe //reopen the document and assert row height setting 88352c0eacSLiu Zhe XTextDocument assertDocument_doc=(XTextDocument)UnoRuntime.queryInterface(XTextDocument.class, app.loadDocument(Testspace.getPath("output/test.doc"))); 89352c0eacSLiu Zhe XPropertySet xCursorProps_assert_doc = (XPropertySet) UnoRuntime.queryInterface(XPropertySet.class, assertDocument_doc.getText().createTextCursor()); 90352c0eacSLiu Zhe //verify set property 91352c0eacSLiu Zhe Object charLocale_obj_doc=xCursorProps_assert_doc.getPropertyValue("CharLocale"); 92352c0eacSLiu Zhe com.sun.star.lang.Locale charLocale_doc=(com.sun.star.lang.Locale)UnoRuntime.queryInterface(com.sun.star.lang.Locale.class,charLocale_obj_doc); 93352c0eacSLiu Zhe 94352c0eacSLiu Zhe assertEquals("assert character language","en",charLocale_doc.Language); 95352c0eacSLiu Zhe assertEquals("assert character language","US",charLocale_doc.Country); 96352c0eacSLiu Zhe } 97352c0eacSLiu Zhe } 98