2 * This file is part of the LibreOffice project.
4 * This Source Code Form is subject to the terms of the Mozilla Public
5 * License, v. 2.0. If a copy of the MPL was not distributed with this
6 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 * This file incorporates work covered by the following license notice:
10 * Licensed to the Apache Software Foundation (ASF) under one or more
11 * contributor license agreements. See the NOTICE file distributed
12 * with this work for additional information regarding copyright
13 * ownership. The ASF licenses this file to you under the Apache
14 * License, Version 2.0 (the "License"); you may not use this file
15 * except in compliance with the License. You may obtain a copy of
16 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
21 import java
.io
.PrintWriter
;
23 import lib
.StatusException
;
25 import lib
.TestEnvironment
;
26 import lib
.TestParameters
;
27 import util
.SOfficeFactory
;
29 import com
.sun
.star
.beans
.XPropertySet
;
30 import com
.sun
.star
.lang
.XMultiServiceFactory
;
31 import com
.sun
.star
.text
.XFootnotesSupplier
;
32 import com
.sun
.star
.text
.XTextDocument
;
33 import com
.sun
.star
.uno
.UnoRuntime
;
34 import com
.sun
.star
.uno
.XInterface
;
37 * Test for object which is represented by service
38 * <code>com.sun.star.comp.Writer.XMLStylesImporter</code>. <p>
39 * Object implements the following interfaces :
41 * <li><code>com::sun::star::lang::XInitialization</code></li>
42 * <li><code>com::sun::star::document::XImporter</code></li>
43 * <li><code>com::sun::star::document::XFilter</code></li>
44 * <li><code>com::sun::star::document::ImportFilter</code></li>
45 * <li><code>com::sun::star::beans::XPropertySet</code></li>
46 * <li><code>com::sun::star::xml::sax::XDocumentHandler</code></li>
49 * @see com.sun.star.lang.XInitialization
50 * @see com.sun.star.document.XImporter
51 * @see com.sun.star.document.XFilter
52 * @see com.sun.star.document.ImportFilter
53 * @see com.sun.star.beans.XPropertySet
54 * @see com.sun.star.xml.sax.XDocumentHandler
55 * @see ifc.lang._XInitialization
56 * @see ifc.document._XImporter
57 * @see ifc.document._XFilter
58 * @see ifc.document._XExporter
59 * @see ifc.beans._XPropertySet
60 * @see ifc.xml.sax._XDocumentHandler
62 public class XMLStylesImporter
extends TestCase
{
63 XTextDocument xTextDoc
;
66 * New text document created.
69 protected void initialize( TestParameters tParam
, PrintWriter log
) {
70 SOfficeFactory SOF
= SOfficeFactory
.getFactory( tParam
.getMSF() );
73 log
.println( "creating a textdocument" );
74 xTextDoc
= SOF
.createTextDoc( null );
75 } catch ( com
.sun
.star
.uno
.Exception e
) {
76 // Some exception occurs.FAILED
77 e
.printStackTrace( log
);
78 throw new StatusException( "Couldn't create document", e
);
83 * Text document destroyed.
86 protected void cleanup( TestParameters tParam
, PrintWriter log
) {
87 log
.println( " disposing xTextDoc " );
88 util
.DesktopTools
.closeDoc(xTextDoc
);
92 * Creating a Testenvironment for the interfaces to be tested.
93 * Creates an instance of the service
94 * <code>com.sun.star.comp.Writer.XMLStylesImporter</code><p>
96 * The text document is set as a target document for importer.
97 * Imported XML-data contains only style tags including
98 * title tag with test prefix.
99 * After import prefixes getting from target document is checked.
100 * Object relations created :
102 * <li> <code>'XDocumentHandler.XMLData'</code> for
103 * {@link ifc.xml.sax._XDocumentHandler} interface </li>
104 * <li> <code>'XDocumentHandler.ImportChecker'</code> for
105 * {@link ifc.xml.sax._XDocumentHandler} interface </li>
106 * <li> <code>'TargetDocument'</code> for
107 * {@link ifc.document._XImporter} interface </li>
111 public synchronized TestEnvironment
createTestEnvironment( TestParameters tParam
,
113 throws StatusException
{
115 XInterface oObj
= null;
117 final String impPrefix
= "Prefix" ;
119 // creation of testobject here
120 // first we write what we are intend to do to log file
121 log
.println( "creating a test environment" );
123 XMultiServiceFactory xMSF
= tParam
.getMSF() ;
126 oInt
= xMSF
.createInstance
127 ("com.sun.star.comp.Writer.XMLStylesImporter") ;
129 } catch (com
.sun
.star
.uno
.Exception e
) {
130 e
.printStackTrace(log
) ;
131 throw new StatusException("Can't create component.", e
) ;
134 oObj
= (XInterface
) oInt
;
136 // create testobject here
137 log
.println( "creating a new environment for Paragraph object" );
138 TestEnvironment tEnv
= new TestEnvironment( oObj
);
141 tEnv
.addObjRelation("TargetDocument", xTextDoc
) ;
143 // adding relation for XDocumentHandler
144 String
[][] xml
= new String
[][] {
145 {"start", "office:document-styles",
146 "xmlns:office", "CDATA", "http://openoffice.org/2000/office",
147 "xmlns:style", "CDATA", "http://openoffice.org/2000/style",
148 "xmlns:text", "CDATA", "http://openoffice.org/2000/text"
150 {"start", "office:styles"},
151 {"start", "text:footnotes-configuration",
152 "style:num-prefix", "CDATA", impPrefix
},
153 {"end", "text:footnotes-configuration"},
154 {"end", "office:styles"},
155 {"end", "office:document-styles"}} ;
157 tEnv
.addObjRelation("XDocumentHandler.XMLData", xml
) ;
159 XFootnotesSupplier supp
= UnoRuntime
.queryInterface
160 (XFootnotesSupplier
.class, xTextDoc
);
161 final XPropertySet set
= supp
.getFootnoteSettings();
162 final PrintWriter logF
= log
;
164 tEnv
.addObjRelation("XDocumentHandler.ImportChecker",
165 new ifc
.xml
.sax
._XDocumentHandler
.ImportChecker() {
166 public boolean checkImport() {
168 String prefix
= (String
) set
.getPropertyValue("Prefix");
169 logF
.println("Prefix returned = '" + prefix
+ "'") ;
170 return impPrefix
.equals(prefix
) ;
171 } catch (com
.sun
.star
.uno
.Exception e
) {
172 logF
.println("Exception occurred while checking filter :") ;
173 e
.printStackTrace(logF
) ;
180 } // finish method getTestEnvironment