svx: prefix members of SdrUnoObj
[LibreOffice.git] / qadevOOo / tests / java / mod / _xmloff / Chart / XMLExporter.java
blob6a4eda29210b64ff695473f2df7e7fd9de7cffc5
1 /*
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.TestCase;
24 import lib.TestEnvironment;
25 import lib.TestParameters;
26 import util.SOfficeFactory;
27 import util.XMLTools;
29 import com.sun.star.beans.XPropertySet;
30 import com.sun.star.chart.XChartDocument;
31 import com.sun.star.document.XExporter;
32 import com.sun.star.lang.XMultiServiceFactory;
33 import com.sun.star.uno.Any;
34 import com.sun.star.uno.Exception;
35 import com.sun.star.uno.Type;
36 import com.sun.star.uno.UnoRuntime;
37 import com.sun.star.uno.XInterface;
38 import com.sun.star.xml.sax.XDocumentHandler;
40 /**
41 * Test for object which is represented by service
42 * <code>com.sun.star.comp.Chart.XMLExporter</code>. <p>
43 * Object implements the following interfaces :
44 * <ul>
45 * <li><code>com::sun::star::lang::XInitialization</code></li>
46 * <li><code>com::sun::star::document::ExportFilter</code></li>
47 * <li><code>com::sun::star::document::XFilter</code></li>
48 * <li><code>com::sun::star::document::XExporter</code></li>
49 * <li><code>com::sun::star::beans::XPropertySet</code></li>
50 * </ul>
51 * @see com.sun.star.lang.XInitialization
52 * @see com.sun.star.document.ExportFilter
53 * @see com.sun.star.document.XFilter
54 * @see com.sun.star.document.XExporter
55 * @see com.sun.star.beans.XPropertySet
56 * @see ifc.lang._XInitialization
57 * @see ifc.document._ExportFilter
58 * @see ifc.document._XFilter
59 * @see ifc.document._XExporter
60 * @see ifc.beans._XPropertySet
62 public class XMLExporter extends TestCase {
63 XChartDocument xChartDoc = null;
65 /**
66 * New text document created.
68 @Override
69 protected void initialize( TestParameters tParam, PrintWriter log ) throws Exception {
71 // get a soffice factory object
72 SOfficeFactory SOF = SOfficeFactory.getFactory( tParam.getMSF());
74 log.println( "creating a chartdocument" );
75 xChartDoc = SOF.createChartDoc();
78 /**
79 * Close document
81 @Override
82 protected void cleanup( TestParameters tParam, PrintWriter log ) {
83 if( xChartDoc!=null ) {
84 log.println( " closing xChartDoc" );
85 util.DesktopTools.closeDoc(xChartDoc);
86 xChartDoc = null;
90 /**
91 * Creating a TestEnvironment for the interfaces to be tested.
92 * Creates an instance of the service
93 * <code>com.sun.star.comp.Chart.XMLExporter</code> with
94 * argument which is an implementation of <code>XDocumentHandler</code>
95 * and which can check if required tags and character data is
96 * exported. <p>
97 * The chart document is set as a source document for exporter
98 * created. A new 'main title' is set for chart. This made
99 * for checking if this title is successfully exported within
100 * the document content.
101 * Object relations created :
102 * <ul>
103 * <li> <code>'MediaDescriptor'</code> for
104 * {@link ifc.document._XFilter} interface </li>
105 * <li> <code>'XFilter.Checker'</code> for
106 * {@link ifc.document._XFilter} interface </li>
107 * <li> <code>'SourceDocument'</code> for
108 * {@link ifc.document._XExporter} interface </li>
109 * </ul>
111 @Override
112 public TestEnvironment createTestEnvironment
113 (TestParameters tParam, PrintWriter log ) throws Exception {
115 XMultiServiceFactory xMSF = tParam.getMSF() ;
116 XInterface oObj = null;
117 final String exportStr = "XMLExporter test." ;
119 FilterChecker filter = new FilterChecker(log);
120 Any arg = new Any(new Type(XDocumentHandler.class),filter);
122 oObj = (XInterface) xMSF.createInstanceWithArguments(
123 "com.sun.star.comp.Chart.XMLExporter", new Object[] {arg});
124 XExporter xEx = UnoRuntime.queryInterface(XExporter.class,oObj);
125 xEx.setSourceDocument(xChartDoc);
127 Object oTitle = xChartDoc.getTitle() ;
128 XPropertySet xTitleProp = UnoRuntime.queryInterface
129 (XPropertySet.class, oTitle) ;
130 xTitleProp.setPropertyValue("String", exportStr) ;
132 filter.addTag(new XMLTools.Tag("office:document")) ;
133 filter.addTagEnclosed(new XMLTools.Tag("office:meta"),
134 new XMLTools.Tag("office:document"));
135 filter.addTagEnclosed(new XMLTools.Tag("office:body"),
136 new XMLTools.Tag("office:document"));
137 filter.addCharactersEnclosed(exportStr,
138 new XMLTools.Tag("chart:title")) ;
141 // create testobject here
142 log.println( "creating a new environment" );
143 TestEnvironment tEnv = new TestEnvironment( oObj );
145 tEnv.addObjRelation("MediaDescriptor", XMLTools.createMediaDescriptor(
146 new String[] {"FilterName"},
147 new Object[] {"schart: StarOffice XML (Chart)"}));
148 tEnv.addObjRelation("SourceDocument",xChartDoc);
149 tEnv.addObjRelation("XFilter.Checker", filter) ;
150 log.println("Implementation Name: "+util.utils.getImplName(oObj));
152 return tEnv;
157 * This class checks the XML for tags and data required and returns
158 * checking result to <code>XFilter</code> interface test. All
159 * the information about errors occurred in XML data is written
160 * to log specified.
161 * @see ifc.document._XFilter
163 private class FilterChecker extends XMLTools.XMLChecker
164 implements ifc.document._XFilter.FilterChecker {
167 * Creates a class which will write information
168 * into log specified.
170 private FilterChecker(PrintWriter log) {
171 super(log, true) ;
174 * <code>_XFilter.FilterChecker</code> interface method
175 * which returns the result of XML checking.
176 * @return <code>true</code> if the XML data exported was
177 * valid (i.e. all necessary tags and character data exists),
178 * <code>false</code> if some errors occurred.
180 public boolean checkFilter() {
181 return check() ;