/hg/rhino-tests: Two new tests added into the test suite SimpleS...
ptisnovs at icedtea.classpath.org
ptisnovs at icedtea.classpath.org
Tue Feb 5 02:05:40 PST 2013
changeset 3a438f8082f6 in /hg/rhino-tests
details: http://icedtea.classpath.org/hg/rhino-tests?cmd=changeset;node=3a438f8082f6
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Tue Feb 05 11:08:40 2013 +0100
Two new tests added into the test suite SimpleScriptContextClassTest:
getMethod() and getDeclaredMethod().
diffstat:
ChangeLog | 6 +
src/org/RhinoTests/SimpleScriptContextClassTest.java | 134 +++++++++++++++++++
2 files changed, 140 insertions(+), 0 deletions(-)
diffs (157 lines):
diff -r 95723cffb439 -r 3a438f8082f6 ChangeLog
--- a/ChangeLog Mon Feb 04 17:30:29 2013 +0100
+++ b/ChangeLog Tue Feb 05 11:08:40 2013 +0100
@@ -1,3 +1,9 @@
+2013-02-05 Pavel Tisnovsky <ptisnovs at redhat.com>
+
+ * src/org/RhinoTests/SimpleScriptContextClassTest.java:
+ Two new tests added into the test suite SimpleScriptContextClassTest:
+ getMethod() and getDeclaredMethod().
+
2013-02-04 Pavel Tisnovsky <ptisnovs at redhat.com>
* src/org/RhinoTests/CompilableClassTest.java:
diff -r 95723cffb439 -r 3a438f8082f6 src/org/RhinoTests/SimpleScriptContextClassTest.java
--- a/src/org/RhinoTests/SimpleScriptContextClassTest.java Mon Feb 04 17:30:29 2013 +0100
+++ b/src/org/RhinoTests/SimpleScriptContextClassTest.java Tue Feb 05 11:08:40 2013 +0100
@@ -548,6 +548,140 @@
}
/**
+ * Test for method javax.script.SimpleScriptContext.getClass().getMethod()
+ */
+ protected void testGetMethod() {
+ // following methods should exist
+ Map<String, Class[]> methodsThatShouldExist_jdk6 = new TreeMap<String, Class[]>();
+ methodsThatShouldExist_jdk6.put("setBindings", new Class[] {javax.script.Bindings.class, int.class});
+ methodsThatShouldExist_jdk6.put("getBindings", new Class[] {int.class});
+ methodsThatShouldExist_jdk6.put("getWriter", new Class[] {});
+ methodsThatShouldExist_jdk6.put("setWriter", new Class[] {java.io.Writer.class});
+ methodsThatShouldExist_jdk6.put("getReader", new Class[] {});
+ methodsThatShouldExist_jdk6.put("setReader", new Class[] {java.io.Reader.class});
+ methodsThatShouldExist_jdk6.put("getErrorWriter", new Class[] {});
+ methodsThatShouldExist_jdk6.put("setErrorWriter", new Class[] {java.io.Writer.class});
+ methodsThatShouldExist_jdk6.put("setAttribute", new Class[] {java.lang.String.class, java.lang.Object.class, int.class});
+ methodsThatShouldExist_jdk6.put("getAttribute", new Class[] {java.lang.String.class});
+ methodsThatShouldExist_jdk6.put("getAttribute", new Class[] {java.lang.String.class, int.class});
+ methodsThatShouldExist_jdk6.put("removeAttribute", new Class[] {java.lang.String.class, int.class});
+ methodsThatShouldExist_jdk6.put("getAttributesScope", new Class[] {java.lang.String.class});
+ methodsThatShouldExist_jdk6.put("getScopes", new Class[] {});
+ 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("toString", new 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("getErrorWriter", new Class[] {});
+ methodsThatShouldExist_jdk7.put("getBindings", new Class[] {int.class});
+ methodsThatShouldExist_jdk7.put("getReader", new Class[] {});
+ methodsThatShouldExist_jdk7.put("getWriter", new Class[] {});
+ methodsThatShouldExist_jdk7.put("setBindings", new Class[] {javax.script.Bindings.class, int.class});
+ methodsThatShouldExist_jdk7.put("setErrorWriter", new Class[] {java.io.Writer.class});
+ methodsThatShouldExist_jdk7.put("setReader", new Class[] {java.io.Reader.class});
+ methodsThatShouldExist_jdk7.put("setWriter", new Class[] {java.io.Writer.class});
+ methodsThatShouldExist_jdk7.put("getAttribute", new Class[] {java.lang.String.class});
+ methodsThatShouldExist_jdk7.put("getAttribute", new Class[] {java.lang.String.class, int.class});
+ methodsThatShouldExist_jdk7.put("getAttributesScope", new Class[] {java.lang.String.class});
+ methodsThatShouldExist_jdk7.put("getScopes", new Class[] {});
+ methodsThatShouldExist_jdk7.put("removeAttribute", new Class[] {java.lang.String.class, int.class});
+ methodsThatShouldExist_jdk7.put("setAttribute", new Class[] {java.lang.String.class, java.lang.Object.class, int.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("toString", new 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.simpleScriptContextClass.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.SimpleScriptContext.getClass().getDeclaredMethod()
+ */
+ protected void testGetDeclaredMethod() {
+ // following methods should exist
+ Map<String, Class[]> methodsThatShouldExist_jdk6 = new TreeMap<String, Class[]>();
+ methodsThatShouldExist_jdk6.put("setBindings", new Class[] {javax.script.Bindings.class, int.class});
+ methodsThatShouldExist_jdk6.put("getBindings", new Class[] {int.class});
+ methodsThatShouldExist_jdk6.put("getWriter", new Class[] {});
+ methodsThatShouldExist_jdk6.put("setWriter", new Class[] {java.io.Writer.class});
+ methodsThatShouldExist_jdk6.put("getReader", new Class[] {});
+ methodsThatShouldExist_jdk6.put("setReader", new Class[] {java.io.Reader.class});
+ methodsThatShouldExist_jdk6.put("getErrorWriter", new Class[] {});
+ methodsThatShouldExist_jdk6.put("setErrorWriter", new Class[] {java.io.Writer.class});
+ methodsThatShouldExist_jdk6.put("setAttribute", new Class[] {java.lang.String.class, java.lang.Object.class, int.class});
+ methodsThatShouldExist_jdk6.put("getAttribute", new Class[] {java.lang.String.class});
+ methodsThatShouldExist_jdk6.put("getAttribute", new Class[] {java.lang.String.class, int.class});
+ methodsThatShouldExist_jdk6.put("removeAttribute", new Class[] {java.lang.String.class, int.class});
+ methodsThatShouldExist_jdk6.put("getAttributesScope", new Class[] {java.lang.String.class});
+ methodsThatShouldExist_jdk6.put("getScopes", new Class[] {});
+
+ Map<String, Class[]> methodsThatShouldExist_jdk7 = new TreeMap<String, Class[]>();
+ methodsThatShouldExist_jdk7.put("getErrorWriter", new Class[] {});
+ methodsThatShouldExist_jdk7.put("getBindings", new Class[] {int.class});
+ methodsThatShouldExist_jdk7.put("getReader", new Class[] {});
+ methodsThatShouldExist_jdk7.put("getWriter", new Class[] {});
+ methodsThatShouldExist_jdk7.put("setBindings", new Class[] {javax.script.Bindings.class, int.class});
+ methodsThatShouldExist_jdk7.put("setErrorWriter", new Class[] {java.io.Writer.class});
+ methodsThatShouldExist_jdk7.put("setReader", new Class[] {java.io.Reader.class});
+ methodsThatShouldExist_jdk7.put("setWriter", new Class[] {java.io.Writer.class});
+ methodsThatShouldExist_jdk7.put("getAttribute", new Class[] {java.lang.String.class});
+ methodsThatShouldExist_jdk7.put("getAttribute", new Class[] {java.lang.String.class, int.class});
+ methodsThatShouldExist_jdk7.put("getAttributesScope", new Class[] {java.lang.String.class});
+ methodsThatShouldExist_jdk7.put("getScopes", new Class[] {});
+ methodsThatShouldExist_jdk7.put("removeAttribute", new Class[] {java.lang.String.class, int.class});
+ methodsThatShouldExist_jdk7.put("setAttribute", new Class[] {java.lang.String.class, java.lang.Object.class, int.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.simpleScriptContextClass.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.SimpleScriptContext.getClass().getAnnotations()
*/
protected void testGetAnnotations() {
More information about the distro-pkg-dev
mailing list