1 package testcase.uno.sw.puretext;
2 
3 import static org.junit.Assert.*;
4 
5 import org.junit.After;
6 import org.junit.Before;
7 import org.junit.Ignore;
8 import org.junit.Test;
9 import org.openoffice.test.common.FileUtil;
10 import org.openoffice.test.common.Testspace;
11 import org.openoffice.test.uno.UnoApp;
12 import com.sun.star.text.*;
13 import com.sun.star.beans.*;
14 import com.sun.star.frame.XStorable;
15 import com.sun.star.uno.UnoRuntime;
16 
17 public class CharacterHyperlink {
18 	private static final UnoApp app = new UnoApp();
19 	XText xText = null;
20 
21 	@Before
22 	public void setUp() throws Exception {
23 		app.start();
24 
25 	}
26 
27 	@After
28 	public void tearDown() throws Exception {
29 		//app.close();
30 	}
31 
32 	@Test@Ignore //bug120676_the hyperlink name lost and hyperlinktarget change to "_blank" when save to doc
33 	public void testCharacterBackHyperlinkSetting() throws Exception {
34 		XTextDocument xTextDocument = (XTextDocument) UnoRuntime.queryInterface(XTextDocument.class, app.newDocument("swriter"));// new a text document
35 		xText = xTextDocument.getText();
36 		xText.setString("we are Chinese,they are American.We are all living in one earth!"
37 				+ "and we all love our home very much!!!");
38 		// create text cursor for selecting and formatting text
39 		XTextCursor xTextCursor = xText.createTextCursor();
40 		XPropertySet xCursorProps = (XPropertySet) UnoRuntime.queryInterface(XPropertySet.class, xTextCursor);
41 		xTextCursor.gotoStart(false);
42 		xTextCursor.goRight((short) 102, true);
43 		xCursorProps.setPropertyValue("HyperLinkURL", FileUtil.getUrl(Testspace.prepareData("uno/Desert.jpg")));
44 		xCursorProps.setPropertyValue("HyperLinkTarget","picture");
45 		xCursorProps.setPropertyValue("HyperLinkName","testCharacterHyperlink");
46 
47 		//save to odt
48 		XStorable xStorable_odt = (XStorable) UnoRuntime.queryInterface(XStorable.class, xTextDocument);
49 		PropertyValue[] aStoreProperties_odt = new PropertyValue[2];
50 		aStoreProperties_odt[0] = new PropertyValue();
51 		aStoreProperties_odt[1] = new PropertyValue();
52 		aStoreProperties_odt[0].Name = "Override";
53 		aStoreProperties_odt[0].Value = true;
54 		aStoreProperties_odt[1].Name = "FilterName";
55 		aStoreProperties_odt[1].Value = "StarOffice XML (Writer)";
56 		xStorable_odt.storeToURL(FileUtil.getUrl(Testspace.getPath("output/test.odt")), aStoreProperties_odt);
57 		//save to doc
58 		XStorable xStorable_doc = (XStorable) UnoRuntime.queryInterface(XStorable.class, xTextDocument);
59 		PropertyValue[] aStoreProperties_doc = new PropertyValue[2];
60 		aStoreProperties_doc[0] = new PropertyValue();
61 		aStoreProperties_doc[1] = new PropertyValue();
62 		aStoreProperties_doc[0].Name = "Override";
63 		aStoreProperties_doc[0].Value = true;
64 		aStoreProperties_doc[1].Name = "FilterName";
65 		aStoreProperties_doc[1].Value = "MS Word 97";
66 		xStorable_doc.storeToURL(FileUtil.getUrl(Testspace.getPath("output/test.doc")), aStoreProperties_doc);
67 		app.closeDocument(xTextDocument);
68 
69 		//reopen the document and assert row height setting
70 		XTextDocument assertDocument_odt=(XTextDocument)UnoRuntime.queryInterface(XTextDocument.class, app.loadDocument(Testspace.getPath("output/test.odt")));
71 		XPropertySet xCursorProps_assert_odt = (XPropertySet) UnoRuntime.queryInterface(XPropertySet.class, assertDocument_odt.getText().createTextCursor());
72 		//verify set property
73 		assertEquals("assert character hyperlink URL",FileUtil.getUrl(Testspace.prepareData("uno/Desert.jpg")),xCursorProps_assert_odt.getPropertyValue("HyperLinkURL"));
74 		assertEquals("assert character hyperlink target name","picture",xCursorProps_assert_odt.getPropertyValue("HyperLinkTarget"));
75 		assertEquals("assert character hyperlink name","testCharacterHyperlink",xCursorProps_assert_odt.getPropertyValue("HyperLinkName"));
76 
77 		//reopen the document and assert row height setting
78 		XTextDocument assertDocument_doc=(XTextDocument)UnoRuntime.queryInterface(XTextDocument.class, app.loadDocument(Testspace.getPath("output/test.doc")));
79 		XPropertySet xCursorProps_assert_doc = (XPropertySet) UnoRuntime.queryInterface(XPropertySet.class, assertDocument_doc.getText().createTextCursor());
80 		//verify set property
81 		assertEquals("assert character hyperlink URL",FileUtil.getUrl(Testspace.prepareData("uno/Desert.jpg")),xCursorProps_assert_doc.getPropertyValue("HyperLinkURL"));
82 		assertEquals("assert character hyperlink target name","picture",xCursorProps_assert_doc.getPropertyValue("HyperLinkTarget"));
83 		assertEquals("assert character hyperlink name","testCharacterHyperlink",xCursorProps_assert_doc.getPropertyValue("HyperLinkName"));
84 	}
85 }
86