/hg/icedtea-web: Added tests for signed applet/app using Permiss...

jvanek at icedtea.classpath.org jvanek at icedtea.classpath.org
Fri Jul 10 17:12:30 UTC 2015


changeset 01082f3b6119 in /hg/icedtea-web
details: http://icedtea.classpath.org/hg/icedtea-web?cmd=changeset;node=01082f3b6119
author: Jiri Vanek <jvanek at redhat.com>
date: Fri Jul 10 19:11:44 2015 +0200

	Added tests for signed applet/app using Permission attribute


diffstat:

 ChangeLog                                                                                         |   49 ++
 tests/reproducers/signed/SandboxSignedAllPerm/resources/SandboxSignedAllPerm.html                 |   42 ++
 tests/reproducers/signed/SandboxSignedAllPerm/resources/SandboxSignedAllPerm.jnlp                 |   53 ++
 tests/reproducers/signed/SandboxSignedAllPerm/resources/SandboxSignedAllPerm_applet.jnlp          |   58 ++
 tests/reproducers/signed/SandboxSignedAllPerm/resources/SandboxSignedAllPerm_applet_security.jnlp |   61 +++
 tests/reproducers/signed/SandboxSignedAllPerm/resources/SandboxSignedAllPerm_security.jnlp        |   56 ++
 tests/reproducers/signed/SandboxSignedAllPerm/srcs/META-INF/MANIFEST.MF                           |    3 +
 tests/reproducers/signed/SandboxSignedAllPerm/srcs/SandboxSignedAllPerm.java                      |   57 ++
 tests/reproducers/signed/SandboxSignedAllPerm/testcases/SandboxSignedAllPermTest.java             |  123 ++++++
 tests/reproducers/signed/SandboxSignedInvalid/resources/SandboxSignedInvalid.html                 |   42 ++
 tests/reproducers/signed/SandboxSignedInvalid/resources/SandboxSignedInvalid.jnlp                 |   53 ++
 tests/reproducers/signed/SandboxSignedInvalid/resources/SandboxSignedInvalid_applet.jnlp          |   58 ++
 tests/reproducers/signed/SandboxSignedInvalid/resources/SandboxSignedInvalid_applet_security.jnlp |   61 +++
 tests/reproducers/signed/SandboxSignedInvalid/resources/SandboxSignedInvalid_security.jnlp        |   56 ++
 tests/reproducers/signed/SandboxSignedInvalid/srcs/META-INF/MANIFEST.MF                           |    3 +
 tests/reproducers/signed/SandboxSignedInvalid/srcs/SandboxSignedInvalid.java                      |   57 ++
 tests/reproducers/signed/SandboxSignedInvalid/testcases/SandboxSignedInvalidTest.java             |  125 ++++++
 tests/reproducers/signed/SandboxSignedMissing/resources/SandboxSignedMissing.html                 |   42 ++
 tests/reproducers/signed/SandboxSignedMissing/resources/SandboxSignedMissing.jnlp                 |   53 ++
 tests/reproducers/signed/SandboxSignedMissing/resources/SandboxSignedMissing_applet.jnlp          |   58 ++
 tests/reproducers/signed/SandboxSignedMissing/resources/SandboxSignedMissing_applet_security.jnlp |   61 +++
 tests/reproducers/signed/SandboxSignedMissing/resources/SandboxSignedMissing_security.jnlp        |   56 ++
 tests/reproducers/signed/SandboxSignedMissing/srcs/META-INF/MANIFEST.MF                           |    2 +
 tests/reproducers/signed/SandboxSignedMissing/srcs/SandboxSignedMissing.java                      |   57 ++
 tests/reproducers/signed/SandboxSignedMissing/testcases/SandboxSignedMissingTest.java             |  130 ++++++
 tests/reproducers/signed/SandboxSignedMissing/testcases/SandboxSignedMissingTestHighSecurity.java |  195 ++++++++++
 tests/reproducers/signed/SandboxSignedSandbox/resources/SandboxSignedSandbox.html                 |   42 ++
 tests/reproducers/signed/SandboxSignedSandbox/resources/SandboxSignedSandbox.jnlp                 |   53 ++
 tests/reproducers/signed/SandboxSignedSandbox/resources/SandboxSignedSandbox_applet.jnlp          |   58 ++
 tests/reproducers/signed/SandboxSignedSandbox/resources/SandboxSignedSandbox_applet_security.jnlp |   61 +++
 tests/reproducers/signed/SandboxSignedSandbox/resources/SandboxSignedSandbox_security.jnlp        |   56 ++
 tests/reproducers/signed/SandboxSignedSandbox/srcs/META-INF/MANIFEST.MF                           |    3 +
 tests/reproducers/signed/SandboxSignedSandbox/srcs/SandboxSignedSandbox.java                      |   57 ++
 tests/reproducers/signed/SandboxSignedSandbox/testcases/SandboxSignedSandboxTest.java             |  128 ++++++
 34 files changed, 2069 insertions(+), 0 deletions(-)

