/hg/icedtea-web: adding new reproducer JavascriptSet that test s...

jfabriko at icedtea.classpath.org jfabriko at icedtea.classpath.org
Mon Mar 25 06:46:43 PDT 2013


changeset 2b15b37a60e2 in /hg/icedtea-web
details: http://icedtea.classpath.org/hg/icedtea-web?cmd=changeset;node=2b15b37a60e2
author: Jana Fabrikova <jfabriko at redhat.com>
date: Mon Mar 25 14:49:34 2013 +0100

	adding new reproducer JavascriptSet that test setting javascript values from java


diffstat:

 ChangeLog                                                               |   13 +
 tests/reproducers/simple/JavascriptSet/resources/JavascriptSet.html     |   27 +
 tests/reproducers/simple/JavascriptSet/resources/Javascript_Set.js      |   31 +
 tests/reproducers/simple/JavascriptSet/resources/javascript-set.jnlp    |   23 +
 tests/reproducers/simple/JavascriptSet/srcs/JavascriptSet.java          |  123 +++++
 tests/reproducers/simple/JavascriptSet/testcases/JavascriptSetTest.java |  238 ++++++++++
 6 files changed, 455 insertions(+), 0 deletions(-)

diffs (482 lines):

diff -r 5cd74575f737 -r 2b15b37a60e2 ChangeLog
--- a/ChangeLog	Mon Mar 25 14:10:50 2013 +0100
+++ b/ChangeLog	Mon Mar 25 14:49:34 2013 +0100
@@ -1,3 +1,16 @@
+2013-03-25  Jana Fabrikova <jfabriko at redhat.com>
+
+	* tests/reproducers/simple/JavascriptSet/testcases/JavascriptSetTest.java
+	adding 21 testcases for testing setting javascript variables from java
+	* tests/reproducers/simple/JavascriptSet/resources/JavascriptSet.html
+	the html page for displaying browser tests
+	* tests/reproducers/simple/JavascriptSet/resources/Javascript_Set.js
+	auxiliary javascript functions
+	* tests/reproducers/simple/JavascriptSet/resources/javascript-set.jnlp
+	jnlp file for embedding applet in the html page
+	* tests/reproducers/simple/JavascriptSet/srcs/JavascriptSet.java
+	the applet that sets javascript variables
+
 2013-03-25  Jana Fabrikova <jfabriko at redhat.com>
 
 	* tests/reproducers/simple/JavascriptGet/testcases/JavascriptGetTest.java
