/*************************************************************************
*
* $RCSfile: TestParameters.java,v $
*
* $Revision: 1.5 $
*
* last change: $Author: pjunck $ $Date: 2004-11-02 11:42:52 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
*
* - GNU Lesser General Public License Version 2.1
* - Sun Industry Standards Source License Version 1.1
*
* Sun Microsystems Inc., October, 2000
*
* GNU Lesser General Public License Version 2.1
* =============================================
* Copyright 2000 by Sun Microsystems, Inc.
* 901 San Antonio Road, Palo Alto, CA 94303, USA
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License version 2.1, as published by the Free Software Foundation.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
* MA 02111-1307 USA
*
*
* Sun Industry Standards Source License Version 1.1
* =================================================
* The contents of this file are subject to the Sun Industry Standards
* Source License Version 1.1 (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.openoffice.org/license.html.
*
* Software provided under this License is provided on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
* WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
* MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
* See the License for the specific provisions governing your rights and
* obligations concerning the Software.
*
* The Initial Developer of the Original Code is: Sun Microsystems, Inc.
*
* Copyright: 2000 by Sun Microsystems, Inc.
*
* All Rights Reserved.
*
* Contributor(s): _______________________________________
*
*
************************************************************************/
package lib;
import java.util.Hashtable;
import util.PropertyName;
//import com.sun.star.lang.XMultiServiceFactory;
/**
* TestParameters describes a parameters (in a form of pairs: name, value) to
* be passed to tests and which may affect the test behaviour. That can be,
* for example, standard paths, connection strings, etc. The TestParameters
* also provides XMultiServiceFactory for the test (tests).
*/
public class TestParameters extends Hashtable {
/**
* The ConnectionString for Office Connection
* default is 'socket,host=localhost,port=8100'
*/
public String ConnectionString="socket,host=localhost,port=8100";
/**
* The AppProvider contains the Application Provider
* to control the ServiceFactory.
*/
public Object AppProvider=null;
/**
* The Process contains the Process handler
* to control the Application.
*/
public Object ProcessHandler=null;
/**
* The AppExecutionCmd contains the full qualified
* command to an Application to be started.
*/
public String AppExecutionCommand="";
/**
* Shoert wait time for the Office: default is 500 milliseconds
*/
public int ShortWait = 500;
/**
* The OfficeProvider contains the full qualified
* class that provides a connection to StarOffice
* default is helper.OfficeProvider
*/
public String OfficeProvider = "helper.OfficeProvider";
/**
* The Testbase to be executed by the runner
* default is 'java_fat'
*/
public String TestBase="java_fat";
/**
* The ServiceFactory to create instances
*/
public Object ServiceFactory;
/**
* The Path to the component description
*/
public String DescriptionPath;
/**
* The Path to the test documents that are loaded during the test
* default will be the tmp dir
*/
public String TestDocumentPath=System.getProperty("java.io.tmpdir");
/**
* 'true' is a log should be written, 'false' elsewhere
* these will be provided by the testcases
* default is true
*/
public boolean LoggingIsActive=true;
/**
* 'true' is a debug information should be written, 'false' elsewhere
* these will be provided by the framework.
* Debug information will always be written on standard out.
* default is true
*/
public boolean DebugIsActive=false;
/*
* This parameter contains the testjob to be executed
* by the framework
*/
public Object TestJob;
/*
* This parameter contains the class used
* for Logging
*/
public String LogWriter="stats.SimpleLogWriter";
/*
* This parameter contains the class used
* for Logging
*/
public String OutProducer="stats.SimpleOutProducer";
/*
* This parameter contains the timeout used
* by the watcher
*/
public Integer TimeOut = new Integer(30000);
/**
* Wraper around "get()" with some debug output
* @param key A key of this table.
* @return The value of this key.
* @see java.util.Hashtable
*/
public Object get(Object key) {
Object val = super.get(key);
if (val == null && DebugIsActive) {
System.out.print("Have been asked for key \""+key.toString());
System.out.println("\" which is not part of params.");
}
return val;
}
/**
* Special get method for boolean values: for convenience.
* Will return 'false' if the value is not of "Boolean" type.
* @param key A key of this table.
* @return The value of this key, castet to a boolean type.
*/
public boolean getBool(Object key) {
Object val = super.get(key);
if (val != null) {
if (val instanceof String) {
String sVal = (String)val;
if (sVal.equalsIgnoreCase("true") ||
sVal.equalsIgnoreCase("yes")) {
return true;
}
else if (sVal.equalsIgnoreCase("false") ||
sVal.equalsIgnoreCase("no")) {
return false;
}
}
if (val instanceof Boolean)
return ((Boolean)val).booleanValue();
}
return false;
}
/**
* Special get method for integer values: for convenience.
* Will return 0 if the value cannot be interpreted as Integer.
* @param key A key of this table.
* @return The value of this key, castet to an int type.
*/
public int getInt(Object key) {
Object val = super.get(key);
if ( val != null ) {
if (val instanceof Integer) {
return ((Integer)val).intValue();
}
else {
try {
if ( val instanceof String ) {
Integer nr = new Integer((String)val);
if (nr.intValue() > 0) return nr.intValue();
}
} catch ( java.lang.NumberFormatException nfe) {}
}
}
return 0;
}
/**
* Wraper around "put()"
* @param key A key of this table.
* @param val The value of the key.
* @return The value of this key.
* @see java.util.Hashtable
*/
public Object put(Object key, Object val) {
return super.put(key,val);
}
/**
* Constructor, defaults for Parameters are set.
*/
public TestParameters() {
//fill the propertyset
put(PropertyName.CONNECTION_STRING,ConnectionString);
put(PropertyName.TEST_BASE,TestBase);
put(PropertyName.TEST_DOCUMENT_PATH,TestDocumentPath);
put(PropertyName.LOGGING_IS_ACTIVE,Boolean.valueOf(LoggingIsActive));
put(PropertyName.DEBUG_IS_ACTIVE,Boolean.valueOf(DebugIsActive));
put(PropertyName.OUT_PRODUCER,OutProducer);
put(PropertyName.SHORT_WAIT,new Integer(ShortWait));
put(PropertyName.OFFICE_PROVIDER,OfficeProvider);
put(PropertyName.LOG_WRITER,LogWriter);
put(PropertyName.APP_EXECUTION_COMMAND,AppExecutionCommand);
put(PropertyName.TIME_OUT,TimeOut);
// get the operating system
put(PropertyName.OPERATING_SYSTEM, getSOCompatibleOSName());
//For compatibility Reasons
put("CNCSTR",ConnectionString);
put("DOCPTH",TestDocumentPath);
System.setProperty("DOCPTH",TestDocumentPath);
}
/**
* @return a XMultiServiceFactory to be used by a test (tests).
*/
public Object getMSF() {
Object ret = null;
ret = get("ServiceFactory");
return ret;
}
/**
* Convert the system dependent operating system name to a name according
* to OOo rules.
* @return A valid OS name, or "" if the name is not known.
*/
String getSOCompatibleOSName() {
String osname = System.getProperty ("os.name").toLowerCase ();
String osarch = System.getProperty ("os.arch");
String operatingSystem = "";
if (osname.indexOf ("windows")>-1) {
operatingSystem = PropertyName.WNTMSCI;
} else if (osname.indexOf ("linux")>-1) {
operatingSystem = PropertyName.UNXLNGI;
} else if (osname.indexOf ("sunos")>-1) {
if (osarch.equals ("x86")) {
operatingSystem = PropertyName.UNXSOLI;
} else {
operatingSystem = PropertyName.UNXSOLS;
}
}
return operatingSystem;
}
}// finish class TestParamenters