changeset 545:d17bbf43ee22

Adding new reproducer for LiveConnect JS->J "set" tests.
author Jana Fabrikova <jfabriko@redhat.com>
date Mon, 29 Oct 2012 10:32:59 +0100
parents 2c3a063c1aff
children 6619b0c63455
files ChangeLog tests/reproducers/simple/JSToJSet/resources/JSToJSet.html tests/reproducers/simple/JSToJSet/resources/JSToJava_Set.js tests/reproducers/simple/JSToJSet/resources/jstoj-set.jnlp tests/reproducers/simple/JSToJSet/srcs/JSToJSet.java tests/reproducers/simple/JSToJSet/testcases/JSToJSetTest.java
diffstat 6 files changed, 386 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Fri Oct 26 12:15:18 2012 +0200
+++ b/ChangeLog	Mon Oct 29 10:32:59 2012 +0100
@@ -1,3 +1,8 @@
+2012-10-29  Jana Fabrikova <jfabriko@redhat.com>
+
+	* tests/reproducers/simple/JSToJSet 
+	Added reproducer for testing LiveConnect - setting Java members from JavaScript side
+
 2012-10-26  Jiri Vanek <jvanek@redhat.com>
 
 	Added clipboard reproducers (PR708)
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/reproducers/simple/JSToJSet/resources/JSToJSet.html	Mon Oct 29 10:32:59 2012 +0100
@@ -0,0 +1,25 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<html lang="en-US">
+  <head>
+    <title>JavaScript to Java LiveConnect - Set values from applet</title>
+    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+
+    <script language="JavaScript" src="JSToJava_Set.js"></script>
+
+  </head>
+  <body>
+
+ <h2> The JSToJSet html page</h2> 
+
+    <applet code="JSToJSet" width="1000" height="100" id="jstojSetApplet" MAYSCRIPT>
+      <param name="jnlp_href" value="jstoj-set.jnlp">
+    </applet>
+
+    <div id="messageDiv"></div>
+
+    <script language="javascript">
+        doSetTests();
+    </script>
+
+   </body>
+</html>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/reproducers/simple/JSToJSet/resources/JSToJava_Set.js	Mon Oct 29 10:32:59 2012 +0100
@@ -0,0 +1,39 @@
+function doSetTests( ){
+
+    var urlArgs = document.URL.split("?");
+    var testParams = urlArgs[1].split(";");
+    var applet = document.getElementById('jstojSetApplet');
+    var field = testParams[0];
+    var value = testParams[1];
+
+    if( value === "JavaScript"){
+        if( field === "_char"){
+            value = 97;
+        }
+
+        if( field === "_Character"){
+            value = new (applet.Packages).java.lang.Character(65);
+        }
+
+        if( field === "_specialString"){
+            value = "𠁎〒£$ǣ€𝍖";
+        } 
+    }else if(value.indexOf('[') != -1){
+
+        var elem = value.substring(1);
+        value = new Array();
+        eval('value[0] = elem');
+
+    }
+
+    eval('applet.' + field + '= value');
+
+    //modifiing _intArray[0]    into  _intArray
+    //          _DoubleArray[0] into  _DoubleArray   
+    var nameEnd = field.indexOf('[');
+    if( nameEnd != -1){
+      field = field.substring(0,nameEnd);
+    }
+    
+    applet.printNewValueAndFinish(field);
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/reproducers/simple/JSToJSet/resources/jstoj-set.jnlp	Mon Oct 29 10:32:59 2012 +0100
@@ -0,0 +1,21 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<jnlp spec="1.0+" codebase="" href="jstoj-set.jnlp">
+    <information>
+        <title>JavaScript to Java LiveConnect - Set</title>
+        <vendor>RedHat</vendor>
+        <homepage href="http://icedtea.classpath.org/wiki/IcedTea-Web#Testing_IcedTea-Web"/>
+        <description>LiveConnect - tests for setting members on Java side.</description>
+    </information>
+    <resources>
+        <!-- Application Resources -->
+        <j2se version="1.6+"
+              href="http://java.sun.com/products/autodl/j2se"/>
+        <jar href="JSToJSet.jar" main="true" />
+    </resources>
+    <applet-desc 
+         name="JS to J Set"
+         main-class="JSToJSet"
+         width="1000"
+         height="100">
+     </applet-desc>
+</jnlp>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/reproducers/simple/JSToJSet/srcs/JSToJSet.java	Mon Oct 29 10:32:59 2012 +0100
@@ -0,0 +1,47 @@
+import java.applet.*;
+import java.awt.*;
+import java.lang.reflect.Array;
+import java.lang.reflect.Field;
+
+public class JSToJSet extends Applet {
+
+    public int _int;
+    public double _double;
+    public float _float;
+    public long _long;
+    public boolean _boolean;
+    public char _char;
+    public byte _byte;
+    public String _String;
+    public String _specialString;
+    public Object _Object = new String("non-null object");
+    public int[] _intArray = new int[1];
+    public Integer _Integer;
+    public Double _Double;
+    public Float _Float;
+    public Long _Long;
+    public Boolean _Boolean;
+    public Character _Character = 'B';
+    public Byte _Byte;
+    public Double[] _DoubleArray = new Double[10];
+    public Double[] _DoubleArray2;
+    public char[] _charArray = new char[1];
+    public Character[] _CharacterArray = new Character[1];
+
+    public void init() {
+        String initStr = "JSToJSet applet initialized.";
+        System.out.println(initStr);
+    }
+
+    public void printNewValueAndFinish(String fieldname) throws Exception {
+        Field field = getClass().getDeclaredField(fieldname);
+        Object value = field.get(this);
+        if (value != null && value.getClass().isArray()) {
+            System.out.println("New array value is: " + Array.get(value, 0));
+        } else {
+            System.out.println("New value is: " + value);
+        }
+        System.out.println("afterTests");
+    }
+
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/reproducers/simple/JSToJSet/testcases/JSToJSetTest.java	Mon Oct 29 10:32:59 2012 +0100
@@ -0,0 +1,249 @@
+/* JSToJSetTest.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 JSToJSetTest extends BrowserTest {
+
+    private final String exceptionStr = "xception";
+    private final String errorStr = "rror";
+    private final String initStr = "JSToJSet applet initialized.";
+    private final String afterStr = "afterTests";
+        
+    private class CountingClosingListenerImpl extends CountingClosingListener {
+
+            @Override
+            protected boolean isAlowedToFinish(String s) {
+                if (s.contains(exceptionStr) || s.contains(errorStr)) {
+                    return true;
+                }
+                return (s.contains(initStr) && s.contains(afterStr));
+            }
+        }
+    
+    private void evaluateStdoutContents(String expectedStdout, ProcessResult pr) {
+        // Assert that the applet was initialized.
+        Assert.assertTrue("JSToJSetTest stdout should contain \"" + initStr
+                + "\" but it didn't.", pr.stdout.contains(initStr));
+
+        // Assert that the values set by JavaScript are ok
+        Assert.assertTrue("The output should include: "+expectedStdout+", but is: "+pr.stdout,
+                pr.stdout.contains(expectedStdout));
+
+    }
+
+    private void jsToJavaSetNormalTest(String fieldStr, String valueStr) throws Exception {
+        String strURL = "/JSToJSet.html?" + fieldStr + ";" + valueStr;
+        ProcessResult pr = server.executeBrowser(strURL, new CountingClosingListenerImpl(), new CountingClosingListenerImpl());
+        String expectedStdout = "New value is: " + valueStr;
+        evaluateStdoutContents(expectedStdout, pr);
+    }
+    
+    private void jsToJavaSetSpecialTest(String fieldStr, String valueStr, int testType) throws Exception {
+        String strURL = "/JSToJSet.html?";
+        String expectedStdout = "";
+        switch( testType ){
+        case 0://array element
+            strURL += fieldStr + ";" + valueStr;
+            expectedStdout = "New array value is: "+valueStr;
+            break;
+        case 1://whole array, set 1st element
+            strURL += fieldStr + ";[" + valueStr;
+            expectedStdout = "New array value is: "+valueStr;
+            break;
+        case 2://char et al - to be set at JS side
+            strURL += fieldStr + ";JavaScript";
+            expectedStdout = "New value is: "+valueStr;
+            break;
+        default:
+            break;        
+        }
+         
+        ProcessResult pr = server.executeBrowser(strURL, new CountingClosingListenerImpl(), new CountingClosingListenerImpl());
+        evaluateStdoutContents(expectedStdout, pr);
+    }
+
+    @Test
+    @TestInBrowsers(testIn = { Browsers.all })
+    @NeedsDisplay
+    public void AppletJSToJSet_int_Test() throws Exception {
+        jsToJavaSetNormalTest("_int", "1");
+    }
+
+    @Test
+    @TestInBrowsers(testIn = { Browsers.all })
+    @NeedsDisplay
+    public void AppletJSToJSet_double_Test() throws Exception {
+        jsToJavaSetNormalTest("_double", "1.0");
+    }
+
+    @Test
+    @TestInBrowsers(testIn = { Browsers.all })
+    @NeedsDisplay
+    public void AppletJSToJSet_float_Test() throws Exception {
+        jsToJavaSetNormalTest("_float", "1.1");
+    }
+
+    @Test
+    @TestInBrowsers(testIn = { Browsers.all })
+    @NeedsDisplay
+    public void AppletJSToJSet_long_Test() throws Exception {
+        jsToJavaSetNormalTest("_long", "10000");
+    }
+
+    @Test
+    @TestInBrowsers(testIn = { Browsers.all })
+    @NeedsDisplay
+    public void AppletJSToJSet_boolean_Test() throws Exception {
+        jsToJavaSetNormalTest("_boolean", "true");
+    }
+
+    @Test
+    @TestInBrowsers(testIn = { Browsers.all })
+    @NeedsDisplay
+    public void AppletJSToJSet_char_Test() throws Exception {
+        jsToJavaSetSpecialTest("_char", "a", 2);
+    }
+
+    @Test
+    @TestInBrowsers(testIn = { Browsers.all })
+    @NeedsDisplay
+    public void AppletJSToJSet_byte_Test() throws Exception {
+        jsToJavaSetNormalTest("_byte", "10");
+    }
+
+    @Test
+    @TestInBrowsers(testIn = { Browsers.all })
+    @NeedsDisplay
+    public void AppletJSToJSet_intArrayElement_Test() throws Exception {
+        jsToJavaSetSpecialTest("_intArray[0]", "1", 0);
+    }
+
+    @Test
+    @TestInBrowsers(testIn = { Browsers.all })
+    @NeedsDisplay
+    public void AppletJSToJSet_regularString_Test() throws Exception {
+        jsToJavaSetNormalTest("_String", "teststring");
+    }
+
+    @Test
+    @TestInBrowsers(testIn = { Browsers.all })
+    @NeedsDisplay
+    public void AppletJSToJSet_specialCharsString_Test() throws Exception {
+        jsToJavaSetSpecialTest("_specialString", "𠁎〒£$ǣ€𝍖", 2);
+    }
+
+    @Test
+    @TestInBrowsers(testIn = { Browsers.all })
+    @NeedsDisplay
+    public void AppletJSToJSet_null_Test() throws Exception {
+        jsToJavaSetNormalTest("_Object", "null");
+    }
+
+    @Test
+    @TestInBrowsers(testIn = { Browsers.all })
+    @NeedsDisplay
+    public void AppletJSToJSet_Integer_Test() throws Exception {
+        jsToJavaSetNormalTest("_Integer", "1");
+    }
+
+    @Test
+    @TestInBrowsers(testIn = { Browsers.all })
+    @NeedsDisplay
+    public void AppletJSToJSet_Double_Test() throws Exception {
+        jsToJavaSetNormalTest("_Double", "1.0");
+    }
+
+    @Test
+    @TestInBrowsers(testIn = { Browsers.all })
+    @NeedsDisplay
+    public void AppletJSToJSet_Float_Test() throws Exception {
+        jsToJavaSetNormalTest("_Float", "1.1");
+    }
+
+    @Test
+    @TestInBrowsers(testIn = { Browsers.all })
+    @NeedsDisplay
+    public void AppletJSToJSet_Long_Test() throws Exception {
+        jsToJavaSetNormalTest("_Long", "10000");
+    }
+
+    @Test
+    @TestInBrowsers(testIn = { Browsers.all })
+    @NeedsDisplay
+    public void AppletJSToJSet_Boolean_Test() throws Exception {
+        jsToJavaSetNormalTest("_Boolean", "true");
+    }
+
+    @Test
+    @TestInBrowsers(testIn = { Browsers.all })
+    @NeedsDisplay
+    public void AppletJSToJSet_Character_Test() throws Exception {
+        jsToJavaSetSpecialTest("_Character", "A", 2);
+    }
+
+    @Test
+    @TestInBrowsers(testIn = { Browsers.all })
+    @NeedsDisplay
+    public void AppletJSToJSet_Byte_Test() throws Exception {
+        jsToJavaSetNormalTest("_Byte", "100");
+    }
+
+    @Test
+    @TestInBrowsers(testIn = { Browsers.all })
+    @NeedsDisplay
+    public void AppletJSToJSet_DoubleArrayElement_Test() throws Exception {
+        jsToJavaSetSpecialTest("_DoubleArray[0]", "1.1", 0);
+    }
+
+    @Test
+    @TestInBrowsers(testIn = { Browsers.all })
+    @NeedsDisplay
+    public void AppletJSToJSet_DoubleFullArray_Test() throws Exception {
+        jsToJavaSetSpecialTest("_DoubleArray2", "0.1", 1);
+    }
+
+}