/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* 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 .
*/
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.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.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 concurrently.
*
* @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.
*/
@Override
protected void initialize(TestParameters tParam, PrintWriter log) throws Exception {
log.println("creating a drawdoc");
xDrawDoc = DrawTools.createDrawDoc(
tParam.getMSF());
}
/**
* Disposes the draw document created before
*/
@Override
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.
*