/hg/rhino-tests: Three new tests added into ScriptContextClassTest:
ptisnovs at icedtea.classpath.org
ptisnovs at icedtea.classpath.org
Fri Mar 22 02:11:33 PDT 2013
changeset 9129b777f336 in /hg/rhino-tests
details: http://icedtea.classpath.org/hg/rhino-tests?cmd=changeset;node=9129b777f336
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Fri Mar 22 10:14:42 2013 +0100
Three new tests added into ScriptContextClassTest:
getMethod(), getDeclaredMethod() and getField().
diffstat:
ChangeLog | 6 +
src/org/RhinoTests/ScriptContextClassTest.java | 147 +++++++++++++++++++++++++
2 files changed, 153 insertions(+), 0 deletions(-)
diffs (177 lines):
diff -r 4e0ddaf30a61 -r 9129b777f336 ChangeLog
--- a/ChangeLog Thu Mar 21 10:51:55 2013 +0100
+++ b/ChangeLog Fri Mar 22 10:14:42 2013 +0100
@@ -1,3 +1,9 @@
+2013-03-22 Pavel Tisnovsky <ptisnovs at redhat.com>
+
+ * src/org/RhinoTests/ScriptContextClassTest.java:
+ Three new tests added into ScriptContextClassTest:
+ getMethod(), getDeclaredMethod() and getField().
+
2013-03-21 Pavel Tisnovsky <ptisnovs at redhat.com>
* src/org/RhinoTests/ScriptContextClassTest.java:
diff -r 4e0ddaf30a61 -r 9129b777f336 src/org/RhinoTests/ScriptContextClassTest.java
--- a/src/org/RhinoTests/ScriptContextClassTest.java Thu Mar 21 10:51:55 2013 +0100
+++ b/src/org/RhinoTests/ScriptContextClassTest.java Fri Mar 22 10:14:42 2013 +0100
@@ -478,6 +478,37 @@
}
/**
+ * Test for method javax.script.ScriptContext.getClass().getDeclaredField()
+ */
+ protected void testGetDeclaredField() {
+ // following declared fields should exists
+ final String[] declaredFieldsThatShouldExist_jdk6 = {
+ "ENGINE_SCOPE",
+ "GLOBAL_SCOPE",
+ };
+ final String[] declaredFieldsThatShouldExist_jdk7 = {
+ "ENGINE_SCOPE",
+ "GLOBAL_SCOPE",
+ };
+
+ 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.scriptContextClass.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.ScriptContext.getClass().getMethods()
*/
protected void testGetMethods() {
@@ -586,6 +617,122 @@
}
/**
+ * Test for method javax.script.ScriptContext.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, int.class});
+ methodsThatShouldExist_jdk6.put("getAttribute", new Class[] {java.lang.String.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.scriptContextClass.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.ScriptContext.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, int.class});
+ methodsThatShouldExist_jdk6.put("getAttribute", new Class[] {java.lang.String.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.scriptContextClass.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.ScriptContext.getClass().getAnnotations()
*/
protected void testGetAnnotations() {
More information about the distro-pkg-dev
mailing list