blob: 5e1486bbed317fa77cf235d3b414d01c292e48a4 [file] [log] [blame]
/**************************************************************
*
* 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.drawing;
import lib.MultiMethodTest;
import com.sun.star.drawing.XDrawPage;
import com.sun.star.drawing.XDrawPageDuplicator;
import com.sun.star.drawing.XDrawPages;
import com.sun.star.drawing.XDrawPagesSupplier;
import com.sun.star.uno.AnyConverter;
import com.sun.star.uno.Type;
import com.sun.star.uno.UnoRuntime;
import com.sun.star.uno.XInterface;
/**
* Testing <code>com.sun.star.drawing.XDrawPageDuplicator</code>
* interface methods :
* <ul>
* <li><code> duplicate()</code></li>
* </ul> <p>
* The object tested <b> must implement </b>
* <code>XDrawPagesSupplier</code> interface to have access to draw
* pages collection. <p>
* Test is <b> NOT </b> multithread compilant. <p>
* After test completion object environment has to be recreated.
* @see com.sun.star.drawing.XDrawPageDuplicator
*/
public class _XDrawPageDuplicator extends MultiMethodTest {
public XDrawPageDuplicator oObj = null;
/**
* First queries object tested for <code>XDrawPagesSupplier</code>
* interface and obtains one draw page from document. Then it
* tries to duplicate it.<p>
* Has <b> OK </b> status if the method returns not null value and
* this value is not equal to the page which was duplicated. <p>
*/
public void _duplicate(){
boolean result = false;
XInterface testobj = tEnv.getTestObject();
XDrawPagesSupplier PS = (XDrawPagesSupplier)
UnoRuntime.queryInterface(XDrawPagesSupplier.class, testobj);
XDrawPages DPs = PS.getDrawPages();
XDrawPage DP = null;
try {
DP = (XDrawPage) AnyConverter.toObject(
new Type(XDrawPage.class),DPs.getByIndex(0));
} catch (com.sun.star.lang.WrappedTargetException e) {
log.println("Exception occured while testing: " + e);
} catch (com.sun.star.lang.IndexOutOfBoundsException e) {
log.println("Exception occured while testing: " + e);
} catch (com.sun.star.lang.IllegalArgumentException e) {
log.println("Exception occured while testing: " + e);
}
if (DP != null) {
XDrawPage newPage = oObj.duplicate(DP);
result = (newPage != null) && !(newPage.equals(DP));
}
tRes.tested("duplicate()", result);
}
}