/hg/rhino-tests: Updated four tests in ScriptEngineFactoryClassT...
ptisnovs at icedtea.classpath.org
ptisnovs at icedtea.classpath.org
Fri May 24 03:01:32 PDT 2013
changeset 81b74072fff0 in /hg/rhino-tests
details: http://icedtea.classpath.org/hg/rhino-tests?cmd=changeset;node=81b74072fff0
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Fri May 24 12:04:59 2013 +0200
Updated four tests in ScriptEngineFactoryClassTest for (Open)JDK8 API:
getField, getDeclaredField, getFields and getDeclaredFields.
diffstat:
ChangeLog | 6 +
src/org/RhinoTests/ScriptEngineFactoryClassTest.java | 62 ++++++++++++++++++-
2 files changed, 64 insertions(+), 4 deletions(-)
diffs (113 lines):
diff -r a78c74e600b3 -r 81b74072fff0 ChangeLog
--- a/ChangeLog Thu May 23 11:07:12 2013 +0200
+++ b/ChangeLog Fri May 24 12:04:59 2013 +0200
@@ -1,3 +1,9 @@
+2013-05-24 Pavel Tisnovsky <ptisnovs at redhat.com>
+
+ * src/org/RhinoTests/ScriptEngineFactoryClassTest.java:
+ Updated four tests in ScriptEngineFactoryClassTest for (Open)JDK8 API:
+ getField, getDeclaredField, getFields and getDeclaredFields.
+
2013-05-23 Pavel Tisnovsky <ptisnovs at redhat.com>
* src/org/RhinoTests/InvocableClassTest.java:
diff -r a78c74e600b3 -r 81b74072fff0 src/org/RhinoTests/ScriptEngineFactoryClassTest.java
--- a/src/org/RhinoTests/ScriptEngineFactoryClassTest.java Thu May 23 11:07:12 2013 +0200
+++ b/src/org/RhinoTests/ScriptEngineFactoryClassTest.java Fri May 24 12:04:59 2013 +0200
@@ -440,9 +440,22 @@
};
final String[] fieldsThatShouldExist_jdk7 = {
};
+ final String[] fieldsThatShouldExist_jdk8 = {
+ };
// get the right array of field signatures
- final String[] fieldsThatShouldExist = getJavaVersion() < 7 ? fieldsThatShouldExist_jdk6 : fieldsThatShouldExist_jdk7;
+ String[] fieldsThatShouldExist = null;
+ switch (getJavaVersion()) {
+ case 6:
+ fieldsThatShouldExist = fieldsThatShouldExist_jdk6;
+ break;
+ case 7:
+ fieldsThatShouldExist = fieldsThatShouldExist_jdk7;
+ break;
+ case 8:
+ fieldsThatShouldExist = fieldsThatShouldExist_jdk8;
+ break;
+ }
// get all fields
Field[] fields = this.scriptEngineFactoryClass.getFields();
@@ -467,10 +480,23 @@
};
final String[] declaredFieldsThatShouldExist_jdk7 = {
};
+ final String[] declaredFieldsThatShouldExist_jdk8 = {
+ };
// get the right array of field signatures
// following fields should be declared
- final String[] declaredFieldsThatShouldExist = getJavaVersion() < 7 ? declaredFieldsThatShouldExist_jdk6 : declaredFieldsThatShouldExist_jdk7;
+ String[] declaredFieldsThatShouldExist = null;
+ switch (getJavaVersion()) {
+ case 6:
+ declaredFieldsThatShouldExist = declaredFieldsThatShouldExist_jdk6;
+ break;
+ case 7:
+ declaredFieldsThatShouldExist = declaredFieldsThatShouldExist_jdk7;
+ break;
+ case 8:
+ declaredFieldsThatShouldExist = declaredFieldsThatShouldExist_jdk8;
+ break;
+ }
// get all declared fields
Field[] declaredFields = this.scriptEngineFactoryClass.getDeclaredFields();
@@ -495,8 +521,21 @@
};
final String[] fieldsThatShouldExist_jdk7 = {
};
+ final String[] fieldsThatShouldExist_jdk8 = {
+ };
- final String[] fieldsThatShouldExist = getJavaVersion() < 7 ? fieldsThatShouldExist_jdk6 : fieldsThatShouldExist_jdk7;
+ String[] fieldsThatShouldExist = null;
+ switch (getJavaVersion()) {
+ case 6:
+ fieldsThatShouldExist = fieldsThatShouldExist_jdk6;
+ break;
+ case 7:
+ fieldsThatShouldExist = fieldsThatShouldExist_jdk7;
+ break;
+ case 8:
+ fieldsThatShouldExist = fieldsThatShouldExist_jdk8;
+ break;
+ }
// check if all required fields really exists
for (String fieldThatShouldExists : fieldsThatShouldExist) {
@@ -522,8 +561,23 @@
};
final String[] declaredFieldsThatShouldExist_jdk7 = {
};
+ final String[] declaredFieldsThatShouldExist_jdk8 = {
+ };
- final String[] declaredFieldsThatShouldExist = getJavaVersion() < 7 ? declaredFieldsThatShouldExist_jdk6 : declaredFieldsThatShouldExist_jdk7;
+ // get the right array of field signatures
+ // following fields should be declared
+ String[] declaredFieldsThatShouldExist = null;
+ switch (getJavaVersion()) {
+ case 6:
+ declaredFieldsThatShouldExist = declaredFieldsThatShouldExist_jdk6;
+ break;
+ case 7:
+ declaredFieldsThatShouldExist = declaredFieldsThatShouldExist_jdk7;
+ break;
+ case 8:
+ declaredFieldsThatShouldExist = declaredFieldsThatShouldExist_jdk8;
+ break;
+ }
// check if all required declared fields really exists
for (String declaredFieldThatShouldExists : declaredFieldsThatShouldExist) {
More information about the distro-pkg-dev
mailing list