/*
* 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 ifc.container;
import com.sun.star.container.NoSuchElementException;
import com.sun.star.container.XNameContainer;
import lib.MultiMethodTest;
import lib.StatusException;
/**
* Testing com.sun.star.container.XNameContainer
* interface methods :
*
insertByName()
removeByName()
'INSTANCE1', ..., 'INSTANCEN'
: N relations
* which represents objects to be inserted. See below
* for more information.'XNameContainerINDEX'
: For internal test
* usage. Contains current thread number. 'XNameContainer.AllowDuplicateNames'
optional:
* if this relation exists then container elements can have duplicate
* names. 'THRCNT'
: number
* of interface threads running concurrently.
* XNameContainer needs n ObjectRelations "INSTANCEn" , where n=1, ..., THRCNT.
*
* When this interface tested by different threads, it must use different
* instances to insert/remove - one for each thread.
*
* That's why we use objRelation "XNameContainerINDEX" to store the number of
* last taken instance. If there is no such relation, it initialize with 1.
*
* If you insert the same Object by insertByName() several times you
* don't insert the Object several times. The first insertByName() inserts
* the Object to the Container but all other insertByName() changes
* the Name in the Container because it's the same Object.
* @see com.sun.star.container.XNameContainer
*/
public class _XNameContainer extends MultiMethodTest {
public XNameContainer oObj = null;
String Name = "XNameContainer";
/**
* First inserts object by name (different objects for different threads)
* and checks if it exists. Second, if duplicate names are not allowed
* test tries to insert element with the same name and checks for
* proper exception. Third, tries to add null
element and
* checks for proper exception.
* Has OK status if in the first case element added exists in
* the container, in the second case
* Has OK status if in the first case element doesn't
* exist anymore (or duplicate names are allowed), and in the
* second case
* The following method tests are to be completed successfully before :
* ElementExistException
* is thrown, and in the third case IllegalArgumentException
* is thrown.
*/
public void _insertByName() {
boolean result = true;
int Index = 0;
//get for every thread its own Object to insert it
log.println("get ObjRelation(\"XNameContainerINDEX\")");
String sIndex = null ;
synchronized (tEnv) {
sIndex = (String)tEnv.getObjRelation("XNameContainerINDEX");
if (sIndex == null) {
log.println("No XNameContainerINDEX - so set it to 1.");
tEnv.addObjRelation("XNameContainerINDEX",Integer.toString(1));
Index = 1;
} else {
Index = Integer.parseInt(sIndex);
Index++;
tEnv.addObjRelation("XNameContainerINDEX",
Integer.toString(Index));
}
}
Name += Index ;
log.println("get ObjRelation(\"INSTANCE" + Index +"\")");
Object oInstance = tEnv.getObjRelation("INSTANCE"+ Index);
log.println("ObjRelation(\"INSTANCE" + Index +"\") Object n.a.");
log.println("testing insertByName(\""+Name+"\")...");
try {
String[] names = oObj.getElementNames() ;
log.println("Element names :") ;
for (int i = 0; iNoSuchElementException
is thrown.
*
*/
public void _removeByName() {
try {
requiredMethod("insertByName()");
} catch (StatusException e) {
// removing the name anywhere
try {
oObj.removeByName(Name);
} catch (com.sun.star.container.NoSuchElementException e1) {
} catch (com.sun.star.lang.WrappedTargetException e1) {
}
}
boolean result = true;
log.println("testing removeByName() ...");
try {
log.println("remove " + Name);
String[] names = oObj.getElementNames() ;
log.println("Element names :") ;
for (int i = 0; i insertByName()
: to remove the element inserted
* in this test.