/hg/rhino-tests: Added two new tests getGenericSuperclass() and ...
ptisnovs at icedtea.classpath.org
ptisnovs at icedtea.classpath.org
Mon Jul 15 02:52:16 PDT 2013
changeset d1d3441dc622 in /hg/rhino-tests
details: http://icedtea.classpath.org/hg/rhino-tests?cmd=changeset;node=d1d3441dc622
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Mon Jul 15 11:55:59 2013 +0200
Added two new tests getGenericSuperclass() and getGenericInterfaces()
into ScriptExceptionClassTest.
diffstat:
ChangeLog | 6 ++
src/org/RhinoTests/ScriptExceptionClassTest.java | 62 +++++++++++++++++++++++-
2 files changed, 67 insertions(+), 1 deletions(-)
diffs (124 lines):
diff -r a6b644899da0 -r d1d3441dc622 ChangeLog
--- a/ChangeLog Thu Jul 04 13:09:05 2013 +0200
+++ b/ChangeLog Mon Jul 15 11:55:59 2013 +0200
@@ -1,3 +1,9 @@
+2013-07-15 Pavel Tisnovsky <ptisnovs at redhat.com>
+
+ * src/org/RhinoTests/ScriptExceptionClassTest.java:
+ Added two new tests getGenericSuperclass() and getGenericInterfaces()
+ into ScriptExceptionClassTest.
+
2013-07-04 Pavel Tisnovsky <ptisnovs at redhat.com>
* src/org/RhinoTests/CompilableClassTest.java:
diff -r a6b644899da0 -r d1d3441dc622 src/org/RhinoTests/ScriptExceptionClassTest.java
--- a/src/org/RhinoTests/ScriptExceptionClassTest.java Thu Jul 04 13:09:05 2013 +0200
+++ b/src/org/RhinoTests/ScriptExceptionClassTest.java Mon Jul 15 11:55:59 2013 +0200
@@ -52,12 +52,13 @@
import java.lang.reflect.Field;
import java.lang.reflect.Method;
import java.lang.reflect.Modifier;
+import java.lang.reflect.Type;
+import java.lang.reflect.TypeVariable;
import javax.script.ScriptException;
-
/**
* Set of tests which check the API of ScriptException class using
* Java reflection API.
@@ -285,6 +286,7 @@
*/
protected void testGetConstructors() {
// map of constructors which should exists
+ @SuppressWarnings("unused")
Map<String, String> testedConstructors = null;
Map<String, String> testedConstructors_jdk6 = new HashMap<String, String>();
Map<String, String> testedConstructors_jdk7 = new HashMap<String, String>();
@@ -338,6 +340,7 @@
*/
protected void testGetDeclaredConstructors() {
// map of constructors which should exists
+ @SuppressWarnings("unused")
Map<String, String> testedConstructors = null;
Map<String, String> testedConstructors_jdk6 = new HashMap<String, String>();
Map<String, String> testedConstructors_jdk7 = new HashMap<String, String>();
@@ -1013,12 +1016,15 @@
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
};
final String[] annotationsThatShouldExists_jdk8 = {
+ // this should be really empty
};
// get all annotations
@@ -1173,6 +1179,60 @@
}
/**
+ * Test for method javax.script.ScriptException.getClass().getGenericSuperclass()
+ */
+ protected void testGetGenericSuperclass() {
+ Type genericSuperclass = this.scriptExceptionClass.getGenericSuperclass();
+ assertNotNull(genericSuperclass, "getGenericSuperclass() does not return null");
+ }
+
+ /**
+ * Test for method javax.script.ScriptException.getClass().getGenericInterfaces()
+ */
+ protected void testGetGenericInterfaces() {
+ // array of interface names that should exists
+ final String[] genericInterfaceNames_jdk6 = {
+ };
+
+ final String[] genericInterfaceNames_jdk7 = {
+ };
+
+ final String[] genericInterfaceNames_jdk8 = {
+ };
+
+ // get the right array of field signatures
+ String[] genericInterfaceNames = null;
+ switch (getJavaVersion()) {
+ case 6:
+ genericInterfaceNames = genericInterfaceNames_jdk6;
+ break;
+ case 7:
+ genericInterfaceNames = genericInterfaceNames_jdk7;
+ break;
+ case 8:
+ genericInterfaceNames = genericInterfaceNames_jdk8;
+ break;
+ }
+
+ // get all generic interfaces
+ Type[] genericInterfaces = this.scriptExceptionClass.getGenericInterfaces();
+ assertNotNull(genericInterfaces, "getGenericInterfaces() returns null");
+ assertEquals(0, genericInterfaces.length, "array of wrong size returned by getGenericInterfaces " + genericInterfaces.length);
+
+ // and transform the array into a list of field names
+ List<String> interfacesAsString = new ArrayList<String>();
+ for (Type genericInterface : genericInterfaces) {
+ interfacesAsString.add(genericInterface.toString());
+ }
+
+ // check if all required interfaces really exists
+ for (String interfaceThatShouldExists : genericInterfaceNames) {
+ assertTrue(interfacesAsString.contains(interfaceThatShouldExists),
+ "interface " + interfaceThatShouldExists + " not found");
+ }
+ }
+
+ /**
* Test for instanceof operator applied to a class javax.script.ScriptException
*/
@SuppressWarnings("cast")
More information about the distro-pkg-dev
mailing list