/hg/rhino-tests: Added seven new tests into the ScriptEngineClas...
ptisnovs at icedtea.classpath.org
ptisnovs at icedtea.classpath.org
Tue Mar 26 01:18:44 PDT 2013
changeset 3f01a2f5aaf0 in /hg/rhino-tests
details: http://icedtea.classpath.org/hg/rhino-tests?cmd=changeset;node=3f01a2f5aaf0
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Tue Mar 26 09:21:35 2013 +0100
Added seven new tests into the ScriptEngineClassTest test suite:
testGetComponentType, testGetClasses, testGetDeclaredClasses,
testGetDeclaringClass, testGetEnclosingClass, testGetEnclosingConstructor
and testGetEnclosingMethod.
diffstat:
ChangeLog | 8 ++
src/org/RhinoTests/ScriptEngineClassTest.java | 74 ++++++++++++++++++++++++--
2 files changed, 74 insertions(+), 8 deletions(-)
diffs (143 lines):
diff -r 9129b777f336 -r 3f01a2f5aaf0 ChangeLog
--- a/ChangeLog Fri Mar 22 10:14:42 2013 +0100
+++ b/ChangeLog Tue Mar 26 09:21:35 2013 +0100
@@ -1,3 +1,11 @@
+2013-03-26 Pavel Tisnovsky <ptisnovs at redhat.com>
+
+ * src/org/RhinoTests/ScriptEngineClassTest.java:
+ Added seven new tests into the ScriptEngineClassTest test suite:
+ testGetComponentType, testGetClasses, testGetDeclaredClasses,
+ testGetDeclaringClass, testGetEnclosingClass, testGetEnclosingConstructor
+ and testGetEnclosingMethod.
+
2013-03-22 Pavel Tisnovsky <ptisnovs at redhat.com>
* src/org/RhinoTests/ScriptContextClassTest.java:
diff -r 9129b777f336 -r 3f01a2f5aaf0 src/org/RhinoTests/ScriptEngineClassTest.java
--- a/src/org/RhinoTests/ScriptEngineClassTest.java Fri Mar 22 10:14:42 2013 +0100
+++ b/src/org/RhinoTests/ScriptEngineClassTest.java Tue Mar 26 09:21:35 2013 +0100
@@ -553,7 +553,7 @@
*/
protected void testGetMethods() {
// following methods should be inherited
- final String[] methodsThatShouldExists_jdk6 = {
+ final String[] methodsThatShouldExist_jdk6 = {
"public abstract java.lang.Object javax.script.ScriptEngine.eval(java.io.Reader) throws javax.script.ScriptException",
"public abstract java.lang.Object javax.script.ScriptEngine.eval(java.io.Reader,javax.script.Bindings) throws javax.script.ScriptException",
"public abstract java.lang.Object javax.script.ScriptEngine.eval(java.io.Reader,javax.script.ScriptContext) throws javax.script.ScriptException",
@@ -570,7 +570,7 @@
"public abstract void javax.script.ScriptEngine.setContext(javax.script.ScriptContext)",
};
- final String[] methodsThatShouldExists_jdk7 = {
+ final String[] methodsThatShouldExist_jdk7 = {
"public abstract java.lang.Object javax.script.ScriptEngine.eval(java.io.Reader) throws javax.script.ScriptException",
"public abstract java.lang.Object javax.script.ScriptEngine.eval(java.io.Reader,javax.script.Bindings) throws javax.script.ScriptException",
"public abstract java.lang.Object javax.script.ScriptEngine.eval(java.io.Reader,javax.script.ScriptContext) throws javax.script.ScriptException",
@@ -594,9 +594,9 @@
for (Method method : methods) {
methodsAsString.add(method.toString());
}
- String[] methodsThatShouldExists = getJavaVersion() < 7 ? methodsThatShouldExists_jdk6 : methodsThatShouldExists_jdk7;
+ String[] methodsThatShouldExist = getJavaVersion() < 7 ? methodsThatShouldExist_jdk6 : methodsThatShouldExist_jdk7;
// check if all required methods really exists
- for (String methodThatShouldExists : methodsThatShouldExists) {
+ for (String methodThatShouldExists : methodsThatShouldExist) {
assertTrue(methodsAsString.contains(methodThatShouldExists),
"method " + methodThatShouldExists + " not found");
}
@@ -607,7 +607,7 @@
*/
protected void testGetDeclaredMethods() {
// following methods should be declared
- final String[] declaredMethodsThatShouldExists_jdk6 = {
+ final String[] declaredMethodsThatShouldExist_jdk6 = {
"public abstract java.lang.Object javax.script.ScriptEngine.eval(java.io.Reader) throws javax.script.ScriptException",
"public abstract java.lang.Object javax.script.ScriptEngine.eval(java.io.Reader,javax.script.Bindings) throws javax.script.ScriptException",
"public abstract java.lang.Object javax.script.ScriptEngine.eval(java.io.Reader,javax.script.ScriptContext) throws javax.script.ScriptException",
@@ -624,7 +624,7 @@
"public abstract void javax.script.ScriptEngine.setContext(javax.script.ScriptContext)",
};
- final String[] declaredMethodsThatShouldExists_jdk7 = {
+ final String[] declaredMethodsThatShouldExist_jdk7 = {
"public abstract java.lang.Object javax.script.ScriptEngine.eval(java.io.Reader) throws javax.script.ScriptException",
"public abstract java.lang.Object javax.script.ScriptEngine.eval(java.io.Reader,javax.script.Bindings) throws javax.script.ScriptException",
"public abstract java.lang.Object javax.script.ScriptEngine.eval(java.io.Reader,javax.script.ScriptContext) throws javax.script.ScriptException",
@@ -648,9 +648,9 @@
for (Method method : declaredMethods) {
methodsAsString.add(method.toString());
}
- String[] declaredMethodsThatShouldExists = getJavaVersion() < 7 ? declaredMethodsThatShouldExists_jdk6 : declaredMethodsThatShouldExists_jdk7;
+ String[] declaredMethodsThatShouldExist = getJavaVersion() < 7 ? declaredMethodsThatShouldExist_jdk6 : declaredMethodsThatShouldExist_jdk7;
// check if all required methods really exists
- for (String methodThatShouldExists : declaredMethodsThatShouldExists) {
+ for (String methodThatShouldExists : declaredMethodsThatShouldExist) {
assertTrue(methodsAsString.contains(methodThatShouldExists),
"declared method " + methodThatShouldExists + " not found");
}
@@ -848,6 +848,64 @@
}
/**
+ * Test for method javax.script.ScriptEngine.getClass().getComponentType()
+ */
+ protected void testGetComponentType() {
+ Class<?> cls = this.scriptEngineClass.getComponentType();
+ assertNull(cls, "getComponentType() should returns null");
+ }
+
+ /**
+ * Test for method javax.script.ScriptEngine.getClass().getClasses()
+ */
+ protected void testGetClasses() {
+ Class<?>[] cls = this.scriptEngineClass.getClasses();
+ assertNotNull(cls, "getClasses() returns null");
+ assertEquals(cls.length, 0, "getClasses() returns wrong value!");
+ }
+
+ /**
+ * Test for method javax.script.ScriptEngine.getClass().getDeclaredClasses()
+ */
+ protected void testGetDeclaredClasses() {
+ Class<?>[] cls = this.scriptEngineClass.getDeclaredClasses();
+ assertNotNull(cls, "getDeclaredClasses() returns null");
+ assertEquals(cls.length, 0, "getDeclaredClasses() returns wrong value!");
+ }
+
+ /**
+ * Test for method javax.script.ScriptEngine.getClass().getDeclaringClass()
+ */
+ protected void testGetDeclaringClass() {
+ Class<?> cls = this.scriptEngineClass.getDeclaringClass();
+ assertNull(cls, "getDeclaringClass() does not return null");
+ }
+
+ /**
+ * Test for method javax.script.ScriptEngine.getClass().getEnclosingClass()
+ */
+ protected void testGetEnclosingClass() {
+ Class<?> cls = this.scriptEngineClass.getEnclosingClass();
+ assertNull(cls, "getEnclosingClass() does not return null");
+ }
+
+ /**
+ * Test for method javax.script.ScriptEngine.getClass().getEnclosingConstructor()
+ */
+ protected void testGetEnclosingConstructor() {
+ Constructor<?> cons = this.scriptEngineClass.getEnclosingConstructor();
+ assertNull(cons, "getEnclosingConstructor() does not return null");
+ }
+
+ /**
+ * Test for method javax.script.ScriptEngine.getClass().getEnclosingMethod()
+ */
+ protected void testGetEnclosingMethod() {
+ Method m = this.scriptEngineClass.getEnclosingMethod();
+ assertNull(m, "getEnclosingMethod() does not return null");
+ }
+
+ /**
* Test for instanceof operator applied to a class javax.script.ScriptEngine
*/
@SuppressWarnings("cast")
More information about the distro-pkg-dev
mailing list