/hg/rhino-tests: Added three new tests into the ScriptEngineMana...
ptisnovs at icedtea.classpath.org
ptisnovs at icedtea.classpath.org
Fri Feb 8 01:47:38 PST 2013
changeset 9653e4891dda in /hg/rhino-tests
details: http://icedtea.classpath.org/hg/rhino-tests?cmd=changeset;node=9653e4891dda
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Fri Feb 08 10:50:39 2013 +0100
Added three new tests into the ScriptEngineManagerClassTest suite:
testGetCanonicalName(), testGetConstructor() and testGetDeclaredConstructor().
diffstat:
ChangeLog | 6 +
src/org/RhinoTests/ScriptEngineManagerClassTest.java | 80 +++++++++++++++++++-
2 files changed, 85 insertions(+), 1 deletions(-)
diffs (124 lines):
diff -r eef395e6c01d -r 9653e4891dda ChangeLog
--- a/ChangeLog Thu Feb 07 10:48:59 2013 +0100
+++ b/ChangeLog Fri Feb 08 10:50:39 2013 +0100
@@ -1,3 +1,9 @@
+2013-02-08 Pavel Tisnovsky <ptisnovs at redhat.com>
+
+ * src/org/RhinoTests/ScriptEngineManagerClassTest.java:
+ Added three new tests into the ScriptEngineManagerClassTest suite:
+ testGetCanonicalName(), testGetConstructor() and testGetDeclaredConstructor().
+
2013-02-07 Pavel Tisnovsky <ptisnovs at redhat.com>
* src/org/RhinoTests/BindingsClassTest.java:
diff -r eef395e6c01d -r 9653e4891dda src/org/RhinoTests/ScriptEngineManagerClassTest.java
--- a/src/org/RhinoTests/ScriptEngineManagerClassTest.java Thu Feb 07 10:48:59 2013 +0100
+++ b/src/org/RhinoTests/ScriptEngineManagerClassTest.java Fri Feb 08 10:50:39 2013 +0100
@@ -1,7 +1,7 @@
/*
Rhino test framework
- Copyright (C) 2011, 2012 Red Hat
+ Copyright (C) 2011, 2012, 2013 Red Hat
This file is part of IcedTea.
@@ -45,6 +45,7 @@
import java.util.List;
import java.util.Map;
import java.util.HashMap;
+import java.util.TreeMap;
import java.lang.annotation.Annotation;
import java.lang.reflect.Constructor;
@@ -261,6 +262,15 @@
}
/**
+ * Test for method javax.script.ScriptEngineManager.getClass().getCanonicalName()
+ */
+ protected void testGetCanonicalName() {
+ String canonicalName = this.scriptEngineManagerClass.getCanonicalName();
+ assertEquals(canonicalName, "javax.script.ScriptEngineManager",
+ "Method javax.script.ScriptEngineManager.getClass().getCanonicalName() returns wrong value " + canonicalName);
+ }
+
+ /**
* Test for method javax.script.ScriptEngineManager.getClass().getSuperclass()
*/
protected void testGetSuperclass() {
@@ -337,6 +347,74 @@
}
/**
+ * Test for method javax.script.ScriptEngineManager.getClass().getConstructor()
+ */
+ protected void testGetConstructor() {
+ // following constructors should exist
+ Map<String, Class[]> constructorsThatShouldExist_jdk6 = new TreeMap<String, Class[]>();
+ constructorsThatShouldExist_jdk6.put("javax.script.ScriptEngineManager", new Class[] {});
+ constructorsThatShouldExist_jdk6.put("javax.script.ScriptEngineManager", new Class[] {java.lang.ClassLoader.class});
+
+ Map<String, Class[]> constructorsThatShouldExist_jdk7 = new TreeMap<String, Class[]>();
+ constructorsThatShouldExist_jdk7.put("javax.script.ScriptEngineManager", new Class[] {});
+ constructorsThatShouldExist_jdk7.put("javax.script.ScriptEngineManager", new Class[] {java.lang.ClassLoader.class});
+
+ Map<String, Class[]> constructorsThatShouldExist = getJavaVersion() < 7 ? constructorsThatShouldExist_jdk6 : constructorsThatShouldExist_jdk7;
+
+ // check if all required constructors really exist
+ for (Map.Entry<String, Class[]> constructorThatShouldExists : constructorsThatShouldExist.entrySet()) {
+ try {
+ Constructor constructor = this.scriptEngineManagerClass.getConstructor(constructorThatShouldExists.getValue());
+ assertNotNull(constructor,
+ "constructor " + constructorThatShouldExists.getKey() + " not found");
+ String constructorName = constructor.getName();
+ assertNotNull(constructorName,
+ "constructor " + constructorThatShouldExists.getKey() + " does not have name assigned");
+ assertTrue(constructorName.equals(constructorThatShouldExists.getKey()),
+ "constructor " + constructorThatShouldExists.getKey() + " not found");
+ }
+ catch (Exception e) {
+ e.printStackTrace();
+ throw new AssertionError(e.getMessage());
+ }
+ }
+ }
+
+ /**
+ * Test for method javax.script.ScriptEngineManager.getClass().getDeclaredConstructor()
+ */
+ protected void testGetDeclaredConstructor() {
+ // following constructors should exist
+ Map<String, Class[]> constructorsThatShouldExist_jdk6 = new TreeMap<String, Class[]>();
+ constructorsThatShouldExist_jdk6.put("javax.script.ScriptEngineManager", new Class[] {});
+ constructorsThatShouldExist_jdk6.put("javax.script.ScriptEngineManager", new Class[] {java.lang.ClassLoader.class});
+
+ Map<String, Class[]> constructorsThatShouldExist_jdk7 = new TreeMap<String, Class[]>();
+ constructorsThatShouldExist_jdk7.put("javax.script.ScriptEngineManager", new Class[] {});
+ constructorsThatShouldExist_jdk7.put("javax.script.ScriptEngineManager", new Class[] {java.lang.ClassLoader.class});
+
+ Map<String, Class[]> constructorsThatShouldExist = getJavaVersion() < 7 ? constructorsThatShouldExist_jdk6 : constructorsThatShouldExist_jdk7;
+
+ // check if all required constructors really exist
+ for (Map.Entry<String, Class[]> constructorThatShouldExists : constructorsThatShouldExist.entrySet()) {
+ try {
+ Constructor constructor = this.scriptEngineManagerClass.getDeclaredConstructor(constructorThatShouldExists.getValue());
+ assertNotNull(constructor,
+ "constructor " + constructorThatShouldExists.getKey() + " not found");
+ String constructorName = constructor.getName();
+ assertNotNull(constructorName,
+ "constructor " + constructorThatShouldExists.getKey() + " does not have name assigned");
+ assertTrue(constructorName.equals(constructorThatShouldExists.getKey()),
+ "constructor " + constructorThatShouldExists.getKey() + " not found");
+ }
+ catch (Exception e) {
+ e.printStackTrace();
+ throw new AssertionError(e.getMessage());
+ }
+ }
+ }
+
+ /**
* Test for method javax.script.ScriptEngineManager.getClass().getFields()
*/
protected void testGetFields() {
More information about the distro-pkg-dev
mailing list