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
;
30 import com
.sun
.star
.document
.XDocumentPropertiesSupplier
;
31 import com
.sun
.star
.document
.XDocumentProperties
;
32 import com
.sun
.star
.document
.XExporter
;
33 import com
.sun
.star
.lang
.XMultiServiceFactory
;
34 import com
.sun
.star
.text
.XTextDocument
;
35 import com
.sun
.star
.uno
.Any
;
36 import com
.sun
.star
.uno
.Type
;
37 import com
.sun
.star
.uno
.UnoRuntime
;
38 import com
.sun
.star
.uno
.XInterface
;
39 import com
.sun
.star
.xml
.sax
.XDocumentHandler
;
42 * Test for object which is represented by service
43 * <code>com.sun.star.comp.Calc.XMLMetaExporter</code>. <p>
44 * Object implements the following interfaces :
46 * <li><code>com::sun::star::lang::XInitialization</code></li>
47 * <li><code>com::sun::star::document::ExportFilter</code></li>
48 * <li><code>com::sun::star::document::XFilter</code></li>
49 * <li><code>com::sun::star::document::XExporter</code></li>
50 * <li><code>com::sun::star::beans::XPropertySet</code></li>
52 * @see com.sun.star.lang.XInitialization
53 * @see com.sun.star.document.ExportFilter
54 * @see com.sun.star.document.XFilter
55 * @see com.sun.star.document.XExporter
56 * @see com.sun.star.beans.XPropertySet
57 * @see ifc.lang._XInitialization
58 * @see ifc.document._ExportFilter
59 * @see ifc.document._XFilter
60 * @see ifc.document._XExporter
61 * @see ifc.beans._XPropertySet
63 public class XMLMetaExporter
extends TestCase
{
65 XTextDocument xTextDoc
;
66 MetaFilterChecker Filter
;
69 * New text document created.
72 protected void initialize( TestParameters tParam
, PrintWriter log
) {
73 SOfficeFactory SOF
= SOfficeFactory
.getFactory( tParam
.getMSF() );
75 log
.println( "creating a textdocument" );
76 xTextDoc
= SOF
.createTextDoc( null );
78 } catch ( com
.sun
.star
.uno
.Exception e
) {
79 // Some exception occurs.FAILED
80 e
.printStackTrace( log
);
81 throw new StatusException( "Couldn't create document", e
);
86 * Document disposed here.
89 protected void cleanup( TestParameters tParam
, PrintWriter log
) {
90 log
.println( " disposing xTextDoc " );
91 util
.DesktopTools
.closeDoc(xTextDoc
);
95 * Creating a Testenvironment for the interfaces to be tested.
96 * Creates an instance of the service
97 * <code>com.sun.star.comp.Calc.XMLMetaExporter</code> with
98 * argument which is an implementation of <code>XDocumentHandler</code>
99 * and which can check if required tags and character data is
101 * The text document is set as a source document for exporter
102 * created. The 'Title' metadata property is set to a value. This made
103 * for checking if this property is successfully exported within
104 * the document metadata.
105 * Object relations created :
107 * <li> <code>'MediaDescriptor'</code> for
108 * {@link ifc.document._XFilter} interface </li>
109 * <li> <code>'XFilter.Checker'</code> for
110 * {@link ifc.document._XFilter} interface </li>
111 * <li> <code>'SourceDocument'</code> for
112 * {@link ifc.document._XExporter} interface </li>
116 public synchronized TestEnvironment createTestEnvironment
117 ( TestParameters tParam
, PrintWriter log
) throws StatusException
{
118 final String TITLE
= "Title for testing of XMLMetaExporter";
120 XMultiServiceFactory xMSF
= tParam
.getMSF() ;
121 XInterface oObj
= null;
123 Filter
= new MetaFilterChecker(log
);
124 Any arg
= new Any(new Type(XDocumentHandler
.class), Filter
);
127 oObj
= (XInterface
) xMSF
.createInstanceWithArguments(
128 "com.sun.star.comp.Writer.XMLMetaExporter",
130 XExporter xEx
= UnoRuntime
.queryInterface
131 (XExporter
.class,oObj
);
132 xEx
.setSourceDocument(xTextDoc
);
135 XDocumentPropertiesSupplier xPropSup
= UnoRuntime
.queryInterface
136 (XDocumentPropertiesSupplier
.class, xTextDoc
);
137 final XDocumentProperties xDocProps
= xPropSup
.getDocumentProperties();
138 xDocProps
.setTitle(TITLE
);
139 } catch (com
.sun
.star
.uno
.Exception e
) {
140 e
.printStackTrace(log
) ;
141 throw new StatusException("Can't create component.", e
) ;
144 // adding tags which must be contained in XML output
145 Filter
.addTag("office:document-meta");
146 Filter
.addTagEnclosed("office:meta", "office:document-meta");
147 Filter
.addCharactersEnclosed(TITLE
, "dc:title");
149 // create testobject here
150 log
.println( "creating a new environment" );
151 TestEnvironment tEnv
= new TestEnvironment( oObj
);
153 tEnv
.addObjRelation("MediaDescriptor", XMLTools
.createMediaDescriptor(
154 new String
[] {"FilterName"},
155 new Object
[] {"swriter: StarOffice XML (Writer)"}));
156 tEnv
.addObjRelation("SourceDocument", xTextDoc
);
157 tEnv
.addObjRelation("XFilter.Checker", Filter
);
162 * This class checks the XML for tags and data required and returns
163 * checking result to <code>XFilter</code> interface test. All
164 * the information about errors occurred in XML data is written
166 * @see ifc.document._XFilter
168 private class MetaFilterChecker
extends XMLTools
.XMLTagsChecker
169 implements ifc
.document
._XFilter
.FilterChecker
{
172 * Creates a class which will write information
173 * into log specified.
175 private MetaFilterChecker(PrintWriter log
) {
180 * <code>_XFilter.FilterChecker</code> interface method
181 * which returns the result of XML checking.
182 * @return <code>true</code> if the XML data exported was
183 * valid (i.e. all necessary tags and character data exists),
184 * <code>false</code> if some errors occurred.
186 public boolean checkFilter() {