1 /*
2 * Copyright (c) 2010, 2016, Oracle and/or its affiliates. All rights reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation.
8 *
9 * This code is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12 * version 2 for more details (a copy is included in the LICENSE file that
13 * accompanied this code).
14 *
15 * You should have received a copy of the GNU General Public License version
16 * 2 along with this work; if not, write to the Free Software Foundation,
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18 *
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20 * or visit www.oracle.com if you need additional information or have any
21 * questions.
22 */
63 }
64 }
65
66 /**
67 * 6856415: Checks to ensure that proper exceptions are thrown by java
68 */
69 static void test6856415() throws IOException {
70
71 final String mainClass = "Foo6856415";
72
73 List<String> scratch = new ArrayList<>();
74 scratch.add("public class Foo6856415 {");
75 scratch.add("public static void main(String... args) {");
76 scratch.add("java.security.Provider p = new sun.security.pkcs11.SunPKCS11();");
77 scratch.add("java.security.Security.insertProviderAt(p, 1);");
78 scratch.add("}");
79 scratch.add("}");
80 createFile(new File(mainClass + ".java"), scratch);
81
82 compile(mainClass + ".java",
83 "--add-modules=jdk.crypto.token",
84 "--add-exports=jdk.crypto.token/sun.security.pkcs11=ALL-UNNAMED");
85
86 File testJar = new File("Foo.jar");
87 testJar.delete();
88 String jarArgs[] = {
89 (debug) ? "cvfe" : "cfe",
90 testJar.getAbsolutePath(),
91 mainClass,
92 mainClass + ".class"
93 };
94 createJar(jarArgs);
95
96 TestResult tr = doExec(javaCmd,
97 "-Djava.security.manager", "-jar", testJar.getName(), "foo.bak");
98 if (!tr.contains("java.security.AccessControlException:" +
99 " access denied (\"java.lang.RuntimePermission\"" +
100 " \"accessClassInPackage.sun.security.pkcs11\")")) {
101 System.out.println(tr);
102 }
103 }
104
|
1 /*
2 * Copyright (c) 2010, 2017, Oracle and/or its affiliates. All rights reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation.
8 *
9 * This code is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12 * version 2 for more details (a copy is included in the LICENSE file that
13 * accompanied this code).
14 *
15 * You should have received a copy of the GNU General Public License version
16 * 2 along with this work; if not, write to the Free Software Foundation,
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18 *
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20 * or visit www.oracle.com if you need additional information or have any
21 * questions.
22 */
63 }
64 }
65
66 /**
67 * 6856415: Checks to ensure that proper exceptions are thrown by java
68 */
69 static void test6856415() throws IOException {
70
71 final String mainClass = "Foo6856415";
72
73 List<String> scratch = new ArrayList<>();
74 scratch.add("public class Foo6856415 {");
75 scratch.add("public static void main(String... args) {");
76 scratch.add("java.security.Provider p = new sun.security.pkcs11.SunPKCS11();");
77 scratch.add("java.security.Security.insertProviderAt(p, 1);");
78 scratch.add("}");
79 scratch.add("}");
80 createFile(new File(mainClass + ".java"), scratch);
81
82 compile(mainClass + ".java",
83 "--add-modules=jdk.crypto.cryptoki",
84 "--add-exports=jdk.crypto.cryptoki/sun.security.pkcs11=ALL-UNNAMED");
85
86 File testJar = new File("Foo.jar");
87 testJar.delete();
88 String jarArgs[] = {
89 (debug) ? "cvfe" : "cfe",
90 testJar.getAbsolutePath(),
91 mainClass,
92 mainClass + ".class"
93 };
94 createJar(jarArgs);
95
96 TestResult tr = doExec(javaCmd,
97 "-Djava.security.manager", "-jar", testJar.getName(), "foo.bak");
98 if (!tr.contains("java.security.AccessControlException:" +
99 " access denied (\"java.lang.RuntimePermission\"" +
100 " \"accessClassInPackage.sun.security.pkcs11\")")) {
101 System.out.println(tr);
102 }
103 }
104
|