/hg/rhino-tests: Added two new tests into the ScriptExceptionCla...
ptisnovs at icedtea.classpath.org
ptisnovs at icedtea.classpath.org
Fri Mar 1 01:23:41 PST 2013
changeset 2d0f54d43a5e in /hg/rhino-tests
details: http://icedtea.classpath.org/hg/rhino-tests?cmd=changeset;node=2d0f54d43a5e
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Fri Mar 01 10:26:45 2013 +0100
Added two new tests into the ScriptExceptionClassTest:
testGetMethod() and testGetDeclaredMethod().
diffstat:
ChangeLog | 6 +
src/org/RhinoTests/ScriptExceptionClassTest.java | 114 +++++++++++++++++++++++
2 files changed, 120 insertions(+), 0 deletions(-)
diffs (137 lines):
diff -r 90ac8a0ff3c4 -r 2d0f54d43a5e ChangeLog
--- a/ChangeLog Thu Feb 28 11:12:22 2013 +0100
+++ b/ChangeLog Fri Mar 01 10:26:45 2013 +0100
@@ -1,3 +1,9 @@
+2013-03-01 Pavel Tisnovsky <ptisnovs at redhat.com>
+
+ * src/org/RhinoTests/ScriptExceptionClassTest.java:
+ Added two new tests into the ScriptExceptionClassTest:
+ testGetMethod() and testGetDeclaredMethod().
+
2013-02-28 Pavel Tisnovsky <ptisnovs at redhat.com>
* src/org/RhinoTests/ScriptEngineClassTest.java:
diff -r 90ac8a0ff3c4 -r 2d0f54d43a5e src/org/RhinoTests/ScriptExceptionClassTest.java
--- a/src/org/RhinoTests/ScriptExceptionClassTest.java Thu Feb 28 11:12:22 2013 +0100
+++ b/src/org/RhinoTests/ScriptExceptionClassTest.java Fri Mar 01 10:26:45 2013 +0100
@@ -658,6 +658,120 @@
}
/**
+ * Test for method javax.script.ScriptException.getClass().getMethod()
+ */
+ protected void testGetMethod() throws ClassNotFoundException {
+ // following methods should exist
+ Map<String, Class[]> methodsThatShouldExist_jdk6 = new TreeMap<String, Class[]>();
+ methodsThatShouldExist_jdk6.put("getMessage", new Class[] {});
+ methodsThatShouldExist_jdk6.put("getFileName", new Class[] {});
+ methodsThatShouldExist_jdk6.put("getLineNumber", new Class[] {});
+ methodsThatShouldExist_jdk6.put("getColumnNumber", new Class[] {});
+ methodsThatShouldExist_jdk6.put("printStackTrace", new Class[] {});
+ methodsThatShouldExist_jdk6.put("printStackTrace", new Class[] {java.io.PrintStream.class});
+ methodsThatShouldExist_jdk6.put("printStackTrace", new Class[] {java.io.PrintWriter.class});
+ methodsThatShouldExist_jdk6.put("fillInStackTrace", new Class[] {});
+ methodsThatShouldExist_jdk6.put("getCause", new Class[] {});
+ methodsThatShouldExist_jdk6.put("initCause", new Class[] {java.lang.Throwable.class});
+ methodsThatShouldExist_jdk6.put("toString", new Class[] {});
+ methodsThatShouldExist_jdk6.put("getLocalizedMessage", new Class[] {});
+ methodsThatShouldExist_jdk6.put("getStackTrace", new Class[] {});
+ methodsThatShouldExist_jdk6.put("setStackTrace", new Class[] {Class.forName("[Ljava.lang.StackTraceElement;")});
+ methodsThatShouldExist_jdk6.put("wait", new Class[] {long.class});
+ methodsThatShouldExist_jdk6.put("wait", new Class[] {long.class, int.class});
+ methodsThatShouldExist_jdk6.put("wait", new Class[] {});
+ methodsThatShouldExist_jdk6.put("hashCode", new Class[] {});
+ methodsThatShouldExist_jdk6.put("getClass", new Class[] {});
+ methodsThatShouldExist_jdk6.put("equals", new Class[] {java.lang.Object.class});
+ methodsThatShouldExist_jdk6.put("notify", new Class[] {});
+ methodsThatShouldExist_jdk6.put("notifyAll", new Class[] {});
+
+ Map<String, Class[]> methodsThatShouldExist_jdk7 = new TreeMap<String, Class[]>();
+ methodsThatShouldExist_jdk7.put("getMessage", new Class[] {});
+ methodsThatShouldExist_jdk7.put("getFileName", new Class[] {});
+ methodsThatShouldExist_jdk7.put("getLineNumber", new Class[] {});
+ methodsThatShouldExist_jdk7.put("getColumnNumber", new Class[] {});
+ methodsThatShouldExist_jdk7.put("printStackTrace", new Class[] {});
+ methodsThatShouldExist_jdk7.put("printStackTrace", new Class[] {java.io.PrintWriter.class});
+ methodsThatShouldExist_jdk7.put("printStackTrace", new Class[] {java.io.PrintStream.class});
+ methodsThatShouldExist_jdk7.put("fillInStackTrace", new Class[] {});
+ methodsThatShouldExist_jdk7.put("getCause", new Class[] {});
+ methodsThatShouldExist_jdk7.put("initCause", new Class[] {java.lang.Throwable.class});
+ methodsThatShouldExist_jdk7.put("toString", new Class[] {});
+ methodsThatShouldExist_jdk7.put("getLocalizedMessage", new Class[] {});
+ methodsThatShouldExist_jdk7.put("getStackTrace", new Class[] {});
+ methodsThatShouldExist_jdk7.put("setStackTrace", new Class[] {Class.forName("[Ljava.lang.StackTraceElement;")});
+ methodsThatShouldExist_jdk7.put("addSuppressed", new Class[] {java.lang.Throwable.class});
+ methodsThatShouldExist_jdk7.put("getSuppressed", new Class[] {});
+ methodsThatShouldExist_jdk7.put("wait", new Class[] {long.class, int.class});
+ methodsThatShouldExist_jdk7.put("wait", new Class[] {long.class});
+ methodsThatShouldExist_jdk7.put("wait", new Class[] {});
+ methodsThatShouldExist_jdk7.put("equals", new Class[] {java.lang.Object.class});
+ methodsThatShouldExist_jdk7.put("hashCode", new Class[] {});
+ methodsThatShouldExist_jdk7.put("getClass", new Class[] {});
+ methodsThatShouldExist_jdk7.put("notify", new Class[] {});
+ methodsThatShouldExist_jdk7.put("notifyAll", new 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.scriptExceptionClass.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.ScriptException.getClass().getDeclaredMethod()
+ */
+ protected void testGetDeclaredMethod() {
+ // following methods should exist
+ Map<String, Class[]> methodsThatShouldExist_jdk6 = new TreeMap<String, Class[]>();
+ methodsThatShouldExist_jdk6.put("getMessage", new Class[] {});
+ methodsThatShouldExist_jdk6.put("getFileName", new Class[] {});
+ methodsThatShouldExist_jdk6.put("getLineNumber", new Class[] {});
+ methodsThatShouldExist_jdk6.put("getColumnNumber", new Class[] {});
+
+ Map<String, Class[]> methodsThatShouldExist_jdk7 = new TreeMap<String, Class[]>();
+ methodsThatShouldExist_jdk7.put("getMessage", new Class[] {});
+ methodsThatShouldExist_jdk7.put("getFileName", new Class[] {});
+ methodsThatShouldExist_jdk7.put("getLineNumber", new Class[] {});
+ methodsThatShouldExist_jdk7.put("getColumnNumber", new 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.scriptExceptionClass.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.ScriptException.getClass().getAnnotations()
*/
protected void testGetAnnotations() {
More information about the distro-pkg-dev
mailing list