package org.jboss.test; import java.lang.reflect.Method; import java.lang.reflect.Modifier; import java.util.Properties; import junit.framework.Test; import junit.framework.TestCase; import junit.framework.TestSuite; /** Override the TestSuite to support the setting of a Properties collection * associated with the TestSuite on each test. * * @author Scott.Stark@jboss.org * @version $Revision: 1.1.2.2 $ */ public class JBossTestSuite extends TestSuite { protected Properties props; public JBossTestSuite(Properties props) { this.props = props; } public JBossTestSuite(Class theClass, String name, Properties props) { if (name == null) name = theClass.getName(); super.setName(name); this.props = props; Class superClass = theClass; while (Test.class.isAssignableFrom(superClass)) { Method[] methods = superClass.getDeclaredMethods(); Method setProps = null; try { Class[] sig = {Properties.class}; setProps = superClass.getMethod("setProps", sig); } catch (Throwable ignore) { } for (int i = 0; i < methods.length; i++) { Method m = methods[i]; if( isPublicTestMethod(m) == false ) continue; String testName = m.getName(); Test test = createTest(theClass, testName); if (setProps != null) { Object[] args = {props}; try { setProps.invoke(test, args); } catch (Throwable t) { test = failure(t); } } super.addTest(test); } superClass = superClass.getSuperclass(); } } public JBossTestSuite(Class theClass, Properties props) { this(theClass, null, props); } public JBossTestSuite(String name, Properties props) { super(name); this.props = props; } public void addTestSuite(Class testClass) { super.addTest(new JBossTestSuite(testClass, props)); } public static boolean isPublicTestMethod(Method m) { return isTestMethod(m) && Modifier.isPublic(m.getModifiers()); } public static boolean isTestMethod(Method m) { String name = m.getName(); Class[] parameters = m.getParameterTypes(); Class returnType = m.getReturnType(); return parameters.length == 0 && name.startsWith("test") && returnType.equals(Void.TYPE); } /** * Returns a test which will fail and log a warning message. */ private static Test failure(final Throwable t) { return new TestCase("failure") { protected void runTest() { fail(t.getMessage()); } }; } }