diffs (truncated from 2228 to 500 lines):

diff -r 2bd186bfd9c9 -r 01082f3b6119 ChangeLog
--- a/ChangeLog	Thu Jun 25 12:10:16 2015 +0200
+++ b/ChangeLog	Fri Jul 10 19:11:44 2015 +0200
@@ -1,3 +1,52 @@
+2015-07-10  Jiri Vanek  <jvanek at redhat.com>
+
+	Added tests for signed applet/app using Permission attribute
+	* tests/reproducers/signed/SandboxSignedAllPerm/resources/SandboxSignedAllPerm.html
+	* tests/reproducers/signed/SandboxSignedAllPerm/resources/SandboxSignedAllPerm.jnlp
+	* tests/reproducers/signed/SandboxSignedAllPerm/resources/SandboxSignedAllPerm_applet.jnlp
+	* tests/reproducers/signed/SandboxSignedAllPerm/resources/SandboxSignedAllPerm_applet_security.jnlp
+	* tests/reproducers/signed/SandboxSignedAllPerm/resources/SandboxSignedAllPerm_security.jnlp
+	* tests/reproducers/signed/SandboxSignedAllPerm/srcs/META-INF/MANIFEST.MF
+	contains Permissions: all-permissions
+	* tests/reproducers/signed/SandboxSignedAllPerm/srcs/SandboxSignedAllPerm.java
+	* tests/reproducers/signed/SandboxSignedAllPerm/testcases/SandboxSignedAllPermTest.java
+	testcases with permissions in manifest check on
+	* tests/reproducers/signed/SandboxSignedInvalid/resources/SandboxSignedInvalid.html
+	* tests/reproducers/signed/SandboxSignedInvalid/resources/SandboxSignedInvalid.jnlp
+	* tests/reproducers/signed/SandboxSignedInvalid/resources/SandboxSignedInvalid_applet.jnlp
+	* tests/reproducers/signed/SandboxSignedInvalid/resources/SandboxSignedInvalid_applet_security.jnlp
+	* tests/reproducers/signed/SandboxSignedInvalid/resources/SandboxSignedInvalid_security.jnlp
+	* tests/reproducers/signed/SandboxSignedInvalid/srcs/META-INF/MANIFEST.MF
+	contains Permissions: invalidValue
+	* tests/reproducers/signed/SandboxSignedInvalid/srcs/SandboxSignedInvalid.java
+	* tests/reproducers/signed/SandboxSignedInvalid/testcases/SandboxSignedInvalidTest.java
+	testcases with permissions in manifest check on
+	* tests/reproducers/signed/SandboxSignedMissing/resources/SandboxSignedMissing.html
+	* tests/reproducers/signed/SandboxSignedMissing/resources/SandboxSignedMissing.jnlp
+	* tests/reproducers/signed/SandboxSignedMissing/resources/SandboxSignedMissing_applet.jnlp
+	* tests/reproducers/signed/SandboxSignedMissing/resources/SandboxSignedMissing_applet_security.jnlp
+	* tests/reproducers/signed/SandboxSignedMissing/resources/SandboxSignedMissing_security.jnlp
+	* tests/reproducers/signed/SandboxSignedMissing/srcs/META-INF/MANIFEST.MF
+	does not contains Permissions
+	* tests/reproducers/signed/SandboxSignedMissing/srcs/SandboxSignedMissing.java
+	* tests/reproducers/signed/SandboxSignedMissing/testcases/SandboxSignedMissingTest.java
+	testcases with permissions in manifest check on
+	* tests/reproducers/signed/SandboxSignedMissing/testcases/SandboxSignedMissingTestHighSecurity.java
+	testcases with permissions in manifest check on and on high security => interactive tests
+	with autoreply
+	* tests/reproducers/signed/SandboxSignedSandbox/resources/SandboxSignedSandbox.html
+	* tests/reproducers/signed/SandboxSignedSandbox/resources/SandboxSignedSandbox.jnlp
+	* tests/reproducers/signed/SandboxSignedSandbox/resources/SandboxSignedSandbox_applet.jnlp
+	* tests/reproducers/signed/SandboxSignedSandbox/resources/SandboxSignedSandbox_applet_security.jnlp
+	* tests/reproducers/signed/SandboxSignedSandbox/resources/SandboxSignedSandbox_security.jnlp
+	* tests/reproducers/signed/SandboxSignedSandbox/srcs/META-INF/MANIFEST.MF
+	contains Permissions: sandbox
+	* tests/reproducers/signed/SandboxSignedSandbox/srcs/SandboxSignedSandbox.java
+	* tests/reproducers/signed/SandboxSignedSandbox/testcases/SandboxSignedSandboxTest.java
+	testcases with permissions in manifest check on. Contains two failing tests
+	currently itw with snadbox in manifest and jnlp not requesting permissions fails.
+	Bug to be fixed
+
 2015-06-25  Jiri Vanek  <jvanek at redhat.com>
 
 	Fixed to short buttons for localized text - RH1231441
