test/hotspot/jtreg/runtime/cds/appcds/dynamicArchive/RelativePath.java
changeset 57567 b000362a89a0
parent 55524 b279ae9843b8
child 57705 7cf02b2c1455
equal deleted inserted replaced
57566:ad84ae073248 57567:b000362a89a0
       
     1 /*
       
     2  * Copyright (c) 2019, 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 /*
       
    26  * @test
       
    27  * @summary Test relative paths specified in the -cp.
       
    28  * @requires vm.cds
       
    29  * @library /test/lib /test/hotspot/jtreg/runtime/cds/appcds
       
    30  * @modules java.base/jdk.internal.misc
       
    31  *          java.management
       
    32  *          jdk.jartool/sun.tools.jar
       
    33  * @compile ../test-classes/Hello.java
       
    34  * @compile ../test-classes/HelloMore.java
       
    35  * @run driver RelativePath
       
    36  */
       
    37 
       
    38 import java.io.File;
       
    39 
       
    40 public class RelativePath extends DynamicArchiveTestBase {
       
    41 
       
    42     public static void main(String[] args) throws Exception {
       
    43         runTest(AppendClasspath::testDefaultBase);
       
    44     }
       
    45 
       
    46     static void testDefaultBase() throws Exception {
       
    47         String topArchiveName = getNewArchiveName("top");
       
    48         doTest(topArchiveName);
       
    49     }
       
    50 
       
    51     private static void doTest(String topArchiveName) throws Exception {
       
    52         String appJar = JarBuilder.getOrCreateHelloJar();
       
    53         String appJar2 = JarBuilder.build("AppendClasspath_HelloMore", "HelloMore");
       
    54 
       
    55         int idx = appJar.lastIndexOf(File.separator);
       
    56         String jarName = appJar.substring(idx + 1);
       
    57         String jarDir = appJar.substring(0, idx);
       
    58         // relative path starting with "."
       
    59         runWithRelativePath(null, topArchiveName, jarDir,
       
    60             "-Xlog:class+load",
       
    61             "-Xlog:cds+dynamic=debug,cds=debug",
       
    62             "-cp", "." + File.separator + "hello.jar" + File.pathSeparator + appJar2,
       
    63             "HelloMore")
       
    64             .assertNormalExit(output -> {
       
    65                     output.shouldContain("Hello source: shared objects file")
       
    66                           .shouldContain("Hello World ... More")
       
    67                           .shouldHaveExitValue(0);
       
    68                 });
       
    69 
       
    70         // relative path starting with ".."
       
    71         idx = jarDir.lastIndexOf(File.separator);
       
    72         String jarSubDir = jarDir.substring(idx + 1);
       
    73         runWithRelativePath(null, topArchiveName, jarDir,
       
    74             "-Xlog:class+load",
       
    75             "-Xlog:cds+dynamic=debug,cds=debug",
       
    76             "-cp",
       
    77             ".." + File.separator + jarSubDir + File.separator + "hello.jar" + File.pathSeparator + appJar2,
       
    78             "HelloMore")
       
    79             .assertNormalExit(output -> {
       
    80                     output.shouldContain("Hello source: shared objects file")
       
    81                           .shouldContain("Hello World ... More")
       
    82                           .shouldHaveExitValue(0);
       
    83                 });
       
    84 
       
    85     }
       
    86 }