/hg/rhino-tests: Added four new tests for checking boolean expre...
ptisnovs at icedtea.classpath.org
ptisnovs at icedtea.classpath.org
Tue Aug 20 02:15:58 PDT 2013
changeset 5674e01de2f4 in /hg/rhino-tests
details: http://icedtea.classpath.org/hg/rhino-tests?cmd=changeset;node=5674e01de2f4
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Tue Aug 20 11:19:35 2013 +0200
Added four new tests for checking boolean expression return types and values.
diffstat:
ChangeLog | 8 +++-
src/org/RhinoTests/CompiledScriptTest.java | 60 ++++++++++++++++++++++++++++++
src/org/RhinoTests/JavaScriptSnippets.java | 20 ++++++++++
3 files changed, 87 insertions(+), 1 deletions(-)
diffs (119 lines):
diff -r 6e3bb66d34ab -r 5674e01de2f4 ChangeLog
--- a/ChangeLog Mon Aug 19 11:04:52 2013 +0200
+++ b/ChangeLog Tue Aug 20 11:19:35 2013 +0200
@@ -1,8 +1,14 @@
+2013-08-20 Pavel Tisnovsky <ptisnovs at redhat.com>
+
+ * src/org/RhinoTests/CompiledScriptTest.java:
+ * src/org/RhinoTests/JavaScriptSnippets.java:
+ Added four new tests for checking boolean expression return types and values.
+
2013-08-19 Pavel Tisnovsky <ptisnovs at redhat.com>
* src/org/RhinoTests/CompiledScriptTest.java:
* src/org/RhinoTests/JavaScriptSnippets.java:
- Added new tests for checking expression return types and values.
+ Added new tests for checking numeric expression return types and values.
2013-08-16 Pavel Tisnovsky <ptisnovs at redhat.com>
diff -r 6e3bb66d34ab -r 5674e01de2f4 src/org/RhinoTests/CompiledScriptTest.java
--- a/src/org/RhinoTests/CompiledScriptTest.java Mon Aug 19 11:04:52 2013 +0200
+++ b/src/org/RhinoTests/CompiledScriptTest.java Tue Aug 20 11:19:35 2013 +0200
@@ -365,6 +365,66 @@
* @throws ScriptException
* this exception is thrown when this test case failed.
*/
+ protected void testEvalBooleanExpression1() throws ScriptException {
+ final String expression = JavaScriptSnippets.BOOLEAN_EXPRESSION_1;
+ CompiledScript script = getCompiledScript(expression);
+ Object result = script.eval();
+ assertTrue(result instanceof Boolean, "result is not an instance of Boolean");
+ boolean booleanResult = ((Boolean) result).booleanValue();
+ assertEquals(booleanResult, true, "wrong result " + booleanResult + " for the expression: '" + expression + "'");
+ }
+
+ /**
+ * Test if it is possible to compile and then run script from a string.
+ *
+ * @throws ScriptException
+ * this exception is thrown when this test case failed.
+ */
+ protected void testEvalBooleanExpression2() throws ScriptException {
+ final String expression = JavaScriptSnippets.BOOLEAN_EXPRESSION_2;
+ CompiledScript script = getCompiledScript(expression);
+ Object result = script.eval();
+ assertTrue(result instanceof Boolean, "result is not an instance of Boolean");
+ boolean booleanResult = ((Boolean) result).booleanValue();
+ assertEquals(booleanResult, false, "wrong result " + booleanResult + " for the expression: '" + expression + "'");
+ }
+
+ /**
+ * Test if it is possible to compile and then run script from a string.
+ *
+ * @throws ScriptException
+ * this exception is thrown when this test case failed.
+ */
+ protected void testEvalBooleanExpression3() throws ScriptException {
+ final String expression = JavaScriptSnippets.BOOLEAN_EXPRESSION_3;
+ CompiledScript script = getCompiledScript(expression);
+ Object result = script.eval();
+ assertTrue(result instanceof Boolean, "result is not an instance of Boolean");
+ boolean booleanResult = ((Boolean) result).booleanValue();
+ assertEquals(booleanResult, false, "wrong result " + booleanResult + " for the expression: '" + expression + "'");
+ }
+
+ /**
+ * Test if it is possible to compile and then run script from a string.
+ *
+ * @throws ScriptException
+ * this exception is thrown when this test case failed.
+ */
+ protected void testEvalBooleanExpression4() throws ScriptException {
+ final String expression = JavaScriptSnippets.BOOLEAN_EXPRESSION_4;
+ CompiledScript script = getCompiledScript(expression);
+ Object result = script.eval();
+ assertTrue(result instanceof Boolean, "result is not an instance of Boolean");
+ boolean booleanResult = ((Boolean) result).booleanValue();
+ assertEquals(booleanResult, true, "wrong result " + booleanResult + " for the expression: '" + expression + "'");
+ }
+
+ /**
+ * Test if it is possible to compile and then run script from a string.
+ *
+ * @throws ScriptException
+ * this exception is thrown when this test case failed.
+ */
protected void testEvalStringExpression1() throws ScriptException {
final String expression = JavaScriptSnippets.STRING_EXPRESSION_1;
CompiledScript script = getCompiledScript(expression);
diff -r 6e3bb66d34ab -r 5674e01de2f4 src/org/RhinoTests/JavaScriptSnippets.java
--- a/src/org/RhinoTests/JavaScriptSnippets.java Mon Aug 19 11:04:52 2013 +0200
+++ b/src/org/RhinoTests/JavaScriptSnippets.java Tue Aug 20 11:19:35 2013 +0200
@@ -168,6 +168,26 @@
protected static final String DOUBLE_NUMERIC_EXPRESSION_3 = "1./2.";
/**
+ * Boolean expression containing simple boolean value.
+ */
+ protected static final String BOOLEAN_EXPRESSION_1 = "true";
+
+ /**
+ * Boolean expression containing simple boolean value.
+ */
+ protected static final String BOOLEAN_EXPRESSION_2 = "false";
+
+ /**
+ * Boolean expression.
+ */
+ protected static final String BOOLEAN_EXPRESSION_3 = "! true";
+
+ /**
+ * Boolean expression.
+ */
+ protected static final String BOOLEAN_EXPRESSION_4 = "! false";
+
+ /**
* String expression (containing only string literal).
*/
protected static final String STRING_EXPRESSION_1 = "'Hello'";
More information about the distro-pkg-dev
mailing list