/hg/rhino-tests: Changed the technique used to run tests, added ...
ptisnovs at icedtea.classpath.org
ptisnovs at icedtea.classpath.org
Wed Jun 27 02:20:01 PDT 2012
changeset 2398a93312b1 in /hg/rhino-tests
details: http://icedtea.classpath.org/hg/rhino-tests?cmd=changeset;node=2398a93312b1
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Wed Jun 27 11:21:42 2012 +0200
Changed the technique used to run tests, added new assertion methods and
Java Doc.
diffstat:
ChangeLog | 9 +
Makefile | 104 ++++++----
src/org/RhinoTests/BaseRhinoTest.java | 337 +++++++++++++++++++++++----------
3 files changed, 305 insertions(+), 145 deletions(-)
diffs (truncated from 677 to 500 lines):
diff -r a56086d8dc08 -r 2398a93312b1 ChangeLog
--- a/ChangeLog Tue Jun 26 11:13:14 2012 +0200
+++ b/ChangeLog Wed Jun 27 11:21:42 2012 +0200
@@ -1,3 +1,12 @@
+2012-06-27 Pavel Tisnovsky <ptisnovs at redhat.com>
+
+ * Makefile:
+ Changed the technique used to run tests. Test
+ names are now stored in a list which will be
+ used in report generators (TODO).
+ * src/org/RhinoTests/BaseRhinoTest.java:
+ Added new assertion methods, added JavaDoc.
+
2012-06-26 Pavel Tisnovsky <ptisnovs at redhat.com>
* README: added new information
diff -r a56086d8dc08 -r 2398a93312b1 Makefile
--- a/Makefile Tue Jun 26 11:13:14 2012 +0200
+++ b/Makefile Wed Jun 27 11:21:42 2012 +0200
@@ -36,39 +36,55 @@
# obligated to do so. If you do not wish to do so, delete this
# exception statement from your version.
-SOURCES=src
-CLASSES=build
+SOURCE_DIR=src
+BUILD_DIR=build
SCRIPTS=scripts
-OUTPUT=output
+OUTPUT_DIR=output
+LOGS_DIR=logs
+TEMPLATE_DIR=templates
JAVAC=javac
JAVA=java
TEST_PACKAGE=org/RhinoTests
TEST_CLASSES_PACKAGE=org/RhinoTests/TestClasses
+DATE=`date +%Y-%0m-%0d`
+
+TESTS = \
+ ScriptEngineManagerTest \
+ ScriptEngineTest \
+ ScriptEngineFactoryTest \
+ JavaScriptsTest \
+ BindingsTest \
+ CompilableTest \
+ CompiledScriptTest \
+ InvocableTest \
+ ScriptContextTest \
+ ScriptExceptionTest \
+ SimpleScriptContextTest
ALL_CLASSES = \
- $(CLASSES)/$(TEST_CLASSES_PACKAGE)/TestClass.class \
- $(CLASSES)/$(TEST_PACKAGE)/Constants.class \
- $(CLASSES)/$(TEST_PACKAGE)/BaseRhinoTest.class \
- $(CLASSES)/$(TEST_PACKAGE)/BindingsTest.class \
- $(CLASSES)/$(TEST_PACKAGE)/CompilableTest.class \
- $(CLASSES)/$(TEST_PACKAGE)/CompiledScriptTest.class \
- $(CLASSES)/$(TEST_PACKAGE)/InvocableTest.class \
- $(CLASSES)/$(TEST_PACKAGE)/JavaScriptsTest.class \
- $(CLASSES)/$(TEST_PACKAGE)/ScriptContextTest.class \
- $(CLASSES)/$(TEST_PACKAGE)/ScriptEngineFactoryTest.class \
- $(CLASSES)/$(TEST_PACKAGE)/ScriptEngineManagerTest.class \
- $(CLASSES)/$(TEST_PACKAGE)/ScriptEngineTest.class \
- $(CLASSES)/$(TEST_PACKAGE)/ScriptExceptionTest.class \
- $(CLASSES)/$(TEST_PACKAGE)/SimpleBindingsTest.class \
- $(CLASSES)/$(TEST_PACKAGE)/SimpleScriptContextTest.class
+ $(BUILD_DIR)/$(TEST_CLASSES_PACKAGE)/TestClass.class \
+ $(BUILD_DIR)/$(TEST_PACKAGE)/Constants.class \
+ $(BUILD_DIR)/$(TEST_PACKAGE)/BaseRhinoTest.class \
+ $(BUILD_DIR)/$(TEST_PACKAGE)/BindingsTest.class \
+ $(BUILD_DIR)/$(TEST_PACKAGE)/CompilableTest.class \
+ $(BUILD_DIR)/$(TEST_PACKAGE)/CompiledScriptTest.class \
+ $(BUILD_DIR)/$(TEST_PACKAGE)/InvocableTest.class \
+ $(BUILD_DIR)/$(TEST_PACKAGE)/JavaScriptsTest.class \
+ $(BUILD_DIR)/$(TEST_PACKAGE)/ScriptContextTest.class \
+ $(BUILD_DIR)/$(TEST_PACKAGE)/ScriptEngineFactoryTest.class \
+ $(BUILD_DIR)/$(TEST_PACKAGE)/ScriptEngineManagerTest.class \
+ $(BUILD_DIR)/$(TEST_PACKAGE)/ScriptEngineTest.class \
+ $(BUILD_DIR)/$(TEST_PACKAGE)/ScriptExceptionTest.class \
+ $(BUILD_DIR)/$(TEST_PACKAGE)/SimpleBindingsTest.class \
+ $(BUILD_DIR)/$(TEST_PACKAGE)/SimpleScriptContextTest.class
ALL_SCRIPTS = \
- $(CLASSES)/$(TEST_PACKAGE)/$(SCRIPTS)/test1.js \
- $(CLASSES)/$(TEST_PACKAGE)/$(SCRIPTS)/test2.js \
- $(CLASSES)/$(TEST_PACKAGE)/$(SCRIPTS)/test3.js \
- $(CLASSES)/$(TEST_PACKAGE)/$(SCRIPTS)/test4.js \
- $(CLASSES)/$(TEST_PACKAGE)/$(SCRIPTS)/test5.js \
- $(CLASSES)/$(TEST_PACKAGE)/$(SCRIPTS)/test6.js
+ $(BUILD_DIR)/$(TEST_PACKAGE)/$(SCRIPTS)/test1.js \
+ $(BUILD_DIR)/$(TEST_PACKAGE)/$(SCRIPTS)/test2.js \
+ $(BUILD_DIR)/$(TEST_PACKAGE)/$(SCRIPTS)/test3.js \
+ $(BUILD_DIR)/$(TEST_PACKAGE)/$(SCRIPTS)/test4.js \
+ $(BUILD_DIR)/$(TEST_PACKAGE)/$(SCRIPTS)/test5.js \
+ $(BUILD_DIR)/$(TEST_PACKAGE)/$(SCRIPTS)/test6.js
all: build runtests
@@ -78,32 +94,34 @@
mkdir -p build
runtests: $(ALL_CLASSES)
- $(JAVA) -cp $(CLASSES) org.RhinoTests.ScriptEngineManagerTest
- $(JAVA) -cp $(CLASSES) org.RhinoTests.ScriptEngineTest
- $(JAVA) -cp $(CLASSES) org.RhinoTests.ScriptEngineFactoryTest
- $(JAVA) -cp $(CLASSES) org.RhinoTests.JavaScriptsTest
- $(JAVA) -cp $(CLASSES) org.RhinoTests.BindingsTest
- $(JAVA) -cp $(CLASSES) org.RhinoTests.CompilableTest
- $(JAVA) -cp $(CLASSES) org.RhinoTests.CompiledScriptTest
- $(JAVA) -cp $(CLASSES) org.RhinoTests.InvocableTest
- $(JAVA) -cp $(CLASSES) org.RhinoTests.ScriptContextTest
- $(JAVA) -cp $(CLASSES) org.RhinoTests.ScriptExceptionTest
- $(JAVA) -cp $(CLASSES) org.RhinoTests.SimpleScriptContextTest
+ mkdir -p $(LOGS_DIR)
+ mkdir -p $(LOGS_DIR)/$(DATE)
+ for tst in $(TESTS); do \
+ $(JAVA) -cp $(BUILD_DIR) org.RhinoTests.$$tst 2>&1 | tee $(LOGS_DIR)/$(DATE)/$$tst.log ; \
+ done
clean:
- rm -rf $(CLASSES)/org
+ rm -rf $(BUILD_DIR)/org
rmdir build
-$(CLASSES)/$(TEST_PACKAGE)/%.class: $(SOURCES)/$(TEST_PACKAGE)/%.java
- $(JAVAC) -d $(CLASSES) -sourcepath $(SOURCES)/ $<
+cleanlogs: clean_logs
-$(CLASSES)/$(TEST_CLASSES_PACKAGE)/%.class: $(SOURCES)/$(TEST_CLASSES_PACKAGE)/%.java
- $(JAVAC) -d $(CLASSES) -sourcepath $(SOURCES)/ $<
+clean_logs:
+ rm -rf $(LOGS_DIR)/$(DATE)
-$(CLASSES)/$(TEST_PACKAGE)/$(SCRIPTS)/%.js: $(SCRIPTS)/%.js $(CLASSES)/$(TEST_PACKAGE)/$(SCRIPTS)/stamp
+clean_all_logs:
+ rm -rf $(LOGS_DIR)
+
+$(BUILD_DIR)/$(TEST_PACKAGE)/%.class: $(SOURCE_DIR)/$(TEST_PACKAGE)/%.java
+ $(JAVAC) -d $(BUILD_DIR) -sourcepath $(SOURCE_DIR)/ $<
+
+$(BUILD_DIR)/$(TEST_CLASSES_PACKAGE)/%.class: $(SOURCE_DIR)/$(TEST_CLASSES_PACKAGE)/%.java
+ $(JAVAC) -d $(BUILD_DIR) -sourcepath $(SOURCE_DIR)/ $<
+
+$(BUILD_DIR)/$(TEST_PACKAGE)/$(SCRIPTS)/%.js: $(SCRIPTS)/%.js $(BUILD_DIR)/$(TEST_PACKAGE)/$(SCRIPTS)/stamp
cp $< $@
-$(CLASSES)/$(TEST_PACKAGE)/$(SCRIPTS)/stamp:
- mkdir $(CLASSES)/$(TEST_PACKAGE)/$(SCRIPTS)
+$(BUILD_DIR)/$(TEST_PACKAGE)/$(SCRIPTS)/stamp:
+ mkdir $(BUILD_DIR)/$(TEST_PACKAGE)/$(SCRIPTS)
touch $@
diff -r a56086d8dc08 -r 2398a93312b1 src/org/RhinoTests/BaseRhinoTest.java
--- a/src/org/RhinoTests/BaseRhinoTest.java Tue Jun 26 11:13:14 2012 +0200
+++ b/src/org/RhinoTests/BaseRhinoTest.java Wed Jun 27 11:21:42 2012 +0200
@@ -45,9 +45,9 @@
/**
- * This is test engine containing basic methods which are used to run the
+ * This is test engine which contains basic methods which are used to run the
* particular test suites. This class also contains various assertion-like
- * methods.
+ * methods (at this moment, only a few assertion types are needed for testing).
*
* @author Pavel Tisnovsky
*/
@@ -64,8 +64,9 @@
/**
* Set up the test suite.
- *
- * @param args arguments which are passed throught command line
+ *
+ * @param args
+ * arguments which are passed throught command line
*/
protected abstract void setUp(String[] args);
@@ -75,59 +76,68 @@
protected abstract void tearDown();
/**
- * Run all tests in the test suite.
- *
- * @param args arguments which are passed throught command line
- */
+ * Run all tests in the test suite.
+ *
+ * @param args
+ * arguments which are passed throught command line
+ */
protected void doTests(String[] args) {
long t1 = System.currentTimeMillis();
+ // setup test
setUp(args);
try {
runAllTests();
}
- catch (Exception e)
- {
+ catch (Exception e) {
e.printStackTrace();
}
- finally
- {
+ finally {
+ // tear down test
tearDown();
+ // check duration
long t2 = System.currentTimeMillis();
- printResults(t1, t2, passed, failed);
+ // print all results
+ printResults(t1, t2, this.passed, this.failed);
}
}
/**
* Run all tests in the test suite.
- *
- * @throws Exception this exception can be thrown by any test.
+ *
+ * @throws Exception
+ * this exception can be thrown by any test.
*/
private void runAllTests() throws Exception {
+ // first we get all methods declared in a class
Method[] methods = getClass().getDeclaredMethods();
+ // then we check, if this method is a proper test method
for (Method method : methods) {
tryToInvokeTestMethod(method);
}
}
/**
- * Call a method if its name begins with "test" prefix.
- * Such methods should have public or protected access declaration.
- *
- * @param method method which is called
- * @throws Exception this exception can be thrown by any test.
+ * Call a method if its name begins with "test" prefix. Such methods should
+ * have public or protected access declaration.
+ *
+ * @param method
+ * method which is called
+ * @throws Exception
+ * this exception can be thrown by any test.
*/
private void tryToInvokeTestMethod(Method method) throws Exception {
String methodName = method.getName();
+ // all test methods should have a prefix "test"
if (methodName.startsWith("test")) {
try {
method.invoke(this);
printTestPassed(methodName);
- passed++;
+ this.passed++;
}
catch (Exception e) {
printTestFailed(methodName, e);
- failed++;
+ this.failed++;
e.printStackTrace();
}
}
@@ -135,8 +145,9 @@
/**
* Print information about test which passed.
- *
- * @param methodName name of method implementing the test.
+ *
+ * @param methodName
+ * name of method implementing the test.
*/
private void printTestPassed(String methodName) {
log("PASSED", '.', methodName);
@@ -144,8 +155,9 @@
/**
* Print information about test which failed.
- *
- * @param methodName name of method implementing the test.
+ *
+ * @param methodName
+ * name of method implementing the test.
*/
private void printTestFailed(String methodName, Exception e) {
log("FAILED", '.', methodName + ": FAILED " + e.getMessage());
@@ -153,22 +165,29 @@
/**
* Print summary about all tests in one test suite.
- *
- * @param t1 time when the test suite was started
- * @param t2 time when the test suite finishes
- * @param passed number of passed tests
- * @param failed number of failed tests
+ *
+ * @param t1
+ * time when the test suite was started
+ * @param t2
+ * time when the test suite finishes
+ * @param passedTests
+ * number of passed tests
+ * @param failedTests
+ * number of failed tests
*/
- private void printResults(long t1, long t2, int passed, int failed) {
- log("SUMMARY", ' ', "total: " + (passed + failed) + " passed: " + passed + " failed: " + failed + " duration: " + (t2-t1) + " ms");
+ private void printResults(long t1, long t2, int passedTests, int failedTests) {
+ log("SUMMARY", ' ', "total: " + (passedTests + failedTests) + " passed: " + passedTests + " failed: " + failedTests + " duration: " + (t2-t1) + " ms");
}
/**
* Log into a standard output.
- *
- * @param prefix string printed before class name.
- * @param delimiter delimiter between prefix and the class name.
- * @param methodName name of method implementing the test.
+ *
+ * @param prefix
+ * string printed before class name.
+ * @param delimiter
+ * delimiter between prefix and the class name.
+ * @param methodName
+ * name of method implementing the test.
*/
protected void log(String prefix, char delimiter, String methodName) {
System.out.println(prefix + ": " + this.getClass().getName() + delimiter + methodName);
@@ -176,11 +195,15 @@
/**
* Log into a standard output.
- *
- * @param prefix string printed before class name.
- * @param delimiter delimiter between prefix and the class name.
- * @param methodName name of method implementing the test.
- * @param exception message generated from exception
+ *
+ * @param prefix
+ * string printed before class name.
+ * @param delimiter
+ * delimiter between prefix and the class name.
+ * @param methodName
+ * name of method implementing the test.
+ * @param exception
+ * message generated from exception
*/
protected void log(String prefix, char delimiter, String methodName, String exception) {
System.out.println(prefix + ": " + this.getClass().getName() + delimiter + methodName + " " + exception);
@@ -188,23 +211,63 @@
/**
* Assertion if two objects are equal.
- *
- * @param o1 first object
- * @param o2 second object
- * @param message message printed when assertion has failed
- * @throws AssertionError thrown to indicate that an assertion has failed
+ *
+ * @param o1
+ * first object
+ * @param o2
+ * second object
+ * @param message
+ * message printed when assertion has failed
+ * @throws AssertionError
+ * thrown to indicate that an assertion has failed
*/
protected static void assertEquals(Object o1, Object o2, String message) throws AssertionError {
assertTrue(o1.equals(o2), message);
}
/**
+ * Assertion if two characters are equal.
+ *
+ * @param value1
+ * first value to be compared
+ * @param value2
+ * second value to be compared
+ * @param message
+ * message printed when assertion has failed
+ * @throws AssertionError
+ * thrown to indicate that an assertion has failed
+ */
+ protected static void assertEquals(char value1, char value2, String message) throws AssertionError {
+ assertTrue(value1 == value2, message);
+ }
+
+ /**
+ * Assertion if two bytes are equal.
+ *
+ * @param value1
+ * first value to be compared
+ * @param value2
+ * second value to be compared
+ * @param message
+ * message printed when assertion has failed
+ * @throws AssertionError
+ * thrown to indicate that an assertion has failed
+ */
+ protected static void assertEquals(byte value1, byte value2, String message) throws AssertionError {
+ assertTrue(value1 == value2, message);
+ }
+
+ /**
* Assertion if two shorts are equal.
- *
- * @param value1 first value to be compared
- * @param value2 second value to be compared
- * @param message message printed when assertion has failed
- * @throws AssertionError thrown to indicate that an assertion has failed
+ *
+ * @param value1
+ * first value to be compared
+ * @param value2
+ * second value to be compared
+ * @param message
+ * message printed when assertion has failed
+ * @throws AssertionError
+ * thrown to indicate that an assertion has failed
*/
protected static void assertEquals(short value1, short value2, String message) throws AssertionError {
assertTrue(value1 == value2, message);
@@ -212,11 +275,15 @@
/**
* Assertion if two integers are equal.
- *
- * @param value1 first value to be compared
- * @param value2 second value to be compared
- * @param message message printed when assertion has failed
- * @throws AssertionError thrown to indicate that an assertion has failed
+ *
+ * @param value1
+ * first value to be compared
+ * @param value2
+ * second value to be compared
+ * @param message
+ * message printed when assertion has failed
+ * @throws AssertionError
+ * thrown to indicate that an assertion has failed
*/
protected static void assertEquals(int value1, int value2, String message) throws AssertionError {
assertTrue(value1 == value2, message);
@@ -224,11 +291,15 @@
/**
* Assertion if two longs are equal.
- *
- * @param value1 first value to be compared
- * @param value2 second value to be compared
- * @param message message printed when assertion has failed
- * @throws AssertionError thrown to indicate that an assertion has failed
+ *
+ * @param value1
+ * first value to be compared
+ * @param value2
+ * second value to be compared
+ * @param message
+ * message printed when assertion has failed
+ * @throws AssertionError
+ * thrown to indicate that an assertion has failed
*/
protected static void assertEquals(long value1, long value2, String message) throws AssertionError {
assertTrue(value1 == value2, message);
@@ -236,11 +307,15 @@
/**
* Assertion if two floats are equal.
- *
- * @param value1 first value to be compared
- * @param value2 second value to be compared
- * @param message message printed when assertion has failed
- * @throws AssertionError thrown to indicate that an assertion has failed
+ *
+ * @param value1
+ * first value to be compared
+ * @param value2
+ * second value to be compared
+ * @param message
+ * message printed when assertion has failed
+ * @throws AssertionError
+ * thrown to indicate that an assertion has failed
*/
protected static void assertEquals(float value1, float value2, String message) throws AssertionError {
assertTrue(value1 == value2, message);
@@ -248,11 +323,15 @@
/**
* Assertion if two doubles are equal.
- *
- * @param value1 first value to be compared
- * @param value2 second value to be compared
- * @param message message printed when assertion has failed
- * @throws AssertionError thrown to indicate that an assertion has failed
+ *
More information about the distro-pkg-dev
mailing list