/hg/rhino-tests: Added two new tests into the CompilableClassTest:
ptisnovs at icedtea.classpath.org
ptisnovs at icedtea.classpath.org
Wed Feb 27 00:49:34 PST 2013
changeset 80c161c5a145 in /hg/rhino-tests
details: http://icedtea.classpath.org/hg/rhino-tests?cmd=changeset;node=80c161c5a145
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Wed Feb 27 09:52:42 2013 +0100
Added two new tests into the CompilableClassTest:
testGetMethod() and testGetDeclaredMethod().
diffstat:
ChangeLog | 6 ++
src/org/RhinoTests/CompilableClassTest.java | 68 +++++++++++++++++++++++++++++
2 files changed, 74 insertions(+), 0 deletions(-)
diffs (91 lines):
diff -r e37cbf8fe30a -r 80c161c5a145 ChangeLog
--- a/ChangeLog Tue Feb 26 09:40:55 2013 +0100
+++ b/ChangeLog Wed Feb 27 09:52:42 2013 +0100
@@ -1,3 +1,9 @@
+2013-02-27 Pavel Tisnovsky <ptisnovs at redhat.com>
+
+ * src/org/RhinoTests/CompilableClassTest.java:
+ Added two new tests into the CompilableClassTest:
+ testGetMethod() and testGetDeclaredMethod().
+
2013-02-26 Pavel Tisnovsky <ptisnovs at redhat.com>
* src/org/RhinoTests/ScriptExceptionClassTest.java:
diff -r e37cbf8fe30a -r 80c161c5a145 src/org/RhinoTests/CompilableClassTest.java
--- a/src/org/RhinoTests/CompilableClassTest.java Tue Feb 26 09:40:55 2013 +0100
+++ b/src/org/RhinoTests/CompilableClassTest.java Wed Feb 27 09:52:42 2013 +0100
@@ -553,6 +553,74 @@
}
/**
+ * Test for method javax.script.Compilable.getClass().getMethod()
+ */
+ protected void testGetMethod() {
+ // following methods should exist
+ Map<String, Class[]> methodsThatShouldExist_jdk6 = new TreeMap<String, Class[]>();
+ methodsThatShouldExist_jdk6.put("compile", new Class[] {java.lang.String.class});
+ methodsThatShouldExist_jdk6.put("compile", new Class[] {java.io.Reader.class});
+
+ Map<String, Class[]> methodsThatShouldExist_jdk7 = new TreeMap<String, Class[]>();
+ methodsThatShouldExist_jdk7.put("compile", new Class[] {java.lang.String.class});
+ methodsThatShouldExist_jdk7.put("compile", new Class[] {java.io.Reader.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.compilableClass.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.Compilable.getClass().getDeclaredMethod()
+ */
+ protected void testGetDeclaredMethod() {
+ // following methods should exist
+ Map<String, Class[]> methodsThatShouldExist_jdk6 = new TreeMap<String, Class[]>();
+ methodsThatShouldExist_jdk6.put("compile", new Class[] {java.lang.String.class});
+ methodsThatShouldExist_jdk6.put("compile", new Class[] {java.io.Reader.class});
+
+ Map<String, Class[]> methodsThatShouldExist_jdk7 = new TreeMap<String, Class[]>();
+ methodsThatShouldExist_jdk7.put("compile", new Class[] {java.lang.String.class});
+ methodsThatShouldExist_jdk7.put("compile", new Class[] {java.io.Reader.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.compilableClass.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.Compilable.getClass().getAnnotations()
*/
protected void testGetAnnotations() {
More information about the distro-pkg-dev
mailing list