/hg/rhino-tests: Added three new tests into the CompiledScriptCl...

ptisnovs at icedtea.classpath.org ptisnovs at icedtea.classpath.org
Mon Feb 25 01:18:55 PST 2013


changeset 03ffeaf6d1c4 in /hg/rhino-tests
details: http://icedtea.classpath.org/hg/rhino-tests?cmd=changeset;node=03ffeaf6d1c4
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Mon Feb 25 10:22:01 2013 +0100

	Added three new tests into the CompiledScriptClassTest:
	testGetCanonicalName(), testGetConstructor() and testGetDeclaredConstructor().


diffstat:

 ChangeLog                                        |   6 +
 src/org/RhinoTests/ScriptExceptionClassTest.java |  88 +++++++++++++++++++++++-
 2 files changed, 93 insertions(+), 1 deletions(-)

diffs (132 lines):

diff -r b5352effaa82 -r 03ffeaf6d1c4 ChangeLog
--- a/ChangeLog	Fri Feb 22 10:17:15 2013 +0100
+++ b/ChangeLog	Mon Feb 25 10:22:01 2013 +0100
@@ -1,3 +1,9 @@
+2013-02-25  Pavel Tisnovsky  <ptisnovs at redhat.com>
+
+	* src/org/RhinoTests/ScriptExceptionClassTest.java:
+	Added three new tests into the CompiledScriptClassTest:
+	testGetCanonicalName(), testGetConstructor() and testGetDeclaredConstructor().
+
 2013-02-22  Pavel Tisnovsky  <ptisnovs at redhat.com>
 
 	* src/org/RhinoTests/SimpleScriptContextClassTest.java:
diff -r b5352effaa82 -r 03ffeaf6d1c4 src/org/RhinoTests/ScriptExceptionClassTest.java
--- a/src/org/RhinoTests/ScriptExceptionClassTest.java	Fri Feb 22 10:17:15 2013 +0100
+++ b/src/org/RhinoTests/ScriptExceptionClassTest.java	Mon Feb 25 10:22:01 2013 +0100
@@ -1,7 +1,7 @@
 /*
   Rhino test framework
 
-   Copyright (C) 2011, 2012  Red Hat
+   Copyright (C) 2011, 2012, 2013  Red Hat
 
 This file is part of IcedTea.
 
@@ -45,6 +45,7 @@
 import java.util.List;
 import java.util.Map;
 import java.util.HashMap;
+import java.util.TreeMap;
 
 import java.lang.annotation.Annotation;
 import java.lang.reflect.Constructor;
@@ -261,6 +262,15 @@
     }
 
     /**
+     * Test for method javax.script.ScriptException.getClass().getCanonicalName()
+     */
+    protected void testGetCanonicalName() {
+        String canonicalName = this.scriptExceptionClass.getCanonicalName();
+        assertEquals(canonicalName, "javax.script.ScriptException",
+                "Method javax.script.ScriptException.getClass().getCanonicalName() returns wrong value " + canonicalName);
+    }
+
+    /**
      * Test for method javax.script.ScriptException.getClass().getSuperclass()
      */
     protected void testGetSuperclass() {
@@ -345,6 +355,82 @@
     }
 
     /**
+     * Test for method javax.script.ScriptException.getClass().getConstructor()
+     */
+    protected void testGetConstructor() {
+        // following constructors should exist
+        Map<String, Class[]> constructorsThatShouldExist_jdk6 = new TreeMap<String, Class[]>();
+        constructorsThatShouldExist_jdk6.put("javax.script.ScriptException", new Class[] {java.lang.String.class});
+        constructorsThatShouldExist_jdk6.put("javax.script.ScriptException", new Class[] {java.lang.Exception.class});
+        constructorsThatShouldExist_jdk6.put("javax.script.ScriptException", new Class[] {java.lang.String.class, java.lang.String.class, int.class});
+        constructorsThatShouldExist_jdk6.put("javax.script.ScriptException", new Class[] {java.lang.String.class, java.lang.String.class, int.class, int.class});
+
+        Map<String, Class[]> constructorsThatShouldExist_jdk7 = new TreeMap<String, Class[]>();
+        constructorsThatShouldExist_jdk7.put("javax.script.ScriptException", new Class[] {java.lang.String.class, java.lang.String.class, int.class, int.class});
+        constructorsThatShouldExist_jdk7.put("javax.script.ScriptException", new Class[] {java.lang.String.class, java.lang.String.class, int.class});
+        constructorsThatShouldExist_jdk7.put("javax.script.ScriptException", new Class[] {java.lang.Exception.class});
+        constructorsThatShouldExist_jdk7.put("javax.script.ScriptException", new Class[] {java.lang.String.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.scriptExceptionClass.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.ScriptException.getClass().getDeclaredConstructor()
+     */
+    protected void testGetDeclaredConstructor() {
+        // following constructors should exist
+        Map<String, Class[]> constructorsThatShouldExist_jdk6 = new TreeMap<String, Class[]>();
+        constructorsThatShouldExist_jdk6.put("javax.script.ScriptException", new Class[] {java.lang.String.class});
+        constructorsThatShouldExist_jdk6.put("javax.script.ScriptException", new Class[] {java.lang.Exception.class});
+        constructorsThatShouldExist_jdk6.put("javax.script.ScriptException", new Class[] {java.lang.String.class, java.lang.String.class, int.class});
+        constructorsThatShouldExist_jdk6.put("javax.script.ScriptException", new Class[] {java.lang.String.class, java.lang.String.class, int.class, int.class});
+
+        Map<String, Class[]> constructorsThatShouldExist_jdk7 = new TreeMap<String, Class[]>();
+        constructorsThatShouldExist_jdk7.put("javax.script.ScriptException", new Class[] {java.lang.String.class, java.lang.String.class, int.class, int.class});
+        constructorsThatShouldExist_jdk7.put("javax.script.ScriptException", new Class[] {java.lang.String.class, java.lang.String.class, int.class});
+        constructorsThatShouldExist_jdk7.put("javax.script.ScriptException", new Class[] {java.lang.Exception.class});
+        constructorsThatShouldExist_jdk7.put("javax.script.ScriptException", new Class[] {java.lang.String.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.scriptExceptionClass.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.ScriptException.getClass().getFields()
      */
     protected void testGetFields() {



More information about the distro-pkg-dev mailing list