/hg/rhino-tests: Added three new tests into the test case src/or...

ptisnovs at icedtea.classpath.org ptisnovs at icedtea.classpath.org
Mon Dec 10 01:35:18 PST 2012


changeset 2c37c25280fa in /hg/rhino-tests
details: http://icedtea.classpath.org/hg/rhino-tests?cmd=changeset;node=2c37c25280fa
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Mon Dec 10 10:38:24 2012 +0100

	Added three new tests into the test case src/org/RhinoTests/BindingsClassTest.java.


diffstat:

 ChangeLog                                 |   8 +++
 src/org/RhinoTests/BindingsClassTest.java |  80 +++++++++++++++++++++++++++++++
 2 files changed, 88 insertions(+), 0 deletions(-)

diffs (133 lines):

diff -r bfef6c437043 -r 2c37c25280fa ChangeLog
--- a/ChangeLog	Fri Dec 07 14:01:56 2012 +0100
+++ b/ChangeLog	Mon Dec 10 10:38:24 2012 +0100
@@ -1,3 +1,11 @@
+2012-12-10  Pavel Tisnovsky  <ptisnovs at redhat.com>
+
+	* src/org/RhinoTests/BindingsClassTest.java:
+	Added three new tests into this test case:
+	- getAnnotations()
+	- getDeclaredAnnotations()
+	- getField()
+
 2012-12-07  Pavel Tisnovsky  <ptisnovs at redhat.com>
 
 	* src/org/RhinoTests/AbstractScriptEngineClassTest.java:
diff -r bfef6c437043 -r 2c37c25280fa src/org/RhinoTests/BindingsClassTest.java
--- a/src/org/RhinoTests/BindingsClassTest.java	Fri Dec 07 14:01:56 2012 +0100
+++ b/src/org/RhinoTests/BindingsClassTest.java	Mon Dec 10 10:38:24 2012 +0100
@@ -46,6 +46,7 @@
 import java.util.Map;
 import java.util.HashMap;
 
+import java.lang.annotation.Annotation;
 import java.lang.reflect.Constructor;
 import java.lang.reflect.Field;
 import java.lang.reflect.Method;
@@ -318,6 +319,7 @@
     protected void testGetFields() {
         // following fields should exists
         final String[] fieldsThatShouldExists = {
+            // this should be really empty
         };
         // get all fields
         Field[] fields = this.bindingsClass.getFields();
@@ -339,6 +341,7 @@
     protected void testGetDeclaredFields() {
         // following fields should be declared
         final String[] fieldsThatShouldExists = {
+            // this should be really empty
         };
         // get all declared fields
         Field[] declaredFields = this.bindingsClass.getDeclaredFields();
@@ -355,6 +358,29 @@
     }
 
     /**
+     * Test for method javax.script.Bindings.getClass().getField()
+     */
+    protected void testGetField() {
+        // following fields should exists
+        final String[] fieldsThatShouldExists = {
+            // this should be really empty
+        };
+        // check if all required fields really exists
+        for (String fieldThatShouldExists : fieldsThatShouldExists) {
+            try {
+                Field field = this.bindingsClass.getField(fieldThatShouldExists);
+                String fieldName = field.getName();
+                assertTrue(fieldName.equals(fieldThatShouldExists),
+                        "field " + fieldThatShouldExists + " not found");
+            }
+            catch (Exception e) {
+                e.printStackTrace();
+                throw new AssertionError(e.getMessage());
+            }
+        }
+    }
+
+    /**
      * Test for method javax.script.Bindings.getClass().getMethods()
      */
     protected void testGetMethods() {
@@ -447,6 +473,60 @@
     }
 
     /**
+     * Test for method javax.script.Bindings.getClass().getAnnotations()
+     */
+    protected void testGetAnnotations() {
+        // following annotations should be provided
+        final String[] annotationsThatShouldExists_jdk6 = {
+            // this should be really empty
+        };
+
+        final String[] annotationsThatShouldExists_jdk7 = {
+            // this should be really empty
+        };
+
+        // get all annotations
+        Annotation[] annotations = this.bindingsClass.getAnnotations();
+        // and transform the array into a list of annotation names
+        List<String> annotationsAsString = new ArrayList<String>();
+        for (Annotation annotation : annotations) {
+            annotationsAsString.add(annotation.toString());
+        }
+        String[] annotationsThatShouldExists = getJavaVersion() < 7 ? annotationsThatShouldExists_jdk6 : annotationsThatShouldExists_jdk7;
+        // check if all required annotations really exists
+        for (String annotationThatShouldExists : annotationsThatShouldExists) {
+            assertTrue(annotationsAsString.contains(annotationThatShouldExists),
+                    "annotation " + annotationThatShouldExists + " not found");
+        }
+    }
+
+    /**
+     * Test for method javax.script.Bindings.getClass().getDeclaredAnnotations()
+     */
+    protected void testGetDeclaredAnnotations() {
+        // following annotations should be provided
+        final String[] annotationsThatShouldExists_jdk6 = {
+        };
+
+        final String[] annotationsThatShouldExists_jdk7 = {
+        };
+
+        // get all annotations
+        Annotation[] annotations = this.bindingsClass.getDeclaredAnnotations();
+        // and transform the array into a list of annotation names
+        List<String> annotationsAsString = new ArrayList<String>();
+        for (Annotation annotation : annotations) {
+            annotationsAsString.add(annotation.toString());
+        }
+        String[] annotationsThatShouldExists = getJavaVersion() < 7 ? annotationsThatShouldExists_jdk6 : annotationsThatShouldExists_jdk7;
+        // check if all required annotations really exists
+        for (String annotationThatShouldExists : annotationsThatShouldExists) {
+            assertTrue(annotationsAsString.contains(annotationThatShouldExists),
+                    "annotation " + annotationThatShouldExists + " not found");
+        }
+    }
+
+    /**
      * Test for instanceof operator applied to a class javax.script.Bindings
      */
     @SuppressWarnings("cast")



More information about the distro-pkg-dev mailing list