diff -r 5cd74575f737 -r 2b15b37a60e2 tests/reproducers/simple/JavascriptSet/resources/JavascriptSet.html
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/reproducers/simple/JavascriptSet/resources/JavascriptSet.html	Mon Mar 25 14:49:34 2013 +0100
@@ -0,0 +1,27 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<html lang="en-US">
+  <head>
+    <title>Java JavaScript LiveConnect - Set values from applet</title>
+    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+
+    <script language="JavaScript" src="Javascript_Set.js"></script>
+
+  </head>
+  <body>
+
+ <h2> The JToJSSet html page</h2> 
+
+    <applet code="JavascriptSet" width="1000" height="100" id="jtojsSetApplet" MAYSCRIPT>
+        <param name="jnlp_href" value="javascript-set.jnlp">
+    </applet>
+
+    <script type="text/javascript">
+
+    var setvar;
+
+    doJToJSSetTests();
+
+    </script>
+
+  </body>
+</html>
diff -r 5cd74575f737 -r 2b15b37a60e2 tests/reproducers/simple/JavascriptSet/resources/Javascript_Set.js
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/reproducers/simple/JavascriptSet/resources/Javascript_Set.js	Mon Mar 25 14:49:34 2013 +0100
@@ -0,0 +1,31 @@
+function doJToJSSetTests(){
+
+    var applet = document.getElementById('jtojsSetApplet');
+
+    var urlArgs = document.URL.split("?");
+    var func = urlArgs[1];
+
+    //pre-initialization of arrays
+    if(func === "jjsSet1DArray"){
+        setvar = new Array();
+    }else if(func === "jjsSet2DArray" ){
+        setvar = new Array();
+        setvar[1] = new Array();
+    }
+
+    //calling the applet function
+    eval('applet.'+func+'()');
+
+    //preparing jsvar value string for output
+    if(func === "jjsSet1DArray"){
+        str = ""+setvar[1];
+    }else if(func === "jjsSet2DArray" ){
+        str = ""+setvar[1][1];
+    }else if(func === "jjsSetObject" ){
+        str = setvar.toString();
+    }else{
+        var str = ""+setvar;  
+    }
+
+    applet.printStrAndFinish(str);
+}
diff -r 5cd74575f737 -r 2b15b37a60e2 tests/reproducers/simple/JavascriptSet/resources/javascript-set.jnlp
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/reproducers/simple/JavascriptSet/resources/javascript-set.jnlp	Mon Mar 25 14:49:34 2013 +0100
@@ -0,0 +1,23 @@
+
+<?xml version="1.0" encoding="UTF-8"?>
+<jnlp spec="1.0+" codebase="" href="javascript-set.jnlp">
+    <information>
+        <title>Java to JavaScript LiveConnect - Set</title>
+        <vendor>IcedTea</vendor>
+        <homepage href="http://icedtea.classpath.org/wiki/IcedTea-Web#Testing_IcedTea-Web"/>
+        <description>LiveConnect - tests for setting JS values from Java.</description>
+    </information>
+    <resources>
+        <!-- Application Resources -->
+        <j2se version="1.6+"
+              href="http://java.sun.com/products/autodl/j2se"/>
+        <jar href="JavascriptSet.jar" main="true" />
+
+    </resources>
+    <applet-desc 
+         name="J to JS Set"
+         main-class="JavascriptSet"
+         width="1000"
+         height="100">
+     </applet-desc>
+</jnlp>
diff -r 5cd74575f737 -r 2b15b37a60e2 tests/reproducers/simple/JavascriptSet/srcs/JavascriptSet.java
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/reproducers/simple/JavascriptSet/srcs/JavascriptSet.java	Mon Mar 25 14:49:34 2013 +0100
@@ -0,0 +1,123 @@
+import java.applet.Applet;
+import netscape.javascript.JSObject;
+
+public class JavascriptSet extends Applet {
+
+    private JSObject window;
+
+    public void init() {
+        window = JSObject.getWindow(this);
+        String initStr = "JToJSSet applet initialized.";
+        System.out.println(initStr);
+    }
+
+    // methods for testing setting of JavaScript variables
+    public void jjsSetInt() {
+        window.setMember("setvar", (int) 1);
+    }
+
+    public void jjsSetInteger() {
+        window.setMember("setvar", new Integer(2));
+    }
+
+    public void jjsSetdouble() {
+        window.setMember("setvar", (double) 2.5);
+    }
+
+    public void jjsSetDouble() {
+        window.setMember("setvar", new Double(2.5));
+    }
+
+    public void jjsSetfloat() {
+        window.setMember("setvar", (float) 2.5);
+    }
+
+    public void jjsSetFloat() {
+        window.setMember("setvar", new Float(2.5));
+    }
+
+    public void jjsSetshort() {
+        window.setMember("setvar", (short) 3);
+    }
+
+    public void jjsSetShort() {
+        window.setMember("setvar", new Short((short) 4));
+    }
+
+    public void jjsSetlong() {
+        window.setMember("setvar", (long) 4294967296L);
+    }
+
+    public void jjsSetLong() {
+        window.setMember("setvar", new Long(4294967297L));
+    }
+
+    public void jjsSetbyte() {
+        window.setMember("setvar", (byte) 5);
+    }
+
+    public void jjsSetByte() {
+        window.setMember("setvar", new Byte((byte) 6));
+    }
+
+    public void jjsSetchar() {
+        window.setMember("setvar", (char) 'a');
+    }
+
+    public void jjsSetCharacter() {
+        window.setMember("setvar", new Character('a'));
+    }
+
+    public void jjsSetboolean() {
+        window.setMember("setvar", (boolean) true);
+    }
+
+    public void jjsSetBoolean() {
+        window.setMember("setvar", new Boolean(true));
+    }
+
+    public void jjsSetString() {
+        window.setMember("setvar", "𠁎〒£$ǣ€𝍖");
+    }
+
+    public void jjsSetObject() {
+        DummyObject dummyObject = new DummyObject("DummyObject2");
+        window.setMember("setvar", dummyObject);
+    }
+
+    public void jjsSet1DArray() {
+        ((JSObject) window.getMember("setvar")).setSlot(1, 100);
+    }
+
+    public void jjsSet2DArray() {
+        ((JSObject) ((JSObject) window.getMember("setvar")).getSlot(1)).setSlot(1, 200);
+    }
+
+    public void jjsSetJSObject(){
+        window.setMember("setvar", window);
+    }
+
+
+    // auxiliary class and method for writing output:
+    public void printStrAndFinish(String str){
+        System.out.println(str);
+        System.out.println("afterTests");
+    }
+
+    public class DummyObject {
+        private String str;
+     
+        public DummyObject(String s) {
+            this.str = s;
+        }
+     
+        public void setStr(String s) {
+            this.str = s;
+        }
+     
+        public String toString() {
+            return str;
+        }
+    }
+
+}
diff -r 5cd74575f737 -r 2b15b37a60e2 tests/reproducers/simple/JavascriptSet/testcases/JavascriptSetTest.java
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/reproducers/simple/JavascriptSet/testcases/JavascriptSetTest.java	Mon Mar 25 14:49:34 2013 +0100
@@ -0,0 +1,238 @@
+/* JToJSSetTest.java
+Copyright (C) 2012 Red Hat, Inc.
+
+This file is part of IcedTea.
+
+IcedTea is free software; you can redistribute it and/or
+modify it under the terms of the GNU General Public License as published by
+the Free Software Foundation, version 2.
+
+IcedTea is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with IcedTea; see the file COPYING.  If not, write to
+the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+02110-1301 USA.
+
+Linking this library statically or dynamically with other modules is
+making a combined work based on this library.  Thus, the terms and
+conditions of the GNU General Public License cover the whole
+combination.
+
+As a special exception, the copyright holders of this library give you
+permission to link this library with independent modules to produce an
+executable, regardless of the license terms of these independent
+modules, and to copy and distribute the resulting executable under
+terms of your choice, provided that you also meet, for each linked
+independent module, the terms and conditions of the license of that
+module.  An independent module is a module which is not derived from
+or based on this library.  If you modify this library, you may extend
+this exception to your version of the library, but you are not
+obligated to do so.  If you do not wish to do so, delete this
+exception statement from your version.
+ */
+
+import net.sourceforge.jnlp.ProcessResult;
+import net.sourceforge.jnlp.ServerAccess;
+import net.sourceforge.jnlp.browsertesting.BrowserTest;
+import net.sourceforge.jnlp.browsertesting.Browsers;
+import net.sourceforge.jnlp.closinglisteners.CountingClosingListener;
+import net.sourceforge.jnlp.annotations.NeedsDisplay;
+import net.sourceforge.jnlp.annotations.TestInBrowsers;
+import org.junit.Assert;
+
+import org.junit.Test;
+
+public class JavascriptSetTest extends BrowserTest {
+
+    public final boolean doNotRunInOpera = true;
+
+    private final String initStr = "JToJSSet applet initialized.";
+    private final String afterStr = "afterTests";
+
+    private class CountingClosingListenerImpl extends CountingClosingListener {
+
+        @Override
+        protected boolean isAlowedToFinish(String s) {
+            return (s.contains(initStr) && s.contains(afterStr));
+        }
+    }
+
+    private void evaluateStdoutContents(String[] expectedStdoutsOR, ProcessResult pr) {
+        // Assert that the applet was initialized.
+        Assert.assertTrue("JToJSSetTest stdout should contain " + initStr + " but it didnt.", pr.stdout.contains(initStr));
+
+         // Assert that the values set from JavaScript are ok
+        boolean atLeastOne = false;
+        for(String s : expectedStdoutsOR){
+        	if(pr.stdout.contains(s)) atLeastOne = true;
+        }
+        Assert.assertTrue("JToJSSet: the output should include at least one of expected Stdouts, but it didnt.", atLeastOne);
+    }
+
+    private void javaToJSSetTest(String urlEnd, String[] expectedValsOR) throws Exception {
+
+        if( doNotRunInOpera){
+            Browsers b = server.getCurrentBrowser().getID();
+            if(b == Browsers.opera){
+                return;
+            }
+        }
+
+        String strURL = "/JavascriptSet.html?" + urlEnd;
+        ProcessResult pr = server.executeBrowser(strURL, new CountingClosingListenerImpl(), new CountingClosingListenerImpl());
+        evaluateStdoutContents(expectedValsOR, pr);
+    }
+
+    @Test
+    @TestInBrowsers(testIn = { Browsers.all })
+    @NeedsDisplay
+    public void AppletJToJSSet_int_Test() throws Exception {
+        javaToJSSetTest("jjsSetInt", new String[] {"1"});
+    }
+
+    @Test
+    @TestInBrowsers(testIn = { Browsers.all })
+    @NeedsDisplay
+    public void AppletJToJSSet_Integer_Test() throws Exception {
+        javaToJSSetTest("jjsSetInteger", new String[] {"2"});
+    }
+
+    @Test
+    @TestInBrowsers(testIn = { Browsers.all })
+    @NeedsDisplay
+    public void AppletJToJSSet_double_Test() throws Exception {
+        javaToJSSetTest("jjsSetdouble", new String[] {"2.5"});
+    }
+
+    @Test
+    @TestInBrowsers(testIn = { Browsers.all })
+    @NeedsDisplay
+    public void AppletJToJSSet_Double_Test() throws Exception {
+        javaToJSSetTest("jjsSetDouble", new String[] {"2.5"});
+    }
+
+    @Test
+    @TestInBrowsers(testIn = { Browsers.all })
+    @NeedsDisplay
+    public void AppletJToJSSet_float_Test() throws Exception {
+        javaToJSSetTest("jjsSetfloat", new String[]{"2.5"}); //2.3->2.2999...
+    }
+
+    @Test
+    @TestInBrowsers(testIn = { Browsers.all })
+    @NeedsDisplay
+    public void AppletJToJSSet_Float_Test() throws Exception {
+        javaToJSSetTest("jjsSetFloat", new String[] {"2.5"});
+    }
+
+
+    @Test
+    @TestInBrowsers(testIn = { Browsers.all })
+    @NeedsDisplay
+    public void AppletJToJSSet_long_Test() throws Exception {
+        javaToJSSetTest("jjsSetlong", new String[] {"4294967296"});
+    }
+
+    @Test
+    @TestInBrowsers(testIn = { Browsers.all })
+    @NeedsDisplay
+    public void AppletJToJSSet_Long_Test() throws Exception {
+        javaToJSSetTest("jjsSetLong", new String[] {"4294967297"});
+    }
+
+    @Test
+    @TestInBrowsers(testIn = { Browsers.all })
+    @NeedsDisplay
+    public void AppletJToJSSet_short_Test() throws Exception {
+        javaToJSSetTest("jjsSetshort", new String[] {"3"});
+    }
+
+    @Test
+    @TestInBrowsers(testIn = { Browsers.all })
+    @NeedsDisplay
+    public void AppletJToJSSet_Short_Test() throws Exception {
+        javaToJSSetTest("jjsSetShort", new String[] {"4"});
+    }
+
+    @Test
+    @TestInBrowsers(testIn = { Browsers.all })
+    @NeedsDisplay
+    public void AppletJToJSSet_byte_Test() throws Exception {
+        javaToJSSetTest("jjsSetbyte", new String[] {"5"});
+    }
+
+    @Test
+    @TestInBrowsers(testIn = { Browsers.all })
+    @NeedsDisplay
+    public void AppletJToJSSet_Byte_Test() throws Exception {
+        javaToJSSetTest("jjsSetByte", new String[] {"6"});
+    }
+
+    @Test
+    @TestInBrowsers(testIn = { Browsers.all })
+    @NeedsDisplay
+    public void AppletJToJSSet_char_Test() throws Exception {
+        javaToJSSetTest("jjsSetchar", new String[] {"97"}); //i.e. 'a'
+    }    
+
+    @Test
+    @TestInBrowsers(testIn = { Browsers.all })
+    @NeedsDisplay
+    public void AppletJToJSSet_Character_Test() throws Exception {
+        javaToJSSetTest("jjsSetCharacter", new String[] {"97"}); //i.e. 'a'
+    }
+
+    @Test
+    @TestInBrowsers(testIn = { Browsers.all })
+    @NeedsDisplay
+    public void AppletJToJSSet_boolean_Test() throws Exception {
+        javaToJSSetTest("jjsSetboolean", new String[] {"true"});
+    }
+
+    @Test
+    @TestInBrowsers(testIn = { Browsers.all })
+    @NeedsDisplay
+    public void AppletJToJSSet_Boolean_Test() throws Exception {
+        javaToJSSetTest("jjsSetBoolean", new String[] {"true"});
+    }
+
+    @Test
+    @TestInBrowsers(testIn = { Browsers.all })
+    @NeedsDisplay
+    public void AppletJToJSSet_String_Test() throws Exception {
+        javaToJSSetTest("jjsSetString", new String[] {"𠁎〒£$ǣ€𝍖"});
+    }
+
+    @Test
+    @TestInBrowsers(testIn = { Browsers.all })
+    @NeedsDisplay
+    public void AppletJToJSSet_object_Test() throws Exception {
+        javaToJSSetTest("jjsSetObject", new String[] {"DummyObject2"});
+    }
+
+    @Test
+    @TestInBrowsers(testIn = { Browsers.all })
+    @NeedsDisplay
+    public void AppletJToJSSet_1DArrayElement_Test() throws Exception {
+        javaToJSSetTest("jjsSet1DArray", new String[] {"100"});
+    }
+
+    @Test
+    @TestInBrowsers(testIn = { Browsers.all })
+    @NeedsDisplay
+    public void AppletJToJSSet_2DArrayElement_Test() throws Exception {
+        javaToJSSetTest("jjsSet2DArray", new String[] {"200"});
+    }
+
+    @Test
+    @TestInBrowsers(testIn = { Browsers.all })
+    @NeedsDisplay
+    public void AppletJToJSSet_JSObject_Test() throws Exception {
+        javaToJSSetTest("jjsSetJSObject", new String[] {"[object Window]","[object DOMWindow]", "[object Object]"});
+    }
+
+}



More information about the distro-pkg-dev mailing list