/************************************************************************* * * $RCSfile: ComplexTestCase.java,v $ * * $Revision: 1.11 $ * * last change: $Date: 2005-03-29 11:52:34 $ * * 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 complexlib; import java.lang.Class; import java.lang.reflect.Method; import share.DescEntry; import lib.TestParameters; import lib.StatusException; import share.LogWriter; import share.ComplexTest; import java.io.PrintWriter; /** * Base class for all complex tests. */ public abstract class ComplexTestCase implements ComplexTest { /** The test parameters **/ static protected TestParameters param = null; /** Log writer **/ static protected LogWriter log = null; /** Description entry **/ protected DescEntry subEntry = null; /** State of the current test method **/ protected boolean state = true; /** The message if the test did fail **/ protected String message = null; /** Maximal time one method is allowed to execute * Can be set with parameter 'ThreadTimeOut' **/ protected int mThreadTimeOut = 0; /** Continue a test even if it did fail **/ public static final boolean CONTINUE = true; /** End a test if it did fail **/ public static final boolean BREAK = true; /** * Call test. It is expected, that an environment is * given to this test. * * @param method The name of the test method that should be called. * @param environment The environment for the test. */ public void executeMethods(DescEntry entry, TestParameters environment) { // get the environment param = environment; log = entry.Logger; mThreadTimeOut = param.getInt("ThreadTimeOut"); if (mThreadTimeOut == 0) mThreadTimeOut = 300000; // start with the before() method boolean beforeWorked = true; try { Method before = this.getClass().getMethod("before",new Class[]{}); before.invoke(this, new Object[]{}); } catch(java.lang.NoSuchMethodException e) { // simply ignore } catch(java.lang.IllegalAccessException e) { log.println("Cannot access the 'before()' method, although it" + " is there. Is this ok?"); } catch(java.lang.reflect.InvocationTargetException e) { beforeWorked = false; Throwable t = e.getTargetException(); if (!(t instanceof RuntimeException) || state) { log.println(t.toString()); if ( message == null ) { message = "Exception in before() method.\n\r" + t.getMessage(); } state = false; t.printStackTrace((PrintWriter)log); } } //executeMethodTests for (int i=0; i * The current method will of course marked as failed. * @param msg The message that is evaluated. * @param s The condition that should be true. * @param cont Continue with test method, even if s is false. */ protected void assure(String msg, boolean s, boolean cont) { state &= s; if (!s) { message += msg + "\r\n"; log.println(msg); if (!cont) { throw new AssureException(msg); } } } /** * Mark the currently executed method as failed. * with the given message. * The given message will be only evaluated, if s is false. * With the parameter 'cont' set to true, the current test * method will continue.
* The current method will of course marked as failed. * @param msg The message that is evaluated. * @param cont Continue with test method, even if s is false. */ protected void failed(String msg, boolean cont) { assure(msg, false, cont); } /** * @deprecated */ protected void addResult(String message, boolean state) { String msg = message + " - " + state; this.state &= state; this.message += msg + "\r\n"; log.println(msg); } public class AssureException extends RuntimeException { public AssureException(String msg) { super(msg); } } }