/**************************************************************
*
* 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 ifc.document;
import com.sun.star.io.IOException;
import lib.MultiMethodTest;
import lib.Status;
import lib.StatusException;
import util.utils;
import com.sun.star.beans.PropertyValue;
import com.sun.star.document.XDocumentInsertable;
import com.sun.star.text.XTextRange;
import com.sun.star.uno.UnoRuntime;
/**
* Testing com.sun.star.document.XDocumentInsertable
* interface methods :
*
insertDocumentFromURL()
* This test needs the following object relations : *
'XDocumentInsertable.Checker'
* (of type _XDocumentInsertable.InsertChecker
)
* optional :
* relation for checking if document was inserted properly and
* for obtaining document file name. For details see the class
* description. If the relation doesn't exist default document
* name is used, and XTextRange
interface of
* component is used for checking.* The following predefined files needed to complete the test: *
XDocumentInsertable.sxw
: StarWriter document
* which content started with 'XDocumentInsertable test.' string.
* The file is needed if no other file name specified by relation.
* * Test is NOT multithread compilant.
* @see com.sun.star.document.XDocumentInsertable
*/
public class _XDocumentInsertable extends MultiMethodTest {
public XDocumentInsertable oObj = null;
protected XTextRange range = null ;
protected static final String defaultFileName = "XDocumentInsertable.sxw" ;
protected InsertChecker checker = null ;
protected String fileName = defaultFileName ;
/**
* Abstract class for relation passing. It must check if
* document was inserted successfully and can specify its
* own document name to be inserted.
*/
public static abstract class InsertChecker {
/**
* Must be overriden to check if document was
* successfully inserted.
* @return true
if document was inserted.
*/
public abstract boolean isInserted() ;
/**
* Can be overriden to specify different than default
* document name. This document must be situated in
* the test document disrectory, and its name must
* be specified relational to this directory. By
* default 'XDocumentInsertable.swx' file name returned.
* @return File name of the document to be inserted.
*/
public String getFileNameToInsert() {
return defaultFileName ;
}
}
/**
* Retrieves object relation. If the relation is not found
* then the object tested is tried to query XTextRange
* interface for testing. If the relation is found then document name
* for testing is retrieved, else the default one is used.
*
* @throws StatusException If neither relation found nor
* XTextRange
interface is queried.
*/
public void before() {
checker = (InsertChecker)
tEnv.getObjRelation("XDocumentInsertable.Checker") ;
if (checker == null) {
log.println("Relaion not found, trying to query for "+
"XTextRange ...") ;
range = (XTextRange)
UnoRuntime.queryInterface (XTextRange.class, oObj) ;
if (range == null) {
log.println("XTextRange isn't supported by the component.");
throw new StatusException(Status.failed
("XTextRange isn't supported and relation not found")) ;
}
} else {
fileName = checker.getFileNameToInsert();
}
}
/**
* Tries to insert document from URL specified by relation or
* from default URL. If no relation was passed, text range is
* checked for existance of loaded document content. In case
* if relation was found, then its isInserted
* method is used to check insertion.
* A Second test uses an invalid URL and checks for correct exceptions. * * Has OK status if at first insertion was completed successfully * and no exceptions were thrown and as second a expected excption was thrown.
*/ public void _insertDocumentFromURL() { boolean result = true ; try { PropertyValue [] szEmptyArgs = new PropertyValue [0]; String docURL = utils.getFullTestURL(fileName) ; log.println("Inserting document from URL '" + docURL + "'"); oObj.insertDocumentFromURL(docURL, szEmptyArgs); if (checker == null) { log.println("Checker is not specified, testing through "+ "XTextRange ...") ; String text = range.getString() ; log.println("Document text :\n" + text); log.println("---"); result &= ( text.indexOf("XDocumentInsertable test.") >= 0 ); } else { result &= checker.isInserted(); } } catch (com.sun.star.lang.IllegalArgumentException ex) { log.println("Exception occured while testing "+ "insertDocumentFromURL()"); ex.printStackTrace(log); result = false ; } catch (com.sun.star.io.IOException ex) { log.println("Exception occured while testing "+ "insertDocumentFromURL()"); ex.printStackTrace(log); result = false ; } try { PropertyValue [] szEmptyArgs = new PropertyValue [0]; String docURL = "file:///c:/ThisIsAnInvaldURL"; log.println("Inserting document from URL '" + docURL + "'"); oObj.insertDocumentFromURL(docURL, szEmptyArgs); result=false; } catch (IOException ex) { log.println("expected exception was thrown -> ok"); } catch (com.sun.star.lang.IllegalArgumentException ex) { log.println("expected exception was thrown -> ok"); } tRes.tested("insertDocumentFromURL()", result); } /** * Forces environment recreation. */ protected void after() { disposeEnvironment(); } } // finish class _XDocumentInsertable