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

ptisnovs at icedtea.classpath.org ptisnovs at icedtea.classpath.org
Tue Mar 5 02:39:59 PST 2013


changeset 793835c40f7d in /hg/rhino-tests
details: http://icedtea.classpath.org/hg/rhino-tests?cmd=changeset;node=793835c40f7d
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Tue Mar 05 11:43:02 2013 +0100

	Added two new tests into the ScriptEngineClassTest:
	testMethod() and getDeclaredMethod().


diffstat:

 ChangeLog                                     |    6 +
 src/org/RhinoTests/ScriptEngineClassTest.java |  116 ++++++++++++++++++++++++++
 2 files changed, 122 insertions(+), 0 deletions(-)

diffs (139 lines):

diff -r 4c9480106120 -r 793835c40f7d ChangeLog
--- a/ChangeLog	Mon Mar 04 09:54:38 2013 +0100
+++ b/ChangeLog	Tue Mar 05 11:43:02 2013 +0100
@@ -1,3 +1,9 @@
+2013-03-05  Pavel Tisnovsky  <ptisnovs at redhat.com>
+
+	* src/org/RhinoTests/ScriptEngineClassTest.java:
+	Added two new tests into the ScriptEngineClassTest:
+	testMethod() and getDeclaredMethod().
+
 2013-03-04  Pavel Tisnovsky  <ptisnovs at redhat.com>
 
 	* src/org/RhinoTests/ScriptEngineClassTest.java:
