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 .
19 package mod
._xmloff
.Chart
;
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
.beans
.XPropertySet
;
31 import com
.sun
.star
.chart
.XChartDocument
;
32 import com
.sun
.star
.document
.XExporter
;
33 import com
.sun
.star
.lang
.XMultiServiceFactory
;
34 import com
.sun
.star
.uno
.Any
;
35 import com
.sun
.star
.uno
.Exception
;
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.Chart.XMLContentExporter</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 XMLContentExporter
extends TestCase
{
64 XChartDocument xChartDoc
= null;
67 * New text document created.
70 protected void initialize( TestParameters tParam
, PrintWriter log
) {
72 // get a soffice factory object
73 SOfficeFactory SOF
= SOfficeFactory
.getFactory( tParam
.getMSF());
76 log
.println( "creating a chartdocument" );
77 xChartDoc
= SOF
.createChartDoc();
78 } catch ( Exception e
) {
79 // Some exception occurs.FAILED
80 e
.printStackTrace( log
);
81 throw new StatusException( "Couldn't create document", e
);
89 protected void cleanup( TestParameters tParam
, PrintWriter log
) {
90 if( xChartDoc
!=null ) {
91 log
.println( " closing xChartDoc" );
92 util
.DesktopTools
.closeDoc(xChartDoc
);
98 * Creating a Testenvironment for the interfaces to be tested.
99 * Creates an instance of the service
100 * <code>com.sun.star.comp.Chart.XMLContentExporter</code> with
101 * argument which is an implementation of <code>XDocumentHandler</code>
102 * and which can check if required tags and character data is
104 * The chart document is set as a source document for exporter
105 * created. A new 'main title' is set for chart. This made
106 * for checking if this title is successfully exported within
107 * the document content.
108 * Object relations created :
110 * <li> <code>'MediaDescriptor'</code> for
111 * {@link ifc.document._XFilter} interface </li>
112 * <li> <code>'XFilter.Checker'</code> for
113 * {@link ifc.document._XFilter} interface </li>
114 * <li> <code>'SourceDocument'</code> for
115 * {@link ifc.document._XExporter} interface </li>
119 protected synchronized TestEnvironment
createTestEnvironment(TestParameters tParam
, PrintWriter log
) {
121 XMultiServiceFactory xMSF
= tParam
.getMSF() ;
122 XInterface oObj
= null;
123 final String exportStr
= "XMLContentExporter" ;
125 FilterChecker filter
= new FilterChecker(log
);
126 Any arg
= new Any(new Type(XDocumentHandler
.class),filter
);
129 oObj
= (XInterface
) xMSF
.createInstanceWithArguments(
130 "com.sun.star.comp.Chart.XMLContentExporter",
132 XExporter xEx
= UnoRuntime
.queryInterface(XExporter
.class,oObj
);
133 xEx
.setSourceDocument(xChartDoc
);
135 Object oTitle
= xChartDoc
.getTitle() ;
136 XPropertySet xTitleProp
= UnoRuntime
.queryInterface
137 (XPropertySet
.class, oTitle
) ;
138 xTitleProp
.setPropertyValue("String", exportStr
) ;
139 } catch (com
.sun
.star
.uno
.Exception e
) {
140 e
.printStackTrace(log
) ;
141 throw new StatusException("Can't create component.", e
) ;
144 filter
.addTag(new XMLTools
.Tag("office:document-content")) ;
145 filter
.addTagEnclosed(new XMLTools
.Tag("office:body"),
146 new XMLTools
.Tag("office:document-content"));
147 filter
.addCharactersEnclosed(exportStr
,
148 new XMLTools
.Tag("chart:title")) ;
151 // create testobject here
152 log
.println( "creating a new environment" );
153 TestEnvironment tEnv
= new TestEnvironment( oObj
);
155 tEnv
.addObjRelation("MediaDescriptor", XMLTools
.createMediaDescriptor(
156 new String
[] {"FilterName"},
157 new Object
[] {"schart: StarOffice XML (Chart)"}));
158 tEnv
.addObjRelation("SourceDocument",xChartDoc
);
159 tEnv
.addObjRelation("XFilter.Checker", filter
) ;
160 log
.println("Implementation Name: "+util
.utils
.getImplName(oObj
));
167 * This class checks the XML for tags and data required and returns
168 * checking result to <code>XFilter</code> interface test. All
169 * the information about errors occurred in XML data is written
171 * @see ifc.document._XFilter
173 private class FilterChecker
extends XMLTools
.XMLChecker
174 implements ifc
.document
._XFilter
.FilterChecker
{
177 * Creates a class which will write information
178 * into log specified.
180 private FilterChecker(PrintWriter log
) {
184 * <code>_XFilter.FilterChecker</code> interface method
185 * which returns the result of XML checking.
186 * @return <code>true</code> if the XML data exported was
187 * valid (i.e. all necessary tags and character data exists),
188 * <code>false</code> if some errors occurred.
190 public boolean checkFilter() {