diff -r 2bd186bfd9c9 -r 01082f3b6119 tests/reproducers/signed/SandboxSignedAllPerm/resources/SandboxSignedAllPerm.html
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/reproducers/signed/SandboxSignedAllPerm/resources/SandboxSignedAllPerm.html	Fri Jul 10 19:11:44 2015 +0200
@@ -0,0 +1,42 @@
+<!--
+
+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; either version 2, or (at your option)
+any later version.
+
+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.
+
+ -->
+<html><head></head><body bgcolor="red">
+<p><applet code="SandboxSignedAllPerm.class" archive="SandboxSignedAllPerm.jar" codebase="." width="250" height="200">
+</applet></p>
+</body>
+</html>
\ No newline at end of file
diff -r 2bd186bfd9c9 -r 01082f3b6119 tests/reproducers/signed/SandboxSignedAllPerm/resources/SandboxSignedAllPerm.jnlp
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/reproducers/signed/SandboxSignedAllPerm/resources/SandboxSignedAllPerm.jnlp	Fri Jul 10 19:11:44 2015 +0200
@@ -0,0 +1,53 @@
+<!--
+
+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; either version 2, or (at your option)
+any later version.
+
+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.
+
+ -->
+<?xml version="1.0" encoding="utf-8"?>
+<jnlp spec="1.0" href="SandboxSignedAllPerm.jnlp" codebase=".">
+    <information>
+        <title>SandboxSignedAllPerm</title>
+        <vendor>IcedTea</vendor>
+        <homepage href="http://icedtea.classpath.org/wiki/IcedTea-Web#Testing_IcedTea-Web"/>
+        <description>SandboxSignedAllPerm</description>
+        <offline/>
+    </information>
+    <resources>
+        <j2se version="1.4+"/>
+        <jar href="SandboxSignedAllPerm.jar"/>
+    </resources>
+  <application-desc main-class="SandboxSignedAllPerm">
+  </application-desc>
+</jnlp>
\ No newline at end of file
diff -r 2bd186bfd9c9 -r 01082f3b6119 tests/reproducers/signed/SandboxSignedAllPerm/resources/SandboxSignedAllPerm_applet.jnlp
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/reproducers/signed/SandboxSignedAllPerm/resources/SandboxSignedAllPerm_applet.jnlp	Fri Jul 10 19:11:44 2015 +0200
@@ -0,0 +1,58 @@
+<!--
+
+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; either version 2, or (at your option)
+any later version.
+
+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.
+
+ -->
+<?xml version="1.0" encoding="utf-8"?>
+<jnlp spec="1.0" href="SandboxSignedAllPerm_applet.jnlp" codebase=".">
+    <information>
+        <title>SandboxSignedAllPerm</title>
+        <vendor>IcedTea</vendor>
+        <homepage href="http://icedtea.classpath.org/wiki/IcedTea-Web#Testing_IcedTea-Web"/>
+        <description>SandboxSignedAllPerm</description>
+        <offline/>
+    </information>
+    <resources>
+        <j2se version="1.4+"/>
+        <jar href="SandboxSignedAllPerm.jar"/>
+    </resources>
+    <applet-desc
+      documentBase="."
+      name="SandboxSignedAllPerm"
+      main-class="SandboxSignedAllPerm"
+      width="250"
+      height="200">
+  </applet-desc>
+</jnlp>
\ No newline at end of file
diff -r 2bd186bfd9c9 -r 01082f3b6119 tests/reproducers/signed/SandboxSignedAllPerm/resources/SandboxSignedAllPerm_applet_security.jnlp
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/reproducers/signed/SandboxSignedAllPerm/resources/SandboxSignedAllPerm_applet_security.jnlp	Fri Jul 10 19:11:44 2015 +0200
@@ -0,0 +1,61 @@
+<!--
+
+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; either version 2, or (at your option)
+any later version.
+
+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.
+
+-->
+<?xml version="1.0" encoding="utf-8"?>
+<jnlp spec="1.0" href="SandboxSignedAllPerm_applet_security.jnlp" codebase=".">
+    <information>
+        <title>SandboxSignedAllPerm</title>
+        <vendor>IcedTea</vendor>
+        <homepage href="http://icedtea.classpath.org/wiki/IcedTea-Web#Testing_IcedTea-Web"/>
+        <description>SandboxSignedAllPerm</description>
+        <offline/>
+    </information>
+    <resources>
+        <j2se version="1.4+"/>
+        <jar href="SandboxSignedAllPerm.jar"/>
+    </resources>
+    <security>
+        <all-permissions/>
+    </security>
+    <applet-desc
+        documentBase="."
+        name="SandboxSignedAllPerm"
+        main-class="SandboxSignedAllPerm"
+        width="250"
+        height="200">
+    </applet-desc>
+</jnlp>
\ No newline at end of file
diff -r 2bd186bfd9c9 -r 01082f3b6119 tests/reproducers/signed/SandboxSignedAllPerm/resources/SandboxSignedAllPerm_security.jnlp
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/reproducers/signed/SandboxSignedAllPerm/resources/SandboxSignedAllPerm_security.jnlp	Fri Jul 10 19:11:44 2015 +0200
@@ -0,0 +1,56 @@
+<!--
+
+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; either version 2, or (at your option)
+any later version.
+
+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.
+
+ -->
+<?xml version="1.0" encoding="utf-8"?>
+<jnlp spec="1.0" href="SandboxSignedAllPerm_security.jnlp" codebase=".">
+    <information>
+        <title>SandboxSignedAllPerm</title>
+        <vendor>IcedTea</vendor>
+        <homepage href="http://icedtea.classpath.org/wiki/IcedTea-Web#Testing_IcedTea-Web"/>
+        <description>SandboxSignedAllPerm</description>
+        <offline/>
+    </information>
+    <resources>
+        <j2se version="1.4+"/>
+        <jar href="SandboxSignedAllPerm.jar"/>
+    </resources>
+  <security>
+      <all-permissions/>
+  </security> 
+  <application-desc main-class="SandboxSignedAllPerm">
+  </application-desc>
+</jnlp>
\ No newline at end of file
diff -r 2bd186bfd9c9 -r 01082f3b6119 tests/reproducers/signed/SandboxSignedAllPerm/srcs/META-INF/MANIFEST.MF
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/reproducers/signed/SandboxSignedAllPerm/srcs/META-INF/MANIFEST.MF	Fri Jul 10 19:11:44 2015 +0200
@@ -0,0 +1,3 @@
+Manifest-Version: 1.0
+Permissions: all-permissions
+
diff -r 2bd186bfd9c9 -r 01082f3b6119 tests/reproducers/signed/SandboxSignedAllPerm/srcs/SandboxSignedAllPerm.java
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/reproducers/signed/SandboxSignedAllPerm/srcs/SandboxSignedAllPerm.java	Fri Jul 10 19:11:44 2015 +0200
@@ -0,0 +1,57 @@
+
+import java.applet.Applet;
+
+/* AppletTest.java
+ Copyright (C) 2011 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.
+ */
+public class SandboxSignedAllPerm extends Applet {
+
+    @Override
+    public void init() {
+        confirm();
+    }
+
+    public static void main(String... s) {
+        confirm();
+    }
+
+    private static void confirm() {
+        System.out.println("*** applet running ***");
+        System.out.println(System.getProperty("user.home"));
+        System.out.println("*** APPLET FINISHED ***");
+    }
+
+}
diff -r 2bd186bfd9c9 -r 01082f3b6119 tests/reproducers/signed/SandboxSignedAllPerm/testcases/SandboxSignedAllPermTest.java
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/reproducers/signed/SandboxSignedAllPerm/testcases/SandboxSignedAllPermTest.java	Fri Jul 10 19:11:44 2015 +0200
@@ -0,0 +1,123 @@
+
+import java.io.IOException;
+import java.util.Arrays;
+import net.sourceforge.jnlp.ProcessResult;
+import net.sourceforge.jnlp.ServerAccess;
+import net.sourceforge.jnlp.annotations.TestInBrowsers;
+import net.sourceforge.jnlp.browsertesting.BrowserTest;
+import net.sourceforge.jnlp.browsertesting.Browsers;
+import net.sourceforge.jnlp.closinglisteners.AutoErrorClosingListener;
+import net.sourceforge.jnlp.closinglisteners.AutoOkClosingListener;
+import net.sourceforge.jnlp.closinglisteners.StringBasedClosingListener;
+import net.sourceforge.jnlp.config.DeploymentConfiguration;
+import net.sourceforge.jnlp.runtime.ManifestAttributesChecker;
+import net.sourceforge.jnlp.tools.DeploymentPropertiesModifier;
+import org.junit.AfterClass;
+import org.junit.Assert;
+import org.junit.BeforeClass;
+import org.junit.Test;
+
+/* AppletTest.java
+ Copyright (C) 2011 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.
+ */
+public class SandboxSignedAllPermTest extends BrowserTest {
+
+        private static final DeploymentPropertiesModifier dpm = new DeploymentPropertiesModifier();
+        private static final StringBasedClosingListener aok = new AutoOkClosingListener();
+        private static final StringBasedClosingListener aer = new AutoErrorClosingListener();
+        private static final  String confirmation = "*** applet running ***";
+        @BeforeClass
+        public static void setDeploymentManifestPermissionReadingOnly() throws IOException{
+            dpm.setProperties(DeploymentConfiguration.KEY_ENABLE_MANIFEST_ATTRIBUTES_CHECK, ManifestAttributesChecker.MANIFEST_ATTRIBUTES_CHECK.PERMISSIONS.toString());
+        }
+        
+        @AfterClass
+        public static void restoreDeploymentProeprtiees() throws IOException{
+            dpm.restoreProperties();
+        }
+        
+    @Test
+    //no security dialog
+    //crash (jnlp dont have all-permnissions)
+    public void javawsAllPermNoSecurity() throws Exception{
+            ProcessResult p = server.executeJavawsHeadless("SandboxSignedAllPerm.jnlp");
+            Assert.assertTrue(p.stdout.contains(confirmation));


More information about the distro-pkg-dev mailing list