blob: 3769d117894f877b3617fa62d86b46fb1fd6937c [file] [log] [blame]
Kumar Srinivasan7511a792010-06-28 18:25:03 -07001/*
Kumar Srinivasan96608b32016-04-14 14:23:59 -07002 * Copyright (c) 2010, 2016, Oracle and/or its affiliates. All rights reserved.
Kumar Srinivasan7511a792010-06-28 18:25:03 -07003 * 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
Kumar Srinivasan96608b32016-04-14 14:23:59 -070026 * @bug 6856415 8154212
Kumar Srinivasanb5ae4b52011-03-14 10:36:43 -070027 * @summary Miscellaneous tests, Exceptions
Kumar Srinivasan25f79b32012-01-28 10:46:46 -080028 * @compile -XDignore.symbol.file MiscTests.java
Kumar Srinivasanef7b8cb2010-09-03 07:59:21 -070029 * @run main MiscTests
Kumar Srinivasan7511a792010-06-28 18:25:03 -070030 */
31
32
33import java.io.File;
Alan Batemandb4d3832016-03-17 19:04:16 +000034import java.io.IOException;
35import java.util.ArrayList;
Kumar Srinivasan96608b32016-04-14 14:23:59 -070036import java.util.HashMap;
Alan Batemandb4d3832016-03-17 19:04:16 +000037import java.util.List;
Kumar Srinivasan96608b32016-04-14 14:23:59 -070038import java.util.Map;
Kumar Srinivasan7511a792010-06-28 18:25:03 -070039
Kumar Srinivasan25f79b32012-01-28 10:46:46 -080040public class MiscTests extends TestHelper {
Kumar Srinivasan7511a792010-06-28 18:25:03 -070041
Alan Batemandb4d3832016-03-17 19:04:16 +000042 /**
43 * Test with class path set on the command line via -Djava.class.path
44 */
45 static void testWithClassPathSetViaProperty() throws IOException {
46 final String mainClass = "Foo";
47
48 File source = new File(mainClass + ".java");
49
50 List<String> scratch = new ArrayList<>();
51 scratch.add("public class Foo {");
52 scratch.add("public static void main(String... args) {");
53 scratch.add("}");
54 scratch.add("}");
55 createFile(source, scratch);
56
57 compile(mainClass + ".java");
58
59 String dir = new File(mainClass + ".class").getAbsoluteFile().getParent();
60 TestResult tr = doExec(javaCmd, "-Djava.class.path=" + dir, mainClass);
61 for (String s : tr.testOutput) {
62 System.out.println(s);
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 final String exportOpts
73 = "-XaddExports:jdk.crypto.pkcs11/sun.security.pkcs11=ALL-UNNAMED";
74
75 List<String> scratch = new ArrayList<>();
76 scratch.add("public class Foo6856415 {");
77 scratch.add("public static void main(String... args) {");
78 scratch.add("java.security.Provider p = new sun.security.pkcs11.SunPKCS11();");
79 scratch.add("java.security.Security.insertProviderAt(p, 1);");
80 scratch.add("}");
81 scratch.add("}");
82 createFile(new File(mainClass + ".java"), scratch);
83
84 compile(mainClass + ".java", exportOpts);
85
Kumar Srinivasan7511a792010-06-28 18:25:03 -070086 File testJar = new File("Foo.jar");
87 testJar.delete();
Alan Batemandb4d3832016-03-17 19:04:16 +000088 String jarArgs[] = {
89 (debug) ? "cvfe" : "cfe",
90 testJar.getAbsolutePath(),
91 mainClass,
92 mainClass + ".class"
93 };
94 createJar(jarArgs);
95
Kumar Srinivasan25f79b32012-01-28 10:46:46 -080096 TestResult tr = doExec(javaCmd,
Kumar Srinivasan7511a792010-06-28 18:25:03 -070097 "-Djava.security.manager", "-jar", testJar.getName(), "foo.bak");
Kumar Srinivasanef7b8cb2010-09-03 07:59:21 -070098 for (String s : tr.testOutput) {
99 System.out.println(s);
Alan Batemandb4d3832016-03-17 19:04:16 +0000100 }
Kumar Srinivasanef7b8cb2010-09-03 07:59:21 -0700101 if (!tr.contains("java.security.AccessControlException:" +
102 " access denied (\"java.lang.RuntimePermission\"" +
103 " \"accessClassInPackage.sun.security.pkcs11\")")) {
104 System.out.println(tr.status);
105 }
106 }
Kumar Srinivasanb5ae4b52011-03-14 10:36:43 -0700107
Kumar Srinivasan96608b32016-04-14 14:23:59 -0700108 static void testJLDEnvWithTool() {
109 final Map<String, String> envMap = new HashMap<>();
110 envMap.put("_JAVA_LAUNCHER_DEBUG", "true");
111 TestResult tr = doExec(envMap, javacCmd, "-version");
112 tr.checkPositive();
113 if (!tr.isOK()) {
114 System.out.println(tr);
115 }
116 }
117
Alan Batemandb4d3832016-03-17 19:04:16 +0000118 public static void main(String... args) throws IOException {
119 testWithClassPathSetViaProperty();
Kumar Srinivasan7511a792010-06-28 18:25:03 -0700120 test6856415();
Kumar Srinivasan96608b32016-04-14 14:23:59 -0700121 testJLDEnvWithTool();
Kumar Srinivasan25f79b32012-01-28 10:46:46 -0800122 if (testExitValue != 0) {
123 throw new Error(testExitValue + " tests failed");
Kumar Srinivasan96608b32016-04-14 14:23:59 -0700124 }
Kumar Srinivasan7511a792010-06-28 18:25:03 -0700125 }
126}