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 --temp-root
  30  * @library ../helpers
  31  * @build JPackageHelper
  32  * @build JPackagePath
  33  * @modules jdk.jpackage
  34  * @run main/othervm -Xmx512m JPackageCreateAppImageTempRootTest
  35  */
  36 public class JPackageCreateAppImageTempRootTest {
  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-app-image",
  44         "--input", "input",
  45         "--output", OUTPUT,
  46         "--name", "test",
  47         "--main-jar", "hello.jar",
  48         "--main-class", "Hello",
  49     };
  50 
  51     private static final String [] CMD_BUILD_ROOT = {
  52         "create-app-image",
  53         "--input", "input",
  54         "--output", OUTPUT,
  55         "--name", "test",
  56         "--main-jar", "hello.jar",
  57         "--main-class", "Hello",
  58         "--temp-root", "TBD"};
  59 
  60     private static void validate(boolean retain) throws Exception {
  61         File br = new File(buildRoot);
  62         if (retain) {
  63             if (!br.exists()) {
  64                 throw new AssertionError(br.getAbsolutePath() + " does not exist");
  65             }
  66         } else {
  67             if (br.exists()) {
  68                 throw new AssertionError(br.getAbsolutePath() + " exist");
  69             }
  70         }
  71     }
  72 
  73     private static void init(boolean toolProvider) {
  74         if (toolProvider) {
  75             buildRoot = BUILD_ROOT_TB;
  76         } else {
  77             buildRoot = BUILD_ROOT;
  78         }
  79 
  80         CMD_BUILD_ROOT[CMD_BUILD_ROOT.length - 1] = buildRoot;
  81     }
  82 
  83     private static void testTempRoot() throws Exception {
  84         init(false);
  85         JPackageHelper.executeCLI(true, CMD);
  86         validate(false);
  87         JPackageHelper.deleteOutputFolder(OUTPUT);
  88         JPackageHelper.executeCLI(true, CMD_BUILD_ROOT);
  89         validate(true);
  90     }
  91 
  92     private static void testTempRootToolProvider() throws Exception {
  93         init(true);
  94         JPackageHelper.deleteOutputFolder(OUTPUT);
  95         JPackageHelper.executeToolProvider(true, CMD);
  96         validate(false);
  97         JPackageHelper.deleteOutputFolder(OUTPUT);
  98         JPackageHelper.executeToolProvider(true, CMD_BUILD_ROOT);
  99         validate(true);
 100     }
 101 
 102     public static void main(String[] args) throws Exception {
 103         JPackageHelper.createHelloImageJar();
 104         testTempRoot();
 105         testTempRootToolProvider();
 106     }
 107 
 108 }