jdk/test/tools/launcher/VerifyExceptions.java
changeset 6570 6fb864c9fe0b
parent 6569 eb3c76a898eb
parent 6563 7e0bcb97526a
child 6604 657f846b9848
equal deleted inserted replaced
6569:eb3c76a898eb 6570:6fb864c9fe0b
     1 /*
       
     2  * Copyright (c) 2010, 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 Checks to ensure that proper exceptions are thrown by java
       
    28  * @compile -XDignore.symbol.file VerifyExceptions.java TestHelper.java
       
    29  * @run main VerifyExceptions
       
    30  */
       
    31 
       
    32 
       
    33 import java.io.File;
       
    34 import java.io.FileNotFoundException;
       
    35 
       
    36 
       
    37 public class VerifyExceptions {
       
    38 
       
    39     static void test6856415() {
       
    40         // No pkcs library on win-x64, so we bail out.
       
    41         if (TestHelper.is64Bit && TestHelper.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             TestHelper.createJar(testJar, sb.toString());
       
    53         } catch (FileNotFoundException fnfe) {
       
    54             throw new RuntimeException(fnfe);
       
    55         }
       
    56         TestHelper.TestResult tr = TestHelper.doExec(TestHelper.javacCmd,
       
    57                 "-Djava.security.manager", "-jar", testJar.getName(), "foo.bak");
       
    58         tr.checkNegative();
       
    59         tr.contains("Exception in thread \"main\" java.security.AccessControlException: access denied (\"java.lang.RuntimePermission\" \"accessClassInPackage.sun.security.pkcs11\")\")");
       
    60     }
       
    61 
       
    62     public static void main(String... args) {
       
    63         test6856415();
       
    64     }
       
    65 }