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

ptisnovs at icedtea.classpath.org ptisnovs at icedtea.classpath.org
Mon Mar 4 00:51:34 PST 2013


changeset 4c9480106120 in /hg/rhino-tests
details: http://icedtea.classpath.org/hg/rhino-tests?cmd=changeset;node=4c9480106120
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Mon Mar 04 09:54:38 2013 +0100

	Added two new tests into the ScriptEngineClassTest:
	testDeclaredField() and testAnnotations().


diffstat:

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

diffs (94 lines):

diff -r 2d0f54d43a5e -r 4c9480106120 ChangeLog
--- a/ChangeLog	Fri Mar 01 10:26:45 2013 +0100
+++ b/ChangeLog	Mon Mar 04 09:54:38 2013 +0100
@@ -1,3 +1,9 @@
+2013-03-04  Pavel Tisnovsky  <ptisnovs at redhat.com>
+
+	* src/org/RhinoTests/ScriptEngineClassTest.java:
+	Added two new tests into the ScriptEngineClassTest:
+	testDeclaredField() and testAnnotations().
+
 2013-03-01  Pavel Tisnovsky  <ptisnovs at redhat.com>
 
 	* src/org/RhinoTests/ScriptExceptionClassTest.java:
diff -r 2d0f54d43a5e -r 4c9480106120 src/org/RhinoTests/ScriptEngineClassTest.java
--- a/src/org/RhinoTests/ScriptEngineClassTest.java	Fri Mar 01 10:26:45 2013 +0100
+++ b/src/org/RhinoTests/ScriptEngineClassTest.java	Mon Mar 04 09:54:38 2013 +0100
@@ -508,6 +508,47 @@
     }
 
     /**
+     * Test for method javax.script.ScriptEngine.getClass().getDeclaredField()
+     */
+    protected void testGetDeclaredField() {
+        // following declared fields should exists
+        final String[] declaredFieldsThatShouldExist_jdk6 = {
+            "ARGV",
+            "FILENAME",
+            "ENGINE",
+            "ENGINE_VERSION",
+            "NAME",
+            "LANGUAGE",
+            "LANGUAGE_VERSION",
+        };
+        final String[] declaredFieldsThatShouldExist_jdk7 = {
+            "ARGV",
+            "FILENAME",
+            "ENGINE",
+            "ENGINE_VERSION",
+            "NAME",
+            "LANGUAGE",
+            "LANGUAGE_VERSION",
+        };
+
+        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.scriptEngineClass.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.ScriptEngine.getClass().getMethods()
      */
     protected void testGetMethods() {
@@ -668,6 +709,29 @@
     }
 
     /**
+     * Test for method javax.script.ScriptEngine.getClass().getAnnotation()
+     */
+    protected void testGetAnnotation() {
+        Annotation annotation;
+        annotation = this.scriptEngineClass.getAnnotation(java.lang.annotation.Annotation.class);
+        assertNull(annotation, "annotation java.lang.annotation.Annotation should not be returned");
+        annotation = this.scriptEngineClass.getAnnotation(java.lang.annotation.Documented.class);
+        assertNull(annotation, "annotation java.lang.annotation.Documented should not be returned");
+        annotation = this.scriptEngineClass.getAnnotation(java.lang.annotation.Inherited.class);
+        assertNull(annotation, "annotation java.lang.annotation.Inherited should not be returned");
+        annotation = this.scriptEngineClass.getAnnotation(java.lang.annotation.Retention.class);
+        assertNull(annotation, "annotation java.lang.annotation.Retention should not be returned");
+        annotation = this.scriptEngineClass.getAnnotation(java.lang.annotation.Target.class);
+        assertNull(annotation, "annotation java.lang.annotation.Target should not be returned");
+        annotation = this.scriptEngineClass.getAnnotation(java.lang.Deprecated.class);
+        assertNull(annotation, "annotation java.lang.Deprecated should not be returned");
+        annotation = this.scriptEngineClass.getAnnotation(java.lang.Override.class);
+        assertNull(annotation, "annotation java.lang.Override should not be returned");
+        annotation = this.scriptEngineClass.getAnnotation(java.lang.SuppressWarnings.class);
+        assertNull(annotation, "annotation java.lang.SuppressWarnings should not be returned");
+    }
+
+    /**
      * Test for instanceof operator applied to a class javax.script.ScriptEngine
      */
     @SuppressWarnings("cast")



More information about the distro-pkg-dev mailing list