/hg/rhino-tests: Added new tests: getField(), getMethod() and ge...

ptisnovs at icedtea.classpath.org ptisnovs at icedtea.classpath.org
Thu Mar 14 03:09:04 PDT 2013


changeset b6f84ad71660 in /hg/rhino-tests
details: http://icedtea.classpath.org/hg/rhino-tests?cmd=changeset;node=b6f84ad71660
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Thu Mar 14 11:12:10 2013 +0100

	Added new tests: getField(), getMethod() and getDeclaredMethod() into
	the test suite SimpleBindingsClassTest.


diffstat:

 ChangeLog                                       |    6 +
 src/org/RhinoTests/SimpleBindingsClassTest.java |  161 ++++++++++++++++++++++++
 2 files changed, 167 insertions(+), 0 deletions(-)

diffs (191 lines):

diff -r 20e66f471943 -r b6f84ad71660 ChangeLog
--- a/ChangeLog	Wed Mar 13 10:06:13 2013 +0100
+++ b/ChangeLog	Thu Mar 14 11:12:10 2013 +0100
@@ -1,3 +1,9 @@
+2013-03-14  Pavel Tisnovsky  <ptisnovs at redhat.com>
+
+	* src/org/RhinoTests/SimpleBindingsClassTest.java:
+	Added new tests: getField(), getMethod() and getDeclaredMethod() into
+	the test suite SimpleBindingsClassTest.
+
 2013-03-13  Pavel Tisnovsky  <ptisnovs at redhat.com>
 
 	* src/org/RhinoTests/ScriptContextClassTest.java:
