Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/openjdk-multiarch-jdk8u
Path: blob/aarch64-shenandoah-jdk8u272-b10/jdk/test/tools/launcher/MiscTests.java
38833 views
1
/*
2
* Copyright (c) 2010, 2012, 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
*/
23
24
/*
25
* @test
26
* @bug 6856415
27
* @summary Miscellaneous tests, Exceptions
28
* @compile -XDignore.symbol.file MiscTests.java
29
* @run main MiscTests
30
*/
31
32
33
import java.io.File;
34
import java.io.FileNotFoundException;
35
36
public class MiscTests extends TestHelper {
37
38
// 6856415: Checks to ensure that proper exceptions are thrown by java
39
static void test6856415() {
40
// No pkcs library on win-x64, so we bail out.
41
if (is64Bit && isWindows) {
42
return;
43
}
44
StringBuilder sb = new StringBuilder();
45
sb.append("public static void main(String... args) {\n");
46
sb.append("java.security.Provider p = new sun.security.pkcs11.SunPKCS11(args[0]);\n");
47
sb.append("java.security.Security.insertProviderAt(p, 1);\n");
48
sb.append("}");
49
File testJar = new File("Foo.jar");
50
testJar.delete();
51
try {
52
createJar(testJar, sb.toString());
53
} catch (FileNotFoundException fnfe) {
54
throw new RuntimeException(fnfe);
55
}
56
TestResult tr = doExec(javaCmd,
57
"-Djava.security.manager", "-jar", testJar.getName(), "foo.bak");
58
for (String s : tr.testOutput) {
59
System.out.println(s);
60
}
61
if (!tr.contains("java.security.AccessControlException:" +
62
" access denied (\"java.lang.RuntimePermission\"" +
63
" \"accessClassInPackage.sun.security.pkcs11\")")) {
64
System.out.println(tr.status);
65
}
66
}
67
68
public static void main(String... args) {
69
test6856415();
70
if (testExitValue != 0) {
71
throw new Error(testExitValue + " tests failed");
72
}
73
}
74
}
75
76