test/jdk/tools/jpackage/createimage/JPackageCreateImageBuildRootTest.java
branchJDK-8200758-branch
changeset 57256 d7c27451f759
parent 57255 f686bda3b831
child 57257 69ad9df313e4
equal deleted inserted replaced
57255:f686bda3b831 57256:d7c27451f759
     1 /*
       
     2  * Copyright (c) 2018, 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 import java.io.File;
       
    25 
       
    26  /*
       
    27  * @test
       
    28  * @requires (os.family == "windows")
       
    29  * @summary jpackage create image to test --build-root
       
    30  * @library ../helpers
       
    31  * @build JPackageHelper
       
    32  * @build JPackagePath
       
    33  * @modules jdk.jpackage
       
    34  * @run main/othervm -Xmx512m JPackageCreateImageBuildRootTest
       
    35  */
       
    36 public class JPackageCreateImageBuildRootTest {
       
    37     private static final String OUTPUT = "output";
       
    38     private static String buildRoot = null;
       
    39     private static final String BUILD_ROOT = "buildRoot";
       
    40     private static final String BUILD_ROOT_TB = "buildRootToolProvider";
       
    41 
       
    42     private static final String [] CMD = {
       
    43         "create-image",
       
    44         "--input", "input",
       
    45         "--output", OUTPUT,
       
    46         "--name", "test",
       
    47         "--main-jar", "hello.jar",
       
    48         "--main-class", "Hello",
       
    49         "--files", "hello.jar" };
       
    50 
       
    51     private static final String [] CMD_BUILD_ROOT = {
       
    52         "create-image",
       
    53         "--input", "input",
       
    54         "--output", OUTPUT,
       
    55         "--name", "test",
       
    56         "--main-jar", "hello.jar",
       
    57         "--main-class", "Hello",
       
    58         "--files", "hello.jar",
       
    59         "--build-root", "TBD"};
       
    60 
       
    61     private static void validate(boolean retain) throws Exception {
       
    62         File br = new File(buildRoot);
       
    63         if (retain) {
       
    64             if (!br.exists()) {
       
    65                 throw new AssertionError(br.getAbsolutePath() + " does not exist");
       
    66             }
       
    67         } else {
       
    68             if (br.exists()) {
       
    69                 throw new AssertionError(br.getAbsolutePath() + " exist");
       
    70             }
       
    71         }
       
    72     }
       
    73 
       
    74     private static void init(boolean toolProvider) {
       
    75         if (toolProvider) {
       
    76             buildRoot = BUILD_ROOT_TB;
       
    77         } else {
       
    78             buildRoot = BUILD_ROOT;
       
    79         }
       
    80 
       
    81         CMD_BUILD_ROOT[CMD_BUILD_ROOT.length - 1] = buildRoot;
       
    82     }
       
    83 
       
    84     private static void testBuildRoot() throws Exception {
       
    85         init(false);
       
    86         JPackageHelper.executeCLI(true, CMD);
       
    87         validate(false);
       
    88         JPackageHelper.deleteOutputFolder(OUTPUT);
       
    89         JPackageHelper.executeCLI(true, CMD_BUILD_ROOT);
       
    90         validate(true);
       
    91     }
       
    92 
       
    93     private static void testBuildRootToolProvider() throws Exception {
       
    94         init(true);
       
    95         JPackageHelper.deleteOutputFolder(OUTPUT);
       
    96         JPackageHelper.executeToolProvider(true, CMD);
       
    97         validate(false);
       
    98         JPackageHelper.deleteOutputFolder(OUTPUT);
       
    99         JPackageHelper.executeToolProvider(true, CMD_BUILD_ROOT);
       
   100         validate(true);
       
   101     }
       
   102 
       
   103     public static void main(String[] args) throws Exception {
       
   104         JPackageHelper.createHelloImageJar();
       
   105         testBuildRoot();
       
   106         testBuildRootToolProvider();
       
   107     }
       
   108 
       
   109 }