test/jdk/tools/launcher/MiscTests.java
author herrick
Fri, 21 Jun 2019 08:29:09 -0400
branchJDK-8200758-branch
changeset 57419 44c2481650ce
parent 47216 71c04702a3d5
permissions -rw-r--r--
8225092: Several jpackage tests failes when run with jcov enabled Submitted-by: almatvee Reviewed-by: herrick, almatvee
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
5982
de622fe4f7d8 6856415: Enabling java security manager will make programe thrown wrong exception ( main method not found )
ksrini
parents:
diff changeset
     1
/*
43248
5e15de85a1a0 8172527: Rename jdk.crypto.token to jdk.crypto.cryptoki
ascarpino
parents: 42693
diff changeset
     2
 * Copyright (c) 2010, 2017, Oracle and/or its affiliates. All rights reserved.
5982
de622fe4f7d8 6856415: Enabling java security manager will make programe thrown wrong exception ( main method not found )
ksrini
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
de622fe4f7d8 6856415: Enabling java security manager will make programe thrown wrong exception ( main method not found )
ksrini
parents:
diff changeset
     4
 *
de622fe4f7d8 6856415: Enabling java security manager will make programe thrown wrong exception ( main method not found )
ksrini
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
de622fe4f7d8 6856415: Enabling java security manager will make programe thrown wrong exception ( main method not found )
ksrini
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
de622fe4f7d8 6856415: Enabling java security manager will make programe thrown wrong exception ( main method not found )
ksrini
parents:
diff changeset
     7
 * published by the Free Software Foundation.
de622fe4f7d8 6856415: Enabling java security manager will make programe thrown wrong exception ( main method not found )
ksrini
parents:
diff changeset
     8
 *
de622fe4f7d8 6856415: Enabling java security manager will make programe thrown wrong exception ( main method not found )
ksrini
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
de622fe4f7d8 6856415: Enabling java security manager will make programe thrown wrong exception ( main method not found )
ksrini
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
de622fe4f7d8 6856415: Enabling java security manager will make programe thrown wrong exception ( main method not found )
ksrini
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
de622fe4f7d8 6856415: Enabling java security manager will make programe thrown wrong exception ( main method not found )
ksrini
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
de622fe4f7d8 6856415: Enabling java security manager will make programe thrown wrong exception ( main method not found )
ksrini
parents:
diff changeset
    13
 * accompanied this code).
de622fe4f7d8 6856415: Enabling java security manager will make programe thrown wrong exception ( main method not found )
ksrini
parents:
diff changeset
    14
 *
de622fe4f7d8 6856415: Enabling java security manager will make programe thrown wrong exception ( main method not found )
ksrini
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
de622fe4f7d8 6856415: Enabling java security manager will make programe thrown wrong exception ( main method not found )
ksrini
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
de622fe4f7d8 6856415: Enabling java security manager will make programe thrown wrong exception ( main method not found )
ksrini
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
de622fe4f7d8 6856415: Enabling java security manager will make programe thrown wrong exception ( main method not found )
ksrini
parents:
diff changeset
    18
 *
de622fe4f7d8 6856415: Enabling java security manager will make programe thrown wrong exception ( main method not found )
ksrini
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
de622fe4f7d8 6856415: Enabling java security manager will make programe thrown wrong exception ( main method not found )
ksrini
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
de622fe4f7d8 6856415: Enabling java security manager will make programe thrown wrong exception ( main method not found )
ksrini
parents:
diff changeset
    21
 * questions.
de622fe4f7d8 6856415: Enabling java security manager will make programe thrown wrong exception ( main method not found )
ksrini
parents:
diff changeset
    22
 */
de622fe4f7d8 6856415: Enabling java security manager will make programe thrown wrong exception ( main method not found )
ksrini
parents:
diff changeset
    23
de622fe4f7d8 6856415: Enabling java security manager will make programe thrown wrong exception ( main method not found )
ksrini
parents:
diff changeset
    24
