/hg/rhino-tests: Added new code snippets into src/org/RhinoTests...
ptisnovs at icedtea.classpath.org
ptisnovs at icedtea.classpath.org
Thu Nov 22 01:35:40 PST 2012
changeset 24686f9e632a in /hg/rhino-tests
details: http://icedtea.classpath.org/hg/rhino-tests?cmd=changeset;node=24686f9e632a
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Thu Nov 22 10:38:39 2012 +0100
Added new code snippets into src/org/RhinoTests/JavaScriptSnippets.java.
Added new tests to the test suite src/org/RhinoTests/JavaScriptsTest.java.
diffstat:
ChangeLog | 8 ++++++++
src/org/RhinoTests/JavaScriptSnippets.java | 19 +++++++++++++++++++
src/org/RhinoTests/JavaScriptsTest.java | 26 +++++++++++++++++++++++---
3 files changed, 50 insertions(+), 3 deletions(-)
diffs (85 lines):
diff -r cfb582c14406 -r 24686f9e632a ChangeLog
--- a/ChangeLog Wed Nov 21 13:25:06 2012 +0100
+++ b/ChangeLog Thu Nov 22 10:38:39 2012 +0100
@@ -1,3 +1,11 @@
+2012-11-22 Pavel Tisnovsky <ptisnovs at redhat.com>
+
+ * src/org/RhinoTests/JavaScriptSnippets.java:
+ Added new code snippets.
+
+ * src/org/RhinoTests/JavaScriptsTest.java:
+ Added new tests.
+
2012-11-21 Pavel Tisnovsky <ptisnovs at redhat.com>
* src/org/RhinoTests/CompilableTest.java:
diff -r cfb582c14406 -r 24686f9e632a src/org/RhinoTests/JavaScriptSnippets.java
--- a/src/org/RhinoTests/JavaScriptSnippets.java Wed Nov 21 13:25:06 2012 +0100
+++ b/src/org/RhinoTests/JavaScriptSnippets.java Thu Nov 22 10:38:39 2012 +0100
@@ -82,4 +82,23 @@
*/
protected static final String NUMERIC_EXPRESSION_1 = "1+2*3";
+ /**
+ * Classical hello world program.
+ */
+ protected static final String HELLO_WORLD_1 = "println('\tHello world!')";
+
+ /**
+ * Slightly modified hello world program.
+ */
+ protected static final String HELLO_WORLD_2 = "println('\tHello' + ' world!')";
+
+ /**
+ * Slightly modified hello world program.
+ */
+ protected static final String HELLO_WORLD_3 = "println('\tHello' + ' ' + 'world!')";
+
+ /**
+ * Statement containing unknown function.
+ */
+ protected static final String UNKNOWN_FUNCTION = "_unknown_function_('\tHello world!')";
}
diff -r cfb582c14406 -r 24686f9e632a src/org/RhinoTests/JavaScriptsTest.java
--- a/src/org/RhinoTests/JavaScriptsTest.java Wed Nov 21 13:25:06 2012 +0100
+++ b/src/org/RhinoTests/JavaScriptsTest.java Thu Nov 22 10:38:39 2012 +0100
@@ -86,8 +86,28 @@
* @throws ScriptException
* this exception is thrown when this test case failed.
*/
- protected void testRunSimpleScriptStoredInString() throws ScriptException {
- this.scriptEngine.eval("println('\tHello world!')");
+ protected void testRunSimpleScriptStoredInString1() throws ScriptException {
+ this.scriptEngine.eval(JavaScriptSnippets.HELLO_WORLD_1);
+ }
+
+ /**
+ * Test if it is possible to run script from a string.
+ *
+ * @throws ScriptException
+ * this exception is thrown when this test case failed.
+ */
+ protected void testRunSimpleScriptStoredInString2() throws ScriptException {
+ this.scriptEngine.eval(JavaScriptSnippets.HELLO_WORLD_2);
+ }
+
+ /**
+ * Test if it is possible to run script from a string.
+ *
+ * @throws ScriptException
+ * this exception is thrown when this test case failed.
+ */
+ protected void testRunSimpleScriptStoredInString3() throws ScriptException {
+ this.scriptEngine.eval(JavaScriptSnippets.HELLO_WORLD_3);
}
/**
@@ -99,7 +119,7 @@
*/
protected void testRunScriptContainingUnknownFunctionStoredInString() throws Exception {
try {
- this.scriptEngine.eval("_unknown_function_('\tHello world!')");
+ this.scriptEngine.eval(JavaScriptSnippets.UNKNOWN_FUNCTION);
}
catch (ScriptException e) {
System.out.println("\tException thrown as expected " + e.getMessage());
More information about the distro-pkg-dev
mailing list