diff -r 20e66f471943 -r b6f84ad71660 src/org/RhinoTests/SimpleBindingsClassTest.java
--- a/src/org/RhinoTests/SimpleBindingsClassTest.java	Wed Mar 13 10:06:13 2013 +0100
+++ b/src/org/RhinoTests/SimpleBindingsClassTest.java	Thu Mar 14 11:12:10 2013 +0100
@@ -499,6 +499,35 @@
     }
 
     /**
+     * Test for method javax.script.SimpleBindings.getClass().getDeclaredField()
+     */
+    protected void testGetDeclaredField() {
+        // following declared fields should exists
+        final String[] declaredFieldsThatShouldExist_jdk6 = {
+            "map",
+        };
+        final String[] declaredFieldsThatShouldExist_jdk7 = {
+            "map",
+        };
+
+        final String[] declaredFieldsThatShouldExist = getJavaVersion() < 7 ? declaredFieldsThatShouldExist_jdk6 : declaredFieldsThatShouldExist_jdk7;
+
+        // check if all required declared fields really exists
+        for (String declaredFieldThatShouldExists : declaredFieldsThatShouldExist) {
+            try {
+                Field field = this.simpleBindingsClass.getDeclaredField(declaredFieldThatShouldExists);
+                String fieldName = field.getName();
+                assertTrue(fieldName.equals(declaredFieldThatShouldExists),
+                        "field " + declaredFieldThatShouldExists + " not found");
+            }
+            catch (Exception e) {
+                e.printStackTrace();
+                throw new AssertionError(e.getMessage());
+            }
+        }
+    }
+
+    /**
      * Test for method javax.script.SimpleBindings.getClass().getMethods()
      */
     protected void testGetMethods() {
@@ -623,6 +652,138 @@
     }
 
     /**
+     * Test for method javax.script.SimpleBindings.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.Object.class});
+        methodsThatShouldExist_jdk6.put("put", new Class[] {java.lang.String.class, java.lang.Object.class});
+        methodsThatShouldExist_jdk6.put("put", new Class[] {java.lang.Object.class, java.lang.Object.class});
+        methodsThatShouldExist_jdk6.put("clear", new Class[] {});
+        methodsThatShouldExist_jdk6.put("size", new Class[] {});
+        methodsThatShouldExist_jdk6.put("isEmpty", new Class[] {});
+        methodsThatShouldExist_jdk6.put("values", new Class[] {});
+        methodsThatShouldExist_jdk6.put("entrySet", new Class[] {});
+        methodsThatShouldExist_jdk6.put("putAll", new Class[] {java.util.Map.class});
+        methodsThatShouldExist_jdk6.put("remove", new Class[] {java.lang.Object.class});
+        methodsThatShouldExist_jdk6.put("keySet", new Class[] {});
+        methodsThatShouldExist_jdk6.put("containsValue", new Class[] {java.lang.Object.class});
+        methodsThatShouldExist_jdk6.put("containsKey", new Class[] {java.lang.Object.class});
+        methodsThatShouldExist_jdk6.put("wait", new Class[] {long.class});
+        methodsThatShouldExist_jdk6.put("wait", new Class[] {long.class, int.class});
+        methodsThatShouldExist_jdk6.put("wait", new Class[] {});
+        methodsThatShouldExist_jdk6.put("hashCode", new Class[] {});
+        methodsThatShouldExist_jdk6.put("getClass", new Class[] {});
+        methodsThatShouldExist_jdk6.put("equals", new Class[] {java.lang.Object.class});
+        methodsThatShouldExist_jdk6.put("toString", new Class[] {});
+        methodsThatShouldExist_jdk6.put("notify", new Class[] {});
+        methodsThatShouldExist_jdk6.put("notifyAll", new Class[] {});
+
+        Map<String, Class[]> methodsThatShouldExist_jdk7 = new TreeMap<String, Class[]>();
+        methodsThatShouldExist_jdk7.put("remove", new Class[] {java.lang.Object.class});
+        methodsThatShouldExist_jdk7.put("get", new Class[] {java.lang.Object.class});
+        methodsThatShouldExist_jdk7.put("put", new Class[] {java.lang.String.class, java.lang.Object.class});
+        methodsThatShouldExist_jdk7.put("put", new Class[] {java.lang.Object.class, java.lang.Object.class});
+        methodsThatShouldExist_jdk7.put("values", new Class[] {});
+        methodsThatShouldExist_jdk7.put("clear", new Class[] {});
+        methodsThatShouldExist_jdk7.put("isEmpty", new Class[] {});
+        methodsThatShouldExist_jdk7.put("size", new Class[] {});
+        methodsThatShouldExist_jdk7.put("entrySet", new Class[] {});
+        methodsThatShouldExist_jdk7.put("putAll", new Class[] {java.util.Map.class});
+        methodsThatShouldExist_jdk7.put("keySet", new Class[] {});
+        methodsThatShouldExist_jdk7.put("containsKey", new Class[] {java.lang.Object.class});
+        methodsThatShouldExist_jdk7.put("containsValue", new Class[] {java.lang.Object.class});
+        methodsThatShouldExist_jdk7.put("wait", new Class[] {long.class, int.class});
+        methodsThatShouldExist_jdk7.put("wait", new Class[] {long.class});
+        methodsThatShouldExist_jdk7.put("wait", new Class[] {});
+        methodsThatShouldExist_jdk7.put("equals", new Class[] {java.lang.Object.class});
+        methodsThatShouldExist_jdk7.put("toString", new Class[] {});
+        methodsThatShouldExist_jdk7.put("hashCode", new Class[] {});
+        methodsThatShouldExist_jdk7.put("getClass", new Class[] {});
+        methodsThatShouldExist_jdk7.put("notify", new Class[] {});
+        methodsThatShouldExist_jdk7.put("notifyAll", new 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.simpleBindingsClass.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.SimpleBindings.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.Object.class});
+        methodsThatShouldExist_jdk6.put("put", new Class[] {java.lang.String.class, java.lang.Object.class});
+        methodsThatShouldExist_jdk6.put("put", new Class[] {java.lang.Object.class, java.lang.Object.class});
+        methodsThatShouldExist_jdk6.put("clear", new Class[] {});
+        methodsThatShouldExist_jdk6.put("size", new Class[] {});
+        methodsThatShouldExist_jdk6.put("isEmpty", new Class[] {});
+        methodsThatShouldExist_jdk6.put("values", new Class[] {});
+        methodsThatShouldExist_jdk6.put("entrySet", new Class[] {});
+        methodsThatShouldExist_jdk6.put("putAll", new Class[] {java.util.Map.class});
+        methodsThatShouldExist_jdk6.put("checkKey", new Class[] {java.lang.Object.class});
+        methodsThatShouldExist_jdk6.put("remove", new Class[] {java.lang.Object.class});
+        methodsThatShouldExist_jdk6.put("keySet", new Class[] {});
+        methodsThatShouldExist_jdk6.put("containsValue", new Class[] {java.lang.Object.class});
+        methodsThatShouldExist_jdk6.put("containsKey", new Class[] {java.lang.Object.class});
+
+        Map<String, Class[]> methodsThatShouldExist_jdk7 = new TreeMap<String, Class[]>();
+        methodsThatShouldExist_jdk7.put("remove", new Class[] {java.lang.Object.class});
+        methodsThatShouldExist_jdk7.put("get", new Class[] {java.lang.Object.class});
+        methodsThatShouldExist_jdk7.put("put", new Class[] {java.lang.String.class, java.lang.Object.class});
+        methodsThatShouldExist_jdk7.put("put", new Class[] {java.lang.Object.class, java.lang.Object.class});
+        methodsThatShouldExist_jdk7.put("values", new Class[] {});
+        methodsThatShouldExist_jdk7.put("clear", new Class[] {});
+        methodsThatShouldExist_jdk7.put("isEmpty", new Class[] {});
+        methodsThatShouldExist_jdk7.put("size", new Class[] {});
+        methodsThatShouldExist_jdk7.put("entrySet", new Class[] {});
+        methodsThatShouldExist_jdk7.put("putAll", new Class[] {java.util.Map.class});
+        methodsThatShouldExist_jdk7.put("checkKey", new Class[] {java.lang.Object.class});
+        methodsThatShouldExist_jdk7.put("keySet", new Class[] {});
+        methodsThatShouldExist_jdk7.put("containsKey", new Class[] {java.lang.Object.class});
+        methodsThatShouldExist_jdk7.put("containsValue", new Class[] {java.lang.Object.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.simpleBindingsClass.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.SimpleBindings.getClass().getAnnotations()
      */
     protected void testGetAnnotations() {



More information about the distro-pkg-dev mailing list