/**************************************************************
*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*
*************************************************************/
package mod._svx;
import com.sun.star.beans.XPropertySet;
import com.sun.star.document.XExporter;
import com.sun.star.drawing.XShape;
import com.sun.star.lang.XComponent;
import com.sun.star.lang.XMultiServiceFactory;
import com.sun.star.ucb.XSimpleFileAccess;
import com.sun.star.uno.UnoRuntime;
import com.sun.star.uno.XInterface;
import com.sun.star.util.URL;
import java.io.PrintWriter;
import lib.StatusException;
import lib.TestCase;
import lib.TestEnvironment;
import lib.TestParameters;
import util.DrawTools;
import util.SOfficeFactory;
import util.XMLTools;
/**
* Test for object which is represented by service
* com.sun.star.drawing.GraphicExportFilter
.
* * Object implements the following interfaces : *
com::sun::star::document::XFilter
com::sun::star::document::XMimeTypeInfo
com::sun::star::document::XExporter
* * The following files used by this test : *
*
* This object test is NOT designed to be run in several
* threads concurently.
*
* @see com.sun.star.document.XFilter
* @see com.sun.star.document.XMimeTypeInfo
* @see com.sun.star.document.XExporter
* @see ifc.document._XFilter
* @see ifc.document._XMimeTypeInfo
* @see ifc.document._XExporter
*/
public class GraphicExporter extends TestCase {
static XComponent xDrawDoc;
/**
* Creates a new draw document.
*/
protected void initialize(TestParameters tParam, PrintWriter log) {
log.println("creating a drawdoc");
xDrawDoc = DrawTools.createDrawDoc(
(XMultiServiceFactory) tParam.getMSF());
}
/**
* Disposes the draw document created before
*/
protected void cleanup(TestParameters tParam, PrintWriter log) {
log.println(" disposing xDrawDoc ");
util.DesktopTools.closeDoc(xDrawDoc);
}
/**
* Creating a Testenvironment for the interfaces to be tested.
* Creates an instance of the service
* com.sun.star.drawing.GraphicExportFilter
as
* a tested component. Then a GraphicObjectShape
* instance is added into the document and its image is obtained
* from JPEG file. This shape content is intended to be exported.
*
* Object relations created :
*
'MediaDescriptor'
for
* {@link ifc.document._XFilter} :
* descriptor which contains target file name in
* the temporary directory, file type (JPEG)
* 'XFilter.Checker'
for
* {@link ifc.document._XFilter} :
* checks if the target file exists.
* In the case if SOffice is started in 'Hide' mode
* ('soapi.test.hidewindows' test parameter is 'true')
* the checker always returns true
.
* 'SourceDocument'
for
* {@link ifc.document._XExporter} :
* the GraphicObjectShape
component
* with loaded image.
*