/*
de622fe4f7d8 6856415: Enabling java security manager will make programe thrown wrong exception ( main method not found )
ksrini
parents:
diff changeset
    25
 * @test
37540
e92d95400f31 8154470: defines.h confused about PROGNAME and JAVA_ARGS
martin
parents: 37359
diff changeset
    26
 * @bug 6856415 8154212 8154470
8783
2ea9207f2fad 7027288: (launcher) remove jkernel test from MiscTests
ksrini
parents: 6522
diff changeset
    27
 * @summary Miscellaneous tests, Exceptions
45944
882cea808912 8179292: a number of launcher tests fail when run with --limit-modules due to CNFE: javax.tools.ToolProvider
anazarov
parents: 43248
diff changeset
    28
 * @modules jdk.compiler
882cea808912 8179292: a number of launcher tests fail when run with --limit-modules due to CNFE: javax.tools.ToolProvider
anazarov
parents: 43248
diff changeset
    29
 *          jdk.zipfs
11687
f13cadbb0bb5 7127906: (launcher) convert the launcher regression tests to java
ksrini
parents: 9035
diff changeset
    30
 * @compile -XDignore.symbol.file MiscTests.java
6522
1e468849b92c 6981001: (launcher) EnsureJREInstallation is not being called in order
ksrini
parents: 5982
diff changeset
    31
 * @run main MiscTests
5982
de622fe4f7d8 6856415: Enabling java security manager will make programe thrown wrong exception ( main method not found )
ksrini
parents:
diff changeset
    32
 */
de622fe4f7d8 6856415: Enabling java security manager will make programe thrown wrong exception ( main method not found )
ksrini
parents:
diff changeset
    33
de622fe4f7d8 6856415: Enabling java security manager will make programe thrown wrong exception ( main method not found )
ksrini
parents:
diff changeset
    34
de622fe4f7d8 6856415: Enabling java security manager will make programe thrown wrong exception ( main method not found )
ksrini
parents:
diff changeset
    35
import java.io.File;
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents: 31270
diff changeset
    36
import java.io.IOException;
9d0388c6b336 8142968: Module System implementation
alanb
parents: 31270
diff changeset
    37
import java.util.ArrayList;
37359
4a3768da1851 8154212: launcher SEGV when _JAVA_LAUNCHER_DEBUG is set
ksrini
parents: 36511
diff changeset
    38
import java.util.HashMap;
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents: 31270
diff changeset
    39
import java.util.List;
37359
4a3768da1851 8154212: launcher SEGV when _JAVA_LAUNCHER_DEBUG is set
ksrini
parents: 36511
diff changeset
    40
import java.util.Map;
5982
de622fe4f7d8 6856415: Enabling java security manager will make programe thrown wrong exception ( main method not found )
ksrini
parents:
diff changeset
    41
11687
f13cadbb0bb5 7127906: (launcher) convert the launcher regression tests to java
ksrini
parents: 9035
diff changeset
    42
