/hg/rhino-tests: Added eight new tests to the test suite SimpleB...

ptisnovs at icedtea.classpath.org ptisnovs at icedtea.classpath.org
Mon Nov 19 02:12:39 PST 2012


changeset bba804edaeab in /hg/rhino-tests
details: http://icedtea.classpath.org/hg/rhino-tests?cmd=changeset;node=bba804edaeab
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Mon Nov 19 11:15:37 2012 +0100

	Added eight new tests to the test suite SimpleBindingsTest.


diffstat:

 ChangeLog                                  |   5 +
 src/org/RhinoTests/SimpleBindingsTest.java |  91 ++++++++++++++++++++++++++++-
 2 files changed, 92 insertions(+), 4 deletions(-)

diffs (129 lines):

diff -r 649ff1c652d1 -r bba804edaeab ChangeLog
--- a/ChangeLog	Fri Nov 16 11:46:08 2012 +0100
+++ b/ChangeLog	Mon Nov 19 11:15:37 2012 +0100
@@ -1,3 +1,8 @@
+2012-11-19  Pavel Tisnovsky  <ptisnovs at redhat.com>
+
+	* src/org/RhinoTests/SimpleBindingsTest.java:
+	Added eight new tests.
+
 2012-11-16  Pavel Tisnovsky  <ptisnovs at redhat.com>
 
 	* src/org/RhinoTests/BindingsTest.java:
diff -r 649ff1c652d1 -r bba804edaeab src/org/RhinoTests/SimpleBindingsTest.java
--- a/src/org/RhinoTests/SimpleBindingsTest.java	Fri Nov 16 11:46:08 2012 +0100
+++ b/src/org/RhinoTests/SimpleBindingsTest.java	Mon Nov 19 11:15:37 2012 +0100
@@ -1,7 +1,7 @@
 /*
   Rhino test framework
 
-   Copyright (C) 2011  Red Hat
+   Copyright (C) 2011, 2012  Red Hat
 
 This file is part of IcedTea.
 
@@ -40,18 +40,101 @@
 
 package org.RhinoTests;
 
+import java.util.HashMap;
+import java.util.TreeMap;
+
+import javax.script.SimpleBindings;
+
 /**
- * TODO: not implemented
- * @author ptisnovs
+ * @author Pavel Tisnovsky
  *
  */
-public class SimpleBindingsTest {
+public class SimpleBindingsTest extends BaseRhinoTest {
+
+    @Override
+    protected void setUp(String[] args) {
+        // this block could be empty
+        return;
+    }
+
+    @Override
+    protected void tearDown() {
+        // this block could be empty
+        return;
+    }
+
+    protected void testConstructor1() {
+        SimpleBindings simpleBindings = new SimpleBindings();
+        assertNotNull(simpleBindings, "new SimpleBindings() failed");
+        assertTrue(simpleBindings.isEmpty(), "simpleBindings should be empty");
+        assertTrue(simpleBindings.size() == 0, "simpleBindings should be empty");
+    }
+
+    protected void testConstructor2() {
+        SimpleBindings simpleBindings = new SimpleBindings(new HashMap());
+        assertNotNull(simpleBindings, "new SimpleBindings() failed");
+        assertTrue(simpleBindings.isEmpty(), "simpleBindings should be empty");
+        assertTrue(simpleBindings.size() == 0, "simpleBindings should be empty");
+    }
+
+    protected void testConstructor3() {
+        SimpleBindings simpleBindings = new SimpleBindings(new TreeMap());
+        assertNotNull(simpleBindings, "new SimpleBindings() failed");
+        assertTrue(simpleBindings.isEmpty(), "simpleBindings should be empty");
+        assertTrue(simpleBindings.size() == 0, "simpleBindings should be empty");
+    }
+
+    protected void testContainsKey1() {
+        SimpleBindings simpleBindings = new SimpleBindings();
+        assertFalse(simpleBindings.containsKey("key"), "Bingings.containsKey() failed");
+    }
+
+    protected void testContainsKey2() {
+        SimpleBindings simpleBindings = new SimpleBindings();
+        simpleBindings.put("key", "value");
+        assertTrue(simpleBindings.containsKey("key"), "Bingings.containsKey() failed");
+    }
+
+    protected void testContainsKeyNegative1() throws Exception {
+        SimpleBindings simpleBindings = new SimpleBindings();
+        try {
+            simpleBindings.containsKey(null);
+        }
+        catch (NullPointerException e) {
+            return;
+        }
+        throw new Exception("NPE did not thrown as expected");
+    }
+
+    protected void testContainsKeyNegative2() throws Exception {
+        SimpleBindings simpleBindings = new SimpleBindings();
+        try {
+            simpleBindings.containsKey("");
+        }
+        catch (IllegalArgumentException e) {
+            return;
+        }
+        throw new Exception("IllegalArgumentException did not thrown as expected");
+    }
+
+    protected void testContainsKeyNegative3() throws Exception {
+        SimpleBindings simpleBindings = new SimpleBindings();
+        try {
+            simpleBindings.containsKey(new Integer(42));
+        }
+        catch (ClassCastException e) {
+            return;
+        }
+        throw new Exception("ClassCastException did not thrown as expected");
+    }
+
     /**
      * Entry point to this test case.
      *
      * @param args parameters passed from command line
      */
     public static void main(String[] args) {
+        new SimpleBindingsTest().doTests(args);
     }
 
 }



More information about the distro-pkg-dev mailing list