/hg/rhino-tests: Added two new tests into the SimpleScriptContex...

ptisnovs at icedtea.classpath.org ptisnovs at icedtea.classpath.org
Fri Feb 22 01:14:11 PST 2013


changeset b5352effaa82 in /hg/rhino-tests
details: http://icedtea.classpath.org/hg/rhino-tests?cmd=changeset;node=b5352effaa82
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Fri Feb 22 10:17:15 2013 +0100

	Added two new tests into the SimpleScriptContextClassTest:
	testGetConstructor() and testGetDeclaredConstructor().


diffstat:

 ChangeLog                                            |   6 +
 src/org/RhinoTests/SimpleScriptContextClassTest.java |  64 ++++++++++++++++++++
 2 files changed, 70 insertions(+), 0 deletions(-)

diffs (87 lines):

diff -r f8ec6f7e0d99 -r b5352effaa82 ChangeLog
--- a/ChangeLog	Thu Feb 21 09:40:05 2013 +0100
+++ b/ChangeLog	Fri Feb 22 10:17:15 2013 +0100
@@ -1,3 +1,9 @@
+2013-02-22  Pavel Tisnovsky  <ptisnovs at redhat.com>
+
+	* src/org/RhinoTests/SimpleScriptContextClassTest.java:
+	Added two new tests into the SimpleScriptContextClassTest:
+	testGetConstructor() and testGetDeclaredConstructor().
+
 2013-02-21  Pavel Tisnovsky  <ptisnovs at redhat.com>
 
 	* src/org/RhinoTests/InvocableClassTest.java:
diff -r f8ec6f7e0d99 -r b5352effaa82 src/org/RhinoTests/SimpleScriptContextClassTest.java
--- a/src/org/RhinoTests/SimpleScriptContextClassTest.java	Thu Feb 21 09:40:05 2013 +0100
+++ b/src/org/RhinoTests/SimpleScriptContextClassTest.java	Fri Feb 22 10:17:15 2013 +0100
@@ -347,6 +347,70 @@
     }
 
     /**
+     * Test for method javax.script.SimpleScriptContext.getClass().getConstructor()
+     */
+    protected void testGetConstructor() {
+        // following constructors should exist
+        Map<String, Class[]> constructorsThatShouldExist_jdk6 = new TreeMap<String, Class[]>();
+        constructorsThatShouldExist_jdk6.put("javax.script.SimpleScriptContext", new Class[] {});
+
+        Map<String, Class[]> constructorsThatShouldExist_jdk7 = new TreeMap<String, Class[]>();
+        constructorsThatShouldExist_jdk7.put("javax.script.SimpleScriptContext", new Class[] {});
+
+        Map<String, Class[]> constructorsThatShouldExist = getJavaVersion() < 7 ? constructorsThatShouldExist_jdk6 : constructorsThatShouldExist_jdk7;
+
+        // check if all required constructors really exist
+        for (Map.Entry<String, Class[]> constructorThatShouldExists : constructorsThatShouldExist.entrySet()) {
+            try {
+                Constructor constructor = this.simpleScriptContextClass.getConstructor(constructorThatShouldExists.getValue());
+                assertNotNull(constructor,
+                        "constructor " + constructorThatShouldExists.getKey() + " not found");
+                String constructorName = constructor.getName();
+                assertNotNull(constructorName,
+                        "constructor " + constructorThatShouldExists.getKey() + " does not have name assigned");
+                assertTrue(constructorName.equals(constructorThatShouldExists.getKey()),
+                        "constructor " + constructorThatShouldExists.getKey() + " not found");
+            }
+            catch (Exception e) {
+                e.printStackTrace();
+                throw new AssertionError(e.getMessage());
+            }
+        }
+    }
+
+    /**
+     * Test for method javax.script.SimpleScriptContext.getClass().getDeclaredConstructor()
+     */
+    protected void testGetDeclaredConstructor() {
+        // following constructors should exist
+        Map<String, Class[]> constructorsThatShouldExist_jdk6 = new TreeMap<String, Class[]>();
+        constructorsThatShouldExist_jdk6.put("javax.script.SimpleScriptContext", new Class[] {});
+
+        Map<String, Class[]> constructorsThatShouldExist_jdk7 = new TreeMap<String, Class[]>();
+        constructorsThatShouldExist_jdk7.put("javax.script.SimpleScriptContext", new Class[] {});
+
+        Map<String, Class[]> constructorsThatShouldExist = getJavaVersion() < 7 ? constructorsThatShouldExist_jdk6 : constructorsThatShouldExist_jdk7;
+
+        // check if all required constructors really exist
+        for (Map.Entry<String, Class[]> constructorThatShouldExists : constructorsThatShouldExist.entrySet()) {
+            try {
+                Constructor constructor = this.simpleScriptContextClass.getDeclaredConstructor(constructorThatShouldExists.getValue());
+                assertNotNull(constructor,
+                        "constructor " + constructorThatShouldExists.getKey() + " not found");
+                String constructorName = constructor.getName();
+                assertNotNull(constructorName,
+                        "constructor " + constructorThatShouldExists.getKey() + " does not have name assigned");
+                assertTrue(constructorName.equals(constructorThatShouldExists.getKey()),
+                        "constructor " + constructorThatShouldExists.getKey() + " not found");
+            }
+            catch (Exception e) {
+                e.printStackTrace();
+                throw new AssertionError(e.getMessage());
+            }
+        }
+    }
+
+    /**
      * Test for method javax.script.SimpleScriptContext.getClass().getFields()
      */
     protected void testGetFields() {



More information about the distro-pkg-dev mailing list