xref: /AOO41X/main/qadevOOo/tests/java/mod/_xmloff/Impress/XMLStylesImporter.java (revision 1ecadb572e7010ff3b3382ad9bf179dbc6efadbb)
1 /*************************************************************************
2  *
3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4  *
5  * Copyright 2000, 2010 Oracle and/or its affiliates.
6  *
7  * OpenOffice.org - a multi-platform office productivity suite
8  *
9  * This file is part of OpenOffice.org.
10  *
11  * OpenOffice.org is free software: you can redistribute it and/or modify
12  * it under the terms of the GNU Lesser General Public License version 3
13  * only, as published by the Free Software Foundation.
14  *
15  * OpenOffice.org is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU Lesser General Public License version 3 for more details
19  * (a copy is included in the LICENSE file that accompanied this code).
20  *
21  * You should have received a copy of the GNU Lesser General Public License
22  * version 3 along with OpenOffice.org.  If not, see
23  * <http://www.openoffice.org/license.html>
24  * for a copy of the LGPLv3 License.
25  *
26  ************************************************************************/
27 
28 package mod._xmloff.Impress;
29 
30 import java.io.PrintWriter;
31 
32 import lib.StatusException;
33 import lib.TestCase;
34 import lib.TestEnvironment;
35 import lib.TestParameters;
36 import util.SOfficeFactory;
37 
38 import com.sun.star.container.XNameAccess;
39 import com.sun.star.lang.XComponent;
40 import com.sun.star.lang.XMultiServiceFactory;
41 import com.sun.star.style.XStyleFamiliesSupplier;
42 import com.sun.star.uno.UnoRuntime;
43 import com.sun.star.uno.XInterface;
44 
45 /**
46  * Test for object which is represented by service
47  * <code>com.sun.star.comp.Impress.XMLStylesImporter</code>. <p>
48  * Object implements the following interfaces :
49  * <ul>
50  *  <li><code>com::sun::star::lang::XInitialization</code></li>
51  *  <li><code>com::sun::star::document::XImporter</code></li>
52  *  <li><code>com::sun::star::document::XFilter</code></li>
53  *  <li><code>com::sun::star::document::ImportFilter</code></li>
54  *  <li><code>com::sun::star::beans::XPropertySet</code></li>
55  *  <li><code>com::sun::star::xml::sax::XDocumentHandler</code></li>
56 
57  * </ul>
58  * @see com.sun.star.lang.XInitialization
59  * @see com.sun.star.document.XImporter
60  * @see com.sun.star.document.XFilter
61  * @see com.sun.star.document.ImportFilter
62  * @see com.sun.star.beans.XPropertySet
63  * @see com.sun.star.xml.sax.XDocumentHandler
64  * @see ifc.lang._XInitialization
65  * @see ifc.document._XImporter
66  * @see ifc.document._XFilter
67  * @see ifc.document._XExporter
68  * @see ifc.beans._XPropertySet
69  * @see ifc.xml.sax._XDocumentHandler
70  */
71 public class XMLStylesImporter extends TestCase {
72     XComponent xImpressDoc = null;
73 
74     /**
75     * New spreadsheet document created.
76     */
77     protected void initialize( TestParameters tParam, PrintWriter log ) {
78 
79         // get a soffice factory object
80         SOfficeFactory SOF = SOfficeFactory.getFactory( (XMultiServiceFactory)tParam.getMSF());
81 
82         try {
83             log.println( "creating an impress document" );
84             xImpressDoc = SOF.createImpressDoc(null);;
85         } catch ( Exception e ) {
86             // Some exception occures.FAILED
87             e.printStackTrace( log );
88             throw new StatusException( "Couldn't create document", e );
89         }
90     }
91 
92     /**
93     * Spreadsheet document destroyed.
94     */
95     protected void cleanup( TestParameters tParam, PrintWriter log ) {
96         log.println( "    disposing document " );
97         xImpressDoc.dispose();
98     }
99 
100     /**
101     * Creating a Testenvironment for the interfaces to be tested.
102     * Creates an instance of the service
103     * <code>com.sun.star.comp.Impress.XMLStylesImporter</code><p>
104     *
105     * The Impress document is set as a target document for importer.
106     * Imported XML-data contains only style tags including tag
107     * with new style name.
108     * After import style names getting from target document is checked.
109     *     Object relations created :
110     * <ul>
111     *  <li> <code>'XDocumentHandler.XMLData'</code> for
112     *      {@link ifc.xml.sax._XDocumentHandler} interface </li>
113     *  <li> <code>'XDocumentHandler.ImportChecker'</code> for
114     *      {@link ifc.xml.sax._XDocumentHandler} interface </li>
115     *  <li> <code>'TargetDocument'</code> for
116     *      {@link ifc.document._XImporter} interface </li>
117     * </ul>
118     */
119     public synchronized TestEnvironment createTestEnvironment
120         (TestParameters tParam, PrintWriter log ) throws StatusException {
121 
122         XInterface oObj = null;
123         Object oInt = null ;
124         final String impValue = "XMLImporter_test" ;
125 
126         // creation of testobject here
127         // first we write what we are intend to do to log file
128         log.println( "creating a test environment" );
129 
130         XMultiServiceFactory xMSF = (XMultiServiceFactory)tParam.getMSF() ;
131 
132         try {
133             oInt = xMSF.createInstance
134                 ("com.sun.star.comp.Impress.XMLStylesImporter") ;
135 
136         } catch (com.sun.star.uno.Exception e) {
137             e.printStackTrace(log) ;
138             throw new StatusException("Can't create component.", e) ;
139         }
140 
141         oObj = (XInterface) oInt ;
142 
143         // create testobject here
144         log.println( "creating a new environment for Paragraph object" );
145         TestEnvironment tEnv = new TestEnvironment( oObj );
146 
147         // adding relation
148         tEnv.addObjRelation("TargetDocument", xImpressDoc) ;
149 
150         String[][] xml = new String[][] {
151             {"start", "office:document-styles",
152                 "xmlns:office", "CDATA", "http://openoffice.org/2000/office",
153                 "xmlns:style", "CDATA", "http://openoffice.org/2000/style",
154                 "xmlns:fo", "CDATA", "http://www.w3.org/1999/XSL/Format",
155                 "xmlns:table", "CDATA", "http://openoffice.org/2000/table"},
156             {"start", "office:styles"},
157             {"start", "style:style",
158                 "style:name", "CDATA", impValue,
159                 "style:family", "CDATA", "graphics",
160                 "style:parent-style-name", "CDATA", "standard"},
161             {"end", "style:style"},
162             {"end", "office:styles"},
163             {"end", "office:document-styles"}} ;
164 
165         // adding relation for XDocumentHandler
166         tEnv.addObjRelation("XDocumentHandler.XMLData", xml) ;
167         XNameAccess styles = null ;
168         try {
169             XStyleFamiliesSupplier sup = (XStyleFamiliesSupplier)
170                 UnoRuntime.queryInterface(XStyleFamiliesSupplier.class,
171                 xImpressDoc);
172             XNameAccess oStyleFamilies = sup.getStyleFamilies();
173             Object family = oStyleFamilies.getByName("graphics") ;
174             styles = (XNameAccess) UnoRuntime.queryInterface
175                 (XNameAccess.class, family) ;
176             log.println("Styles before:") ;
177             String[] names = styles.getElementNames() ;
178             for (int i = 0; i < names.length; i++) {
179                 log.println("  " + names[i]) ;
180             }
181         } catch (com.sun.star.uno.Exception e) {
182             e.printStackTrace(log) ;
183         }
184         final XNameAccess stylesF = styles ;
185         final PrintWriter logF = log ;
186         tEnv.addObjRelation("XDocumentHandler.ImportChecker",
187             new ifc.xml.sax._XDocumentHandler.ImportChecker() {
188                 public boolean checkImport() {
189                     logF.println("Styles after:") ;
190                     String[] names = stylesF.getElementNames() ;
191                     for (int i = 0; i < names.length; i++) {
192                         logF.println("  " + names[i]) ;
193                     }
194                     return stylesF.hasByName(impValue) ;
195                 }
196             }) ;
197 
198         return tEnv;
199     } // end of getTestEnvironment
200 
201 }
202 
203