/hg/rhino-tests: Added three new tests into the CompilableClassT...
ptisnovs at icedtea.classpath.org
ptisnovs at icedtea.classpath.org
Mon Feb 18 00:25:08 PST 2013
changeset 2c2c41e80104 in /hg/rhino-tests
details: http://icedtea.classpath.org/hg/rhino-tests?cmd=changeset;node=2c2c41e80104
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Mon Feb 18 09:28:18 2013 +0100
Added three new tests into the CompilableClassTest suite:
testGetAnnotation(), testGetComponentType() and testGetDeclaredFields().
diffstat:
ChangeLog | 6 +++
src/org/RhinoTests/CompilableClassTest.java | 58 +++++++++++++++++++++++++++++
2 files changed, 64 insertions(+), 0 deletions(-)
diffs (88 lines):
diff -r 9653e4891dda -r 2c2c41e80104 ChangeLog
--- a/ChangeLog Fri Feb 08 10:50:39 2013 +0100
+++ b/ChangeLog Mon Feb 18 09:28:18 2013 +0100
@@ -1,3 +1,9 @@
+2013-02-18 Pavel Tisnovsky <ptisnovs at redhat.com>
+
+ * src/org/RhinoTests/CompilableClassTest.java:
+ Added three new tests into the CompilableClassTest suite:
+ testGetAnnotation(), testGetComponentType() and testGetDeclaredFields().
+
2013-02-08 Pavel Tisnovsky <ptisnovs at redhat.com>
* src/org/RhinoTests/ScriptEngineManagerClassTest.java:
diff -r 9653e4891dda -r 2c2c41e80104 src/org/RhinoTests/CompilableClassTest.java
--- a/src/org/RhinoTests/CompilableClassTest.java Fri Feb 08 10:50:39 2013 +0100
+++ b/src/org/RhinoTests/CompilableClassTest.java Mon Feb 18 09:28:18 2013 +0100
@@ -448,6 +448,33 @@
}
/**
+ * Test for method javax.script.Compilable.getClass().getDeclaredField()
+ */
+ protected void testGetDeclaredField() {
+ // following declared fields should exists
+ final String[] declaredFieldsThatShouldExist_jdk6 = {
+ };
+ final String[] declaredFieldsThatShouldExist_jdk7 = {
+ };
+
+ 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.compilableClass.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.Compilable.getClass().getMethods()
*/
protected void testGetMethods() {
@@ -560,6 +587,37 @@
}
/**
+ * Test for method javax.script.Compilable.getClass().getAnnotation()
+ */
+ protected void testGetAnnotation() {
+ Annotation annotation;
+ annotation = this.compilableClass.getAnnotation(java.lang.annotation.Annotation.class);
+ assertNull(annotation, "annotation java.lang.annotation.Annotation should not be returned");
+ annotation = this.compilableClass.getAnnotation(java.lang.annotation.Documented.class);
+ assertNull(annotation, "annotation java.lang.annotation.Documented should not be returned");
+ annotation = this.compilableClass.getAnnotation(java.lang.annotation.Inherited.class);
+ assertNull(annotation, "annotation java.lang.annotation.Inherited should not be returned");
+ annotation = this.compilableClass.getAnnotation(java.lang.annotation.Retention.class);
+ assertNull(annotation, "annotation java.lang.annotation.Retention should not be returned");
+ annotation = this.compilableClass.getAnnotation(java.lang.annotation.Target.class);
+ assertNull(annotation, "annotation java.lang.annotation.Target should not be returned");
+ annotation = this.compilableClass.getAnnotation(java.lang.Deprecated.class);
+ assertNull(annotation, "annotation java.lang.Deprecated should not be returned");
+ annotation = this.compilableClass.getAnnotation(java.lang.Override.class);
+ assertNull(annotation, "annotation java.lang.Override should not be returned");
+ annotation = this.compilableClass.getAnnotation(java.lang.SuppressWarnings.class);
+ assertNull(annotation, "annotation java.lang.SuppressWarnings should not be returned");
+ }
+
+ /**
+ * Test for method javax.script.Compilable.getClass().getComponentType()
+ */
+ protected void testGetComponentType() {
+ Class<?> cls = this.compilableClass.getComponentType();
+ assertNull(cls, "getComponentType() should returns null");
+ }
+
+ /**
* Test for method javax.script.Compilable.getClass().getClasses()
*/
protected void testGetClasses() {
More information about the distro-pkg-dev
mailing list