public class MiscTests extends TestHelper {
5982
de622fe4f7d8 6856415: Enabling java security manager will make programe thrown wrong exception ( main method not found )
ksrini
parents:
diff changeset
    43
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents: 31270
diff changeset
    44
    /**
9d0388c6b336 8142968: Module System implementation
alanb
parents: 31270
diff changeset
    45
     * Test with class path set on the command line via -Djava.class.path
9d0388c6b336 8142968: Module System implementation
alanb
parents: 31270
diff changeset
    46
     */
9d0388c6b336 8142968: Module System implementation
alanb
parents: 31270
diff changeset
    47
    static void testWithClassPathSetViaProperty() throws IOException {
9d0388c6b336 8142968: Module System implementation
alanb
parents: 31270
diff changeset
    48
        final String mainClass = "Foo";
9d0388c6b336 8142968: Module System implementation
alanb
parents: 31270
diff changeset
    49
9d0388c6b336 8142968: Module System implementation
alanb
parents: 31270
diff changeset
    50
        File source = new File(mainClass + ".java");
9d0388c6b336 8142968: Module System implementation
alanb
parents: 31270
diff changeset
    51
9d0388c6b336 8142968: Module System implementation
alanb
parents: 31270
diff changeset
    52
        List<String> scratch = new ArrayList<>();
9d0388c6b336 8142968: Module System implementation
alanb
parents: 31270
diff changeset
    53
        scratch.add("public class Foo {");
9d0388c6b336 8142968: Module System implementation
alanb
parents: 31270
diff changeset
    54
        scratch.add("public static void main(String... args) {");
9d0388c6b336 8142968: Module System implementation
alanb
parents: 31270
diff changeset
    55
        scratch.add("}");
9d0388c6b336 8142968: Module System implementation
alanb
parents: 31270
diff changeset
    56
        scratch.add("}");
9d0388c6b336 8142968: Module System implementation
alanb
parents: 31270
diff changeset
    57
        createFile(source, scratch);
9d0388c6b336 8142968: Module System implementation
alanb
parents: 31270
diff changeset
    58
9d0388c6b336 8142968: Module System implementation
alanb
parents: 31270
diff changeset
    59
        compile(mainClass + ".java");
9d0388c6b336 8142968: Module System implementation
alanb
parents: 31270
diff changeset
    60
9d0388c6b336 8142968: Module System implementation
alanb
parents: 31270
diff changeset
    61
        String dir = new File(mainClass + ".class").getAbsoluteFile().getParent();
9d0388c6b336 8142968: Module System implementation
alanb
parents: 31270
diff changeset
    62
        TestResult tr = doExec(javaCmd, "-Djava.class.path=" + dir, mainClass);
9d0388c6b336 8142968: Module System implementation
alanb
parents: 31270
diff changeset
    63
        for (String s : tr.testOutput) {
9d0388c6b336 8142968: Module System implementation
alanb
parents: 31270
diff changeset
    64
            System.out.println(s);
9d0388c6b336 8142968: Module System implementation
alanb
parents: 31270
diff changeset
    65
        }
9d0388c6b336 8142968: Module System implementation
alanb
parents: 31270
diff changeset
    66
    }
9d0388c6b336 8142968: Module System implementation
alanb
parents: 31270
diff changeset
    67
9d0388c6b336 8142968: Module System implementation
alanb
parents: 31270
diff changeset
    68
    /**
9d0388c6b336 8142968: Module System implementation
alanb
parents: 31270
diff changeset
    69
     * 6856415: Checks to ensure that proper exceptions are thrown by java
9d0388c6b336 8142968: Module System implementation
alanb
parents: 31270
diff changeset
    70
     */
9d0388c6b336 8142968: Module System implementation
alanb
parents: 31270
diff changeset
    71
    static void test6856415() throws IOException {
9d0388c6b336 8142968: Module System implementation
alanb
parents: 31270
diff changeset
    72
9d0388c6b336 8142968: Module System implementation
alanb
parents: 31270
diff changeset
    73
        final String mainClass = "Foo6856415";
9d0388c6b336 8142968: Module System implementation
alanb
parents: 31270
diff changeset
    74
9d0388c6b336 8142968: Module System implementation
alanb
parents: 31270
diff changeset
    75
        List<String> scratch = new ArrayList<>();
9d0388c6b336 8142968: Module System implementation
alanb
parents: 31270
diff changeset
    76
        scratch.add("public class Foo6856415 {");
9d0388c6b336 8142968: Module System implementation
alanb
parents: 31270
diff changeset
    77
        scratch.add("public static void main(String... args) {");
9d0388c6b336 8142968: Module System implementation
alanb
parents: 31270
diff changeset
    78
        scratch.add("java.security.Provider p = new sun.security.pkcs11.SunPKCS11();");
9d0388c6b336 8142968: Module System implementation
alanb
parents: 31270
diff changeset
    79
        scratch.add("java.security.Security.insertProviderAt(p, 1);");
9d0388c6b336 8142968: Module System implementation
alanb
parents: 31270
diff changeset
    80
        scratch.add("}");
9d0388c6b336 8142968: Module System implementation
alanb
parents: 31270
diff changeset
    81
        scratch.add("}");
9d0388c6b336 8142968: Module System implementation
alanb
parents: 31270
diff changeset
    82
        createFile(new File(mainClass + ".java"), scratch);
9d0388c6b336 8142968: Module System implementation
alanb
parents: 31270
diff changeset
    83
41915
ffd2dc160173 8169231: Fix tests to add @compile --add-modules to workaround jtreg bug
mchung
parents: 40261
diff changeset
    84
        compile(mainClass + ".java",
43248
5e15de85a1a0 8172527: Rename jdk.crypto.token to jdk.crypto.cryptoki
ascarpino
parents: 42693
diff changeset
    85
                "--add-modules=jdk.crypto.cryptoki",
5e15de85a1a0 8172527: Rename jdk.crypto.token to jdk.crypto.cryptoki
ascarpino
parents: 42693
diff changeset
    86
                "--add-exports=jdk.crypto.cryptoki/sun.security.pkcs11=ALL-UNNAMED");
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents: 31270
diff changeset
    87
5982
de622fe4f7d8 6856415: Enabling java security manager will make programe thrown wrong exception ( main method not found )
ksrini
parents:
diff changeset
    88
        File testJar = new File("Foo.jar");
de622fe4f7d8 6856415: Enabling java security manager will make programe thrown wrong exception ( main method not found )
ksrini
parents:
diff changeset
    89
        testJar.delete();
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents: 31270
diff changeset
    90
        String jarArgs[] = {
9d0388c6b336 8142968: Module System implementation
alanb
parents: 31270
diff changeset
    91
            (debug) ? "cvfe" : "cfe",
9d0388c6b336 8142968: Module System implementation
alanb
parents: 31270
diff changeset
    92
            testJar.getAbsolutePath(),
9d0388c6b336 8142968: Module System implementation
alanb
parents: 31270
diff changeset
    93
            mainClass,
9d0388c6b336 8142968: Module System implementation
alanb
parents: 31270
diff changeset
    94
            mainClass + ".class"
9d0388c6b336 8142968: Module System implementation
alanb
parents: 31270
diff changeset
    95
        };
9d0388c6b336 8142968: Module System implementation
alanb
parents: 31270
diff changeset
    96
        createJar(jarArgs);
9d0388c6b336 8142968: Module System implementation
alanb
parents: 31270
diff changeset
    97
11687
f13cadbb0bb5 7127906: (launcher) convert the launcher regression tests to java
ksrini
parents: 9035
diff changeset
    98
        TestResult tr = doExec(javaCmd,
5982
de622fe4f7d8 6856415: Enabling java security manager will make programe thrown wrong exception ( main method not found )
ksrini
parents:
diff changeset
    99
                "-Djava.security.manager", "-jar", testJar.getName(), "foo.bak");
6522
1e468849b92c 6981001: (launcher) EnsureJREInstallation is not being called in order
ksrini
parents: 5982
diff changeset
   100
        if (!tr.contains("java.security.AccessControlException:" +
1e468849b92c 6981001: (launcher) EnsureJREInstallation is not being called in order
ksrini
parents: 5982
diff changeset
   101
                " access denied (\"java.lang.RuntimePermission\"" +
1e468849b92c 6981001: (launcher) EnsureJREInstallation is not being called in order
ksrini
parents: 5982
diff changeset
   102
                " \"accessClassInPackage.sun.security.pkcs11\")")) {
37540
e92d95400f31 8154470: defines.h confused about PROGNAME and JAVA_ARGS
martin
parents: 37359
diff changeset
   103
            System.out.println(tr);
6522
1e468849b92c 6981001: (launcher) EnsureJREInstallation is not being called in order
ksrini
parents: 5982
diff changeset
   104
        }
5982
de622fe4f7d8 6856415: Enabling java security manager will make programe thrown wrong exception ( main method not found )
ksrini
parents:
diff changeset
   105
    }
8783
2ea9207f2fad 7027288: (launcher) remove jkernel test from MiscTests
ksrini
parents: 6522
diff changeset
   106
37540
e92d95400f31 8154470: defines.h confused about PROGNAME and JAVA_ARGS
martin
parents: 37359
diff changeset
   107
    static void testJLDEnv() {
e92d95400f31 8154470: defines.h confused about PROGNAME and JAVA_ARGS
martin
parents: 37359
diff changeset
   108
        final Map<String, String> envToSet = new HashMap<>();
e92d95400f31 8154470: defines.h confused about PROGNAME and JAVA_ARGS
martin
parents: 37359
diff changeset
   109
        envToSet.put("_JAVA_LAUNCHER_DEBUG", "true");
e92d95400f31 8154470: defines.h confused about PROGNAME and JAVA_ARGS
martin
parents: 37359
diff changeset
   110
        for (String cmd : new String[] { javaCmd, javacCmd }) {
e92d95400f31 8154470: defines.h confused about PROGNAME and JAVA_ARGS
martin
parents: 37359
diff changeset
   111
            TestResult tr = doExec(envToSet, cmd, "-version");
e92d95400f31 8154470: defines.h confused about PROGNAME and JAVA_ARGS
martin
parents: 37359
diff changeset
   112
            tr.checkPositive();
e92d95400f31 8154470: defines.h confused about PROGNAME and JAVA_ARGS
martin
parents: 37359
diff changeset
   113
            String javargs = cmd.equals(javacCmd) ? "on" : "off";
e92d95400f31 8154470: defines.h confused about PROGNAME and JAVA_ARGS
martin
parents: 37359
diff changeset
   114
            String progname = cmd.equals(javacCmd) ? "javac" : "java";
e92d95400f31 8154470: defines.h confused about PROGNAME and JAVA_ARGS
martin
parents: 37359
diff changeset
   115
            if (!tr.isOK()
e92d95400f31 8154470: defines.h confused about PROGNAME and JAVA_ARGS
martin
parents: 37359
diff changeset
   116
                || !tr.matches("\\s*debug:on$")
e92d95400f31 8154470: defines.h confused about PROGNAME and JAVA_ARGS
martin
parents: 37359
diff changeset
   117
                || !tr.matches("\\s*javargs:" + javargs + "$")
e92d95400f31 8154470: defines.h confused about PROGNAME and JAVA_ARGS
martin
parents: 37359
diff changeset
   118
                || !tr.matches("\\s*program name:" + progname + "$")) {
e92d95400f31 8154470: defines.h confused about PROGNAME and JAVA_ARGS
martin
parents: 37359
diff changeset
   119
                System.out.println(tr);
e92d95400f31 8154470: defines.h confused about PROGNAME and JAVA_ARGS
martin
parents: 37359
diff changeset
   120
            }
37359
4a3768da1851 8154212: launcher SEGV when _JAVA_LAUNCHER_DEBUG is set
ksrini
parents: 36511
diff changeset
   121
        }
4a3768da1851 8154212: launcher SEGV when _JAVA_LAUNCHER_DEBUG is set
ksrini
parents: 36511
diff changeset
   122
    }
4a3768da1851 8154212: launcher SEGV when _JAVA_LAUNCHER_DEBUG is set
ksrini
parents: 36511
diff changeset
   123
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents: 31270
diff changeset
   124
    public static void main(String... args) throws IOException {
9d0388c6b336 8142968: Module System implementation
alanb
parents: 31270
diff changeset
   125
        testWithClassPathSetViaProperty();
5982
de622fe4f7d8 6856415: Enabling java security manager will make programe thrown wrong exception ( main method not found )
ksrini
parents:
diff changeset
   126
        test6856415();
37540
e92d95400f31 8154470: defines.h confused about PROGNAME and JAVA_ARGS
martin
parents: 37359
diff changeset
   127
        testJLDEnv();
11687
f13cadbb0bb5 7127906: (launcher) convert the launcher regression tests to java
ksrini
parents: 9035
diff changeset
   128
        if (testExitValue != 0) {
f13cadbb0bb5 7127906: (launcher) convert the launcher regression tests to java
ksrini
parents: 9035
diff changeset
   129
            throw new Error(testExitValue + " tests failed");
37359
4a3768da1851 8154212: launcher SEGV when _JAVA_LAUNCHER_DEBUG is set
ksrini
parents: 36511
diff changeset
   130
        }
5982
de622fe4f7d8 6856415: Enabling java security manager will make programe thrown wrong exception ( main method not found )
ksrini
parents:
diff changeset
   131
    }
de622fe4f7d8 6856415: Enabling java security manager will make programe thrown wrong exception ( main method not found )
ksrini
parents:
diff changeset
   132
}