1*eba4d44aSLiu Zhe package fvt.uno.sw.paragraph; 2*eba4d44aSLiu Zhe 3*eba4d44aSLiu Zhe import static org.junit.Assert.*; 4*eba4d44aSLiu Zhe 5*eba4d44aSLiu Zhe import org.junit.After; 6*eba4d44aSLiu Zhe import org.junit.Before; 7*eba4d44aSLiu Zhe import org.junit.Test; 8*eba4d44aSLiu Zhe import org.openoffice.test.common.FileUtil; 9*eba4d44aSLiu Zhe import org.openoffice.test.common.Testspace; 10*eba4d44aSLiu Zhe import org.openoffice.test.uno.UnoApp; 11*eba4d44aSLiu Zhe 12*eba4d44aSLiu Zhe import com.sun.star.text.*; 13*eba4d44aSLiu Zhe import com.sun.star.beans.*; 14*eba4d44aSLiu Zhe import com.sun.star.container.XIndexAccess; 15*eba4d44aSLiu Zhe import com.sun.star.container.XIndexReplace; 16*eba4d44aSLiu Zhe import com.sun.star.frame.XStorable; 17*eba4d44aSLiu Zhe import com.sun.star.lang.XMultiServiceFactory; 18*eba4d44aSLiu Zhe import com.sun.star.uno.UnoRuntime; 19*eba4d44aSLiu Zhe 20*eba4d44aSLiu Zhe public class ParagraphNumberingAndBulletTabStop { 21*eba4d44aSLiu Zhe private static final UnoApp app = new UnoApp(); 22*eba4d44aSLiu Zhe XText xText = null; 23*eba4d44aSLiu Zhe 24*eba4d44aSLiu Zhe @Before 25*eba4d44aSLiu Zhe public void setUp() throws Exception { 26*eba4d44aSLiu Zhe app.start(); 27*eba4d44aSLiu Zhe 28*eba4d44aSLiu Zhe } 29*eba4d44aSLiu Zhe 30*eba4d44aSLiu Zhe @After 31*eba4d44aSLiu Zhe public void tearDown() throws Exception { 32*eba4d44aSLiu Zhe app.close(); 33*eba4d44aSLiu Zhe } 34*eba4d44aSLiu Zhe /* 35*eba4d44aSLiu Zhe * test paragraph background color 36*eba4d44aSLiu Zhe * 1.new a text document 37*eba4d44aSLiu Zhe * 2.insert some text 38*eba4d44aSLiu Zhe * 3.set paragraph numbering tab stop position 39*eba4d44aSLiu Zhe * 4.save and close the document 40*eba4d44aSLiu Zhe * 5.reload the saved document and check the paragraph numbering tab stop position 41*eba4d44aSLiu Zhe */ 42*eba4d44aSLiu Zhe @Test 43*eba4d44aSLiu Zhe public void testNumberingBulletTabStop() throws Exception { 44*eba4d44aSLiu Zhe 45*eba4d44aSLiu Zhe XTextDocument xTextDocument = (XTextDocument) UnoRuntime.queryInterface(XTextDocument.class, app.newDocument("swriter"));// new a text document 46*eba4d44aSLiu Zhe xText = xTextDocument.getText(); 47*eba4d44aSLiu Zhe xText.setString("we are Chinese,they are American.we are all living in one earth!Hello,world!Hello,world!Hello,world!Hello,world!Hello,world!Hello,world!" + 48*eba4d44aSLiu Zhe "Hello,world!Hello,world!"); 49*eba4d44aSLiu Zhe //create cursor to select paragraph and formating paragraph 50*eba4d44aSLiu Zhe XTextCursor xTextCursor = xText.createTextCursor(); 51*eba4d44aSLiu Zhe //create paragraph property set 52*eba4d44aSLiu Zhe XPropertySet xTextProps = (XPropertySet) UnoRuntime.queryInterface(XPropertySet.class, xTextCursor); 53*eba4d44aSLiu Zhe //create document service factory 54*eba4d44aSLiu Zhe XMultiServiceFactory xWriterFactory= (XMultiServiceFactory) UnoRuntime.queryInterface(XMultiServiceFactory.class, xTextDocument); 55*eba4d44aSLiu Zhe //set numbering character 56*eba4d44aSLiu Zhe XIndexAccess xNumRule = (XIndexAccess) UnoRuntime.queryInterface(XIndexAccess.class,xWriterFactory.createInstance("com.sun.star.text.NumberingRules")); 57*eba4d44aSLiu Zhe PropertyValue[] propsRule = {new PropertyValue()}; 58*eba4d44aSLiu Zhe propsRule[0].Name = "ListtabStopPosition"; 59*eba4d44aSLiu Zhe propsRule[0].Value = 5001; 60*eba4d44aSLiu Zhe XIndexReplace xReplaceRule = (XIndexReplace) UnoRuntime.queryInterface(XIndexReplace.class, xNumRule); 61*eba4d44aSLiu Zhe xReplaceRule.replaceByIndex(0, propsRule); 62*eba4d44aSLiu Zhe //set paragraph numbering and bullet character 63*eba4d44aSLiu Zhe xTextProps.setPropertyValue("NumberingRules", xNumRule); 64*eba4d44aSLiu Zhe //save to odt 65*eba4d44aSLiu Zhe XStorable xStorable_odt = (XStorable) UnoRuntime.queryInterface(XStorable.class, xTextDocument); 66*eba4d44aSLiu Zhe PropertyValue[] aStoreProperties_odt = new PropertyValue[2]; 67*eba4d44aSLiu Zhe aStoreProperties_odt[0] = new PropertyValue(); 68*eba4d44aSLiu Zhe aStoreProperties_odt[1] = new PropertyValue(); 69*eba4d44aSLiu Zhe aStoreProperties_odt[0].Name = "Override"; 70*eba4d44aSLiu Zhe aStoreProperties_odt[0].Value = true; 71*eba4d44aSLiu Zhe aStoreProperties_odt[1].Name = "FilterName"; 72*eba4d44aSLiu Zhe aStoreProperties_odt[1].Value = "writer8"; 73*eba4d44aSLiu Zhe xStorable_odt.storeToURL(FileUtil.getUrl(Testspace.getPath("output/test.odt")), aStoreProperties_odt); 74*eba4d44aSLiu Zhe //save to doc 75*eba4d44aSLiu Zhe XStorable xStorable_doc = (XStorable) UnoRuntime.queryInterface(XStorable.class, xTextDocument); 76*eba4d44aSLiu Zhe PropertyValue[] aStoreProperties_doc = new PropertyValue[2]; 77*eba4d44aSLiu Zhe aStoreProperties_doc[0] = new PropertyValue(); 78*eba4d44aSLiu Zhe aStoreProperties_doc[1] = new PropertyValue(); 79*eba4d44aSLiu Zhe aStoreProperties_doc[0].Name = "Override"; 80*eba4d44aSLiu Zhe aStoreProperties_doc[0].Value = true; 81*eba4d44aSLiu Zhe aStoreProperties_doc[1].Name = "FilterName"; 82*eba4d44aSLiu Zhe aStoreProperties_doc[1].Value = "MS Word 97"; 83*eba4d44aSLiu Zhe xStorable_doc.storeToURL(FileUtil.getUrl(Testspace.getPath("output/test.doc")), aStoreProperties_doc); 84*eba4d44aSLiu Zhe app.closeDocument(xTextDocument); 85*eba4d44aSLiu Zhe 86*eba4d44aSLiu Zhe //reopen the document 87*eba4d44aSLiu Zhe XTextDocument assertDocument_odt=(XTextDocument)UnoRuntime.queryInterface(XTextDocument.class, app.loadDocument(Testspace.getPath("output/test.odt"))); 88*eba4d44aSLiu Zhe XPropertySet xCursorProps_Assert_odt = (XPropertySet) UnoRuntime.queryInterface(XPropertySet.class, assertDocument_odt.getText().createTextCursor()); 89*eba4d44aSLiu Zhe XIndexAccess xNumRule_assert_odt = (XIndexAccess) UnoRuntime.queryInterface(XIndexAccess.class, xCursorProps_Assert_odt.getPropertyValue("NumberingRules")); 90*eba4d44aSLiu Zhe XIndexReplace xReplaceRule_assert_odt = (XIndexReplace) UnoRuntime.queryInterface(XIndexReplace.class, xNumRule_assert_odt); 91*eba4d44aSLiu Zhe PropertyValue[] propsRule_assert_odt=(PropertyValue[]) UnoRuntime.queryInterface(PropertyValue[].class,xReplaceRule_assert_odt.getByIndex(0)); 92*eba4d44aSLiu Zhe //verify paragraph numbering and bullet alignment 93*eba4d44aSLiu Zhe assertEquals("assert numbering and bullet","ListtabStopPosition",propsRule_assert_odt[8].Name); 94*eba4d44aSLiu Zhe assertEquals("assert numbering and bullet",5001,propsRule_assert_odt[8].Value); 95*eba4d44aSLiu Zhe 96*eba4d44aSLiu Zhe //reopen the document 97*eba4d44aSLiu Zhe XTextDocument assertDocument_doc=(XTextDocument)UnoRuntime.queryInterface(XTextDocument.class, app.loadDocument(Testspace.getPath("output/test.doc"))); 98*eba4d44aSLiu Zhe XPropertySet xCursorProps_Assert_doc = (XPropertySet) UnoRuntime.queryInterface(XPropertySet.class, assertDocument_doc.getText().createTextCursor()); 99*eba4d44aSLiu Zhe XIndexAccess xNumRule_assert_doc = (XIndexAccess) UnoRuntime.queryInterface(XIndexAccess.class, xCursorProps_Assert_doc.getPropertyValue("NumberingRules")); 100*eba4d44aSLiu Zhe PropertyValue[] propsRule_assert_doc=(PropertyValue[]) UnoRuntime.queryInterface(PropertyValue[].class,xNumRule_assert_doc.getByIndex(0)); 101*eba4d44aSLiu Zhe //verify paragraph numbering and bullet alignment 102*eba4d44aSLiu Zhe assertEquals("assert numbering and bullet","ListtabStopPosition",propsRule_assert_doc[8].Name); 103*eba4d44aSLiu Zhe assertEquals("assert numbering and bullet",5001,propsRule_assert_doc[8].Value); 104*eba4d44aSLiu Zhe } 105*eba4d44aSLiu Zhe } 106