/hg/icedtea-web: JSToJGet reproducer modification, adding JSObje...
jfabriko at icedtea.classpath.org
jfabriko at icedtea.classpath.org
Wed Feb 6 06:38:50 PST 2013
changeset 047349c5ce3a in /hg/icedtea-web
details: http://icedtea.classpath.org/hg/icedtea-web?cmd=changeset;node=047349c5ce3a
author: Jana Fabrikova <jfabriko at redhat.com>
date: Wed Feb 06 15:41:18 2013 +0100
JSToJGet reproducer modification, adding JSObject testcase
diffstat:
ChangeLog | 15 +++++
tests/reproducers/simple/JSToJGet/resources/JSToJGet.html | 3 +
tests/reproducers/simple/JSToJGet/resources/JSToJ_auxiliary.js | 15 +----
tests/reproducers/simple/JSToJGet/resources/JSToJava_Get.js | 12 ++++
tests/reproducers/simple/JSToJGet/srcs/JSToJGet.java | 27 ++++++---
tests/reproducers/simple/JSToJGet/testcases/JSToJGetTest.java | 18 ++----
6 files changed, 55 insertions(+), 35 deletions(-)
diffs (193 lines):
diff -r ed4ecccd83e6 -r 047349c5ce3a ChangeLog
--- a/ChangeLog Wed Feb 06 09:18:38 2013 -0500
+++ b/ChangeLog Wed Feb 06 15:41:18 2013 +0100
@@ -1,3 +1,18 @@
+2013-02-06 Jana Fabrikova <jfabriko at redhat.com>
+
+ * /tests/reproducers/simple/JSToJGet/resources/JSToJGet.html:
+ adding 1 testcase reading applets variable of type JSObject from JS
+ * /tests/reproducers/simple/JSToJGet/testcases/JSToJGetTest.java:
+ adding 1 testcase reading applets variable of type JSObject from JS,
+ small changes to evaluation of the applet's stdout methods, removing
+ KnownToFail anotation from (AppletJSToJGet_DoubleFullArray_Test) method
+ * /tests/reproducers/simple/JSToJGet/resources/JSToJ_auxiliary.js:
+ removing parts of comment that are no longer true
+ * /tests/reproducers/simple/JSToJGet/resources/JSToJava_Get.js:
+ adding (test_get_JSObject) function also to the JS part of test
+ * /tests/reproducers/simple/JSToJGet/srcs/JSToJGet.java:
+ adding the JSObject variable to the applet
+
2013-02-06 Adam Domurad <adomurad at redhat.com>
Name threads for easier debugging/tooling. Remove 2 erroneous
diff -r ed4ecccd83e6 -r 047349c5ce3a tests/reproducers/simple/JSToJGet/resources/JSToJGet.html
--- a/tests/reproducers/simple/JSToJGet/resources/JSToJGet.html Wed Feb 06 09:18:38 2013 -0500
+++ b/tests/reproducers/simple/JSToJGet/resources/JSToJGet.html Wed Feb 06 15:41:18 2013 +0100
@@ -93,6 +93,9 @@
case "DoubleFullArray":
test_get_DoubleFullArray();
break;
+ case "JSObject":
+ test_get_JSObject();
+ break;
default:
appletStdOutLn('jstojGetApplet', "No argument in URL! Should be e.g. JSToJGet.html?int");
document.getElementById( 'jstojGetApplet' ).setStatusLabel("Not a valid argument in URL! Should be e.g. JSToJGet.html?int");
diff -r ed4ecccd83e6 -r 047349c5ce3a tests/reproducers/simple/JSToJGet/resources/JSToJ_auxiliary.js
--- a/tests/reproducers/simple/JSToJGet/resources/JSToJ_auxiliary.js Wed Feb 06 09:18:38 2013 -0500
+++ b/tests/reproducers/simple/JSToJGet/resources/JSToJ_auxiliary.js Wed Feb 06 15:41:18 2013 +0100
@@ -1,18 +1,7 @@
/*
JSToJ_auxiliary.js
-This file contains auxiliary JavaScript functions for LiveConnect tests output,
-the following reproducers have this file as a common resource:
-- JSToJGet
-- JSToJSet
-- JSToJFuncParam
-- JSToJFuncReturn
-- JSToJFuncResol
-- JSToJTypeConv
-- JToJSGet
-- JToJSSet
-- JToJSFuncParam
-- JToJSFuncReturn
-- JToJSEval
+This file contains auxiliary JavaScript functions for LiveConnect tests output
+it is used by JSToJGet reproducer.
*/
function check(actual, expected, expectedtype, testid, appletName ) {
diff -r ed4ecccd83e6 -r 047349c5ce3a tests/reproducers/simple/JSToJGet/resources/JSToJava_Get.js
--- a/tests/reproducers/simple/JSToJGet/resources/JSToJava_Get.js Wed Feb 06 09:18:38 2013 -0500
+++ b/tests/reproducers/simple/JSToJGet/resources/JSToJava_Get.js Wed Feb 06 15:41:18 2013 +0100
@@ -245,5 +245,17 @@
appendMessageDiv(e);
}
}
+
+function test_get_JSObject(){
+ var appletName = 'jstojGetApplet';
+ try{
+ var javao = new Object(document.getElementById(appletName).jso);
+ check(javao.key1, "value1", "string", "22 - (JSObject)", appletName);
+ }catch(e){
+ appletStdOut( appletName, e );
+ appendMessageDiv(e);
+ }
+
+}
diff -r ed4ecccd83e6 -r 047349c5ce3a tests/reproducers/simple/JSToJGet/srcs/JSToJGet.java
--- a/tests/reproducers/simple/JSToJGet/srcs/JSToJGet.java Wed Feb 06 09:18:38 2013 -0500
+++ b/tests/reproducers/simple/JSToJGet/srcs/JSToJGet.java Wed Feb 06 15:41:18 2013 +0100
@@ -1,5 +1,7 @@
-import java.applet.*;
-import java.awt.*;
+import java.applet.Applet;
+import java.awt.Label;
+import java.awt.BorderLayout;
+import netscape.javascript.JSObject;
public class JSToJGet extends Applet {
@@ -27,9 +29,22 @@
public char[] ca = new char[3];
public Character[] Ca = new Character[3];
+ public JSObject jso;
private Label statusLabel;
+ public void start(){
+ JSObject win = JSObject.getWindow(this);
+ jso = (JSObject) win.getMember("document");
+ jso.setMember("key1","value1");
+ ia[4] = 1024;
+ Da1[9] = D;
+
+ String setupStr = "JSToJGet applet set up for GET tests.";
+ System.out.println(setupStr);
+ statusLabel.setText(setupStr);
+ }
+
public void init() {
setLayout(new BorderLayout());
statusLabel = new Label();
@@ -37,14 +52,6 @@
String initStr = "JSToJGet applet initialized.";
System.out.println(initStr);
statusLabel.setText(initStr);
-
- ia[4] = 1024;
- Da1[9] = D;
-
- String setupStr = "JSToJGet applet set up for GET tests.";
- System.out.println(setupStr);
- statusLabel.setText(setupStr);
-
}
// auxiliary method for setting the statusLabel text:
diff -r ed4ecccd83e6 -r 047349c5ce3a tests/reproducers/simple/JSToJGet/testcases/JSToJGetTest.java
--- a/tests/reproducers/simple/JSToJGet/testcases/JSToJGetTest.java Wed Feb 06 09:18:38 2013 -0500
+++ b/tests/reproducers/simple/JSToJGet/testcases/JSToJGetTest.java Wed Feb 06 15:41:18 2013 +0100
@@ -56,7 +56,6 @@
public String foundStr = "] found:[";
public String endStr = "].";
- private final String exceptionStr = "xception";
private final String initStr = "JSToJGet applet initialized.";
private final String setupStr = "JSToJGet applet set up for GET tests.";
private final String afterStr = "afterTests";
@@ -65,9 +64,6 @@
@Override
protected boolean isAlowedToFinish(String s) {
- if (s.contains(exceptionStr)) {
- return true;
- }
return (s.contains(initStr) && s.contains(setupStr) && s
.contains(afterStr));
}
@@ -86,12 +82,10 @@
String s0 = testStr + passStr;
String s1 = testStr + failValStr;
String s2 = testStr + failTypeStr;
- String s3 = "Error on Java side";
int ind0 = pr.stdout.indexOf(s0);
int ind1 = pr.stdout.indexOf(s1);
int ind2 = pr.stdout.indexOf(s2);
- int ind3 = pr.stdout.indexOf(s3);
int indBegin = pr.stdout.indexOf(setupStr);
if (indBegin != -1) {
indBegin += setupStr.length();
@@ -116,11 +110,6 @@
failStr = "JSToJGet: type mismatch in "+testStr;
}
- if (ind3 != -1) {
- failStr = "JSToJGet: an error occured during " + testStr;
- }
-
- Assert.assertTrue(failStr, (ind3 == -1));// no error on Java side
Assert.assertTrue(failStr, (ind1 == -1));// no value mismatch
Assert.assertTrue(failStr, (ind2 == -1));// no type mismatch
Assert.assertTrue(failStr, (ind0 != -1));// test passed
@@ -288,9 +277,14 @@
@Test
@TestInBrowsers(testIn = { Browsers.all })
@NeedsDisplay
- @KnownToFail
public void AppletJSToJGet_DoubleFullArray_Test() throws Exception {
jsToJavaGetTest("DoubleFullArray", "Test no.21 - (Double[] - full array)");
}
+ @Test
+ @TestInBrowsers(testIn = { Browsers.all })
+ @NeedsDisplay
+ public void AppletJSToJGet_JSObject_Test() throws Exception {
+ jsToJavaGetTest("JSObject", "Test no.22 - (JSObject)");
+ }
}
More information about the distro-pkg-dev
mailing list