diff -r 4c9480106120 -r 793835c40f7d src/org/RhinoTests/ScriptEngineClassTest.java
--- a/src/org/RhinoTests/ScriptEngineClassTest.java	Mon Mar 04 09:54:38 2013 +0100
+++ b/src/org/RhinoTests/ScriptEngineClassTest.java	Tue Mar 05 11:43:02 2013 +0100
@@ -657,6 +657,122 @@
     }
 
     /**
+     * Test for method javax.script.ScriptEngine.getClass().getMethod()
+     */
+    protected void testGetMethod() {
+        // following methods should exist
+        Map<String, Class[]> methodsThatShouldExist_jdk6 = new TreeMap<String, Class[]>();
+        methodsThatShouldExist_jdk6.put("get", new Class[] {java.lang.String.class});
+        methodsThatShouldExist_jdk6.put("put", new Class[] {java.lang.String.class, java.lang.Object.class});
+        methodsThatShouldExist_jdk6.put("getFactory", new Class[] {});
+        methodsThatShouldExist_jdk6.put("getContext", new Class[] {});
+        methodsThatShouldExist_jdk6.put("eval", new Class[] {java.lang.String.class, javax.script.ScriptContext.class});
+        methodsThatShouldExist_jdk6.put("eval", new Class[] {java.io.Reader.class, javax.script.ScriptContext.class});
+        methodsThatShouldExist_jdk6.put("eval", new Class[] {java.lang.String.class});
+        methodsThatShouldExist_jdk6.put("eval", new Class[] {java.io.Reader.class});
+        methodsThatShouldExist_jdk6.put("eval", new Class[] {java.lang.String.class, javax.script.Bindings.class});
+        methodsThatShouldExist_jdk6.put("eval", new Class[] {java.io.Reader.class, javax.script.Bindings.class});
+        methodsThatShouldExist_jdk6.put("setBindings", new Class[] {javax.script.Bindings.class, int.class});
+        methodsThatShouldExist_jdk6.put("getBindings", new Class[] {int.class});
+        methodsThatShouldExist_jdk6.put("createBindings", new Class[] {});
+        methodsThatShouldExist_jdk6.put("setContext", new Class[] {javax.script.ScriptContext.class});
+
+        Map<String, Class[]> methodsThatShouldExist_jdk7 = new TreeMap<String, Class[]>();
+        methodsThatShouldExist_jdk7.put("get", new Class[] {java.lang.String.class});
+        methodsThatShouldExist_jdk7.put("put", new Class[] {java.lang.String.class, java.lang.Object.class});
+        methodsThatShouldExist_jdk7.put("getFactory", new Class[] {});
+        methodsThatShouldExist_jdk7.put("getContext", new Class[] {});
+        methodsThatShouldExist_jdk7.put("eval", new Class[] {java.lang.String.class});
+        methodsThatShouldExist_jdk7.put("eval", new Class[] {java.io.Reader.class, javax.script.ScriptContext.class});
+        methodsThatShouldExist_jdk7.put("eval", new Class[] {java.lang.String.class, javax.script.ScriptContext.class});
+        methodsThatShouldExist_jdk7.put("eval", new Class[] {java.io.Reader.class});
+        methodsThatShouldExist_jdk7.put("eval", new Class[] {java.lang.String.class, javax.script.Bindings.class});
+        methodsThatShouldExist_jdk7.put("eval", new Class[] {java.io.Reader.class, javax.script.Bindings.class});
+        methodsThatShouldExist_jdk7.put("getBindings", new Class[] {int.class});
+        methodsThatShouldExist_jdk7.put("setBindings", new Class[] {javax.script.Bindings.class, int.class});
+        methodsThatShouldExist_jdk7.put("createBindings", new Class[] {});
+        methodsThatShouldExist_jdk7.put("setContext", new Class[] {javax.script.ScriptContext.class});
+
+        Map<String, Class[]> methodsThatShouldExist = getJavaVersion() < 7 ? methodsThatShouldExist_jdk6 : methodsThatShouldExist_jdk7;
+
+        // check if all required methods really exist
+        for (Map.Entry<String, Class[]> methodThatShouldExists : methodsThatShouldExist.entrySet()) {
+            try {
+                Method method = this.scriptEngineClass.getMethod(methodThatShouldExists.getKey(), methodThatShouldExists.getValue());
+                assertNotNull(method,
+                        "method " + methodThatShouldExists.getKey() + " not found");
+                String methodName = method.getName();
+                assertNotNull(methodName,
+                        "method " + methodThatShouldExists.getKey() + " does not have name assigned");
+                assertTrue(methodName.equals(methodThatShouldExists.getKey()),
+                        "method " + methodThatShouldExists.getKey() + " not found");
+            }
+            catch (Exception e) {
+                e.printStackTrace();
+                throw new AssertionError(e.getMessage());
+            }
+        }
+    }
+
+    /**
+     * Test for method javax.script.ScriptEngine.getClass().getDeclaredMethod()
+     */
+    protected void testGetDeclaredMethod() {
+        // following methods should exist
+        Map<String, Class[]> methodsThatShouldExist_jdk6 = new TreeMap<String, Class[]>();
+        methodsThatShouldExist_jdk6.put("get", new Class[] {java.lang.String.class});
+        methodsThatShouldExist_jdk6.put("put", new Class[] {java.lang.String.class, java.lang.Object.class});
+        methodsThatShouldExist_jdk6.put("getFactory", new Class[] {});
+        methodsThatShouldExist_jdk6.put("getContext", new Class[] {});
+        methodsThatShouldExist_jdk6.put("eval", new Class[] {java.lang.String.class, javax.script.ScriptContext.class});
+        methodsThatShouldExist_jdk6.put("eval", new Class[] {java.io.Reader.class, javax.script.ScriptContext.class});
+        methodsThatShouldExist_jdk6.put("eval", new Class[] {java.lang.String.class});
+        methodsThatShouldExist_jdk6.put("eval", new Class[] {java.io.Reader.class});
+        methodsThatShouldExist_jdk6.put("eval", new Class[] {java.lang.String.class, javax.script.Bindings.class});
+        methodsThatShouldExist_jdk6.put("eval", new Class[] {java.io.Reader.class, javax.script.Bindings.class});
+        methodsThatShouldExist_jdk6.put("setBindings", new Class[] {javax.script.Bindings.class, int.class});
+        methodsThatShouldExist_jdk6.put("getBindings", new Class[] {int.class});
+        methodsThatShouldExist_jdk6.put("createBindings", new Class[] {});
+        methodsThatShouldExist_jdk6.put("setContext", new Class[] {javax.script.ScriptContext.class});
+
+        Map<String, Class[]> methodsThatShouldExist_jdk7 = new TreeMap<String, Class[]>();
+        methodsThatShouldExist_jdk7.put("get", new Class[] {java.lang.String.class});
+        methodsThatShouldExist_jdk7.put("put", new Class[] {java.lang.String.class, java.lang.Object.class});
+        methodsThatShouldExist_jdk7.put("getFactory", new Class[] {});
+        methodsThatShouldExist_jdk7.put("getContext", new Class[] {});
+        methodsThatShouldExist_jdk7.put("eval", new Class[] {java.lang.String.class});
+        methodsThatShouldExist_jdk7.put("eval", new Class[] {java.io.Reader.class, javax.script.ScriptContext.class});
+        methodsThatShouldExist_jdk7.put("eval", new Class[] {java.lang.String.class, javax.script.ScriptContext.class});
+        methodsThatShouldExist_jdk7.put("eval", new Class[] {java.io.Reader.class});
+        methodsThatShouldExist_jdk7.put("eval", new Class[] {java.lang.String.class, javax.script.Bindings.class});
+        methodsThatShouldExist_jdk7.put("eval", new Class[] {java.io.Reader.class, javax.script.Bindings.class});
+        methodsThatShouldExist_jdk7.put("getBindings", new Class[] {int.class});
+        methodsThatShouldExist_jdk7.put("setBindings", new Class[] {javax.script.Bindings.class, int.class});
+        methodsThatShouldExist_jdk7.put("createBindings", new Class[] {});
+        methodsThatShouldExist_jdk7.put("setContext", new Class[] {javax.script.ScriptContext.class});
+
+        Map<String, Class[]> methodsThatShouldExist = getJavaVersion() < 7 ? methodsThatShouldExist_jdk6 : methodsThatShouldExist_jdk7;
+
+        // check if all required methods really exist
+        for (Map.Entry<String, Class[]> methodThatShouldExists : methodsThatShouldExist.entrySet()) {
+            try {
+                Method method = this.scriptEngineClass.getDeclaredMethod(methodThatShouldExists.getKey(), methodThatShouldExists.getValue());
+                assertNotNull(method,
+                        "method " + methodThatShouldExists.getKey() + " not found");
+                String methodName = method.getName();
+                assertNotNull(methodName,
+                        "method " + methodThatShouldExists.getKey() + " does not have name assigned");
+                assertTrue(methodName.equals(methodThatShouldExists.getKey()),
+                        "method " + methodThatShouldExists.getKey() + " not found");
+            }
+            catch (Exception e) {
+                e.printStackTrace();
+                throw new AssertionError(e.getMessage());
+            }
+        }
+    }
+
+    /**
      * Test for method javax.script.ScriptEngine.getClass().getAnnotations()
      */
     protected void testGetAnnotations() {



More information about the distro-pkg-dev mailing list