/hg/rhino-tests: Added three tests into the ScriptEngineFactoryC...
ptisnovs at icedtea.classpath.org
ptisnovs at icedtea.classpath.org
Tue Apr 2 00:46:42 PDT 2013
changeset 3db7d0c4c031 in /hg/rhino-tests
details: http://icedtea.classpath.org/hg/rhino-tests?cmd=changeset;node=3db7d0c4c031
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Tue Apr 02 09:49:53 2013 +0200
Added three tests into the ScriptEngineFactoryClassTest:
getDeclaredField, getMethod and getDeclaredMethod.
diffstat:
ChangeLog | 6 +
src/org/RhinoTests/ScriptEngineFactoryClassTest.java | 135 +++++++++++++++++++
2 files changed, 141 insertions(+), 0 deletions(-)
diffs (165 lines):
diff -r 2e897a757331 -r 3db7d0c4c031 ChangeLog
--- a/ChangeLog Fri Mar 29 10:49:24 2013 +0100
+++ b/ChangeLog Tue Apr 02 09:49:53 2013 +0200
@@ -1,3 +1,9 @@
+2013-04-02 Pavel Tisnovsky <ptisnovs at redhat.com>
+
+ * src/org/RhinoTests/ScriptEngineFactoryClassTest.java:
+ Added three tests into the ScriptEngineFactoryClassTest:
+ getDeclaredField, getMethod and getDeclaredMethod.
+
2013-03-29 Pavel Tisnovsky <ptisnovs at redhat.com>
* src/org/RhinoTests/ScriptEngineManagerClassTest.java:
diff -r 2e897a757331 -r 3db7d0c4c031 src/org/RhinoTests/ScriptEngineFactoryClassTest.java
--- a/src/org/RhinoTests/ScriptEngineFactoryClassTest.java Fri Mar 29 10:49:24 2013 +0100
+++ b/src/org/RhinoTests/ScriptEngineFactoryClassTest.java Tue Apr 02 09:49:53 2013 +0200
@@ -466,6 +466,33 @@
}
/**
+ * Test for method javax.script.ScriptEngineFactory.getClass().getDeclaredField()
+ */
+ protected void testGetDeclaredField() {
+ // following declared fields should exists
+ final String[] declaredFieldsThatShouldExist_jdk6 = {
+ };
+ final String[] declaredFieldsThatShouldExist_jdk7 = {
+ };
+
+ 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.scriptEngineFactoryClass.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.ScriptEngineFactory.getClass().getMethods()
*/
protected void testGetMethods() {
@@ -566,6 +593,114 @@
}
/**
+ * Test for method javax.script.ScriptEngineFactory.getClass().getMethod()
+ */
+ protected void testGetMethod() {
+ // following methods should exist
+ Map<String, Class[]> methodsThatShouldExist_jdk6 = new TreeMap<String, Class[]>();
+ methodsThatShouldExist_jdk6.put("getEngineName", new Class[] {});
+ methodsThatShouldExist_jdk6.put("getEngineVersion", new Class[] {});
+ methodsThatShouldExist_jdk6.put("getExtensions", new Class[] {});
+ methodsThatShouldExist_jdk6.put("getMimeTypes", new Class[] {});
+ methodsThatShouldExist_jdk6.put("getNames", new Class[] {});
+ methodsThatShouldExist_jdk6.put("getLanguageName", new Class[] {});
+ methodsThatShouldExist_jdk6.put("getLanguageVersion", new Class[] {});
+ methodsThatShouldExist_jdk6.put("getParameter", new Class[] {java.lang.String.class});
+ methodsThatShouldExist_jdk6.put("getMethodCallSyntax", new Class[] {java.lang.String.class, java.lang.String.class, String[].class});
+ methodsThatShouldExist_jdk6.put("getOutputStatement", new Class[] {java.lang.String.class});
+ methodsThatShouldExist_jdk6.put("getProgram", new Class[] {String[].class});
+ methodsThatShouldExist_jdk6.put("getScriptEngine", new Class[] {});
+
+ Map<String, Class[]> methodsThatShouldExist_jdk7 = new TreeMap<String, Class[]>();
+ methodsThatShouldExist_jdk7.put("getExtensions", new Class[] {});
+ methodsThatShouldExist_jdk7.put("getEngineName", new Class[] {});
+ methodsThatShouldExist_jdk7.put("getEngineVersion", new Class[] {});
+ methodsThatShouldExist_jdk7.put("getLanguageName", new Class[] {});
+ methodsThatShouldExist_jdk7.put("getLanguageVersion", new Class[] {});
+ methodsThatShouldExist_jdk7.put("getMethodCallSyntax", new Class[] {java.lang.String.class, java.lang.String.class, String[].class});
+ methodsThatShouldExist_jdk7.put("getMimeTypes", new Class[] {});
+ methodsThatShouldExist_jdk7.put("getNames", new Class[] {});
+ methodsThatShouldExist_jdk7.put("getOutputStatement", new Class[] {java.lang.String.class});
+ methodsThatShouldExist_jdk7.put("getParameter", new Class[] {java.lang.String.class});
+ methodsThatShouldExist_jdk7.put("getProgram", new Class[] {String[].class});
+ methodsThatShouldExist_jdk7.put("getScriptEngine", 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.scriptEngineFactoryClass.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.ScriptEngineFactory.getClass().getDeclaredMethod()
+ */
+ protected void testGetDeclaredMethod() {
+ // following methods should exist
+ Map<String, Class[]> methodsThatShouldExist_jdk6 = new TreeMap<String, Class[]>();
+ methodsThatShouldExist_jdk6.put("getEngineName", new Class[] {});
+ methodsThatShouldExist_jdk6.put("getEngineVersion", new Class[] {});
+ methodsThatShouldExist_jdk6.put("getExtensions", new Class[] {});
+ methodsThatShouldExist_jdk6.put("getMimeTypes", new Class[] {});
+ methodsThatShouldExist_jdk6.put("getNames", new Class[] {});
+ methodsThatShouldExist_jdk6.put("getLanguageName", new Class[] {});
+ methodsThatShouldExist_jdk6.put("getLanguageVersion", new Class[] {});
+ methodsThatShouldExist_jdk6.put("getParameter", new Class[] {java.lang.String.class});
+ methodsThatShouldExist_jdk6.put("getMethodCallSyntax", new Class[] {java.lang.String.class, java.lang.String.class, String[].class});
+ methodsThatShouldExist_jdk6.put("getOutputStatement", new Class[] {java.lang.String.class});
+ methodsThatShouldExist_jdk6.put("getProgram", new Class[] {String[].class});
+ methodsThatShouldExist_jdk6.put("getScriptEngine", new Class[] {});
+
+ Map<String, Class[]> methodsThatShouldExist_jdk7 = new TreeMap<String, Class[]>();
+ methodsThatShouldExist_jdk7.put("getExtensions", new Class[] {});
+ methodsThatShouldExist_jdk7.put("getEngineName", new Class[] {});
+ methodsThatShouldExist_jdk7.put("getEngineVersion", new Class[] {});
+ methodsThatShouldExist_jdk7.put("getLanguageName", new Class[] {});
+ methodsThatShouldExist_jdk7.put("getLanguageVersion", new Class[] {});
+ methodsThatShouldExist_jdk7.put("getMethodCallSyntax", new Class[] {java.lang.String.class, java.lang.String.class, String[].class});
+ methodsThatShouldExist_jdk7.put("getMimeTypes", new Class[] {});
+ methodsThatShouldExist_jdk7.put("getNames", new Class[] {});
+ methodsThatShouldExist_jdk7.put("getOutputStatement", new Class[] {java.lang.String.class});
+ methodsThatShouldExist_jdk7.put("getParameter", new Class[] {java.lang.String.class});
+ methodsThatShouldExist_jdk7.put("getProgram", new Class[] {String[].class});
+ methodsThatShouldExist_jdk7.put("getScriptEngine", 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.scriptEngineFactoryClass.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.ScriptEngineFactory.getClass().getAnnotations()
*/
protected void testGetAnnotations() {
More information about the distro-pkg-dev
mailing list