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 /*
  25  * @test
  26  * @summary jpackage create image verbose test
  27  * @library ../helpers
  28  * @build JPackageHelper
  29  * @build JPackagePath
  30  * @modules jdk.jpackage
  31  * @run main/othervm -Xmx512m VerboseTest
  32  */
  33 public class VerboseTest {
  34     private static final String OUTPUT = "output";
  35     private static final String[] CMD = {
  36         "--input", "input",
  37         "--output", OUTPUT,
  38         "--name", "test",
  39         "--main-jar", "hello.jar",
  40         "--main-class", "Hello",
  41     };
  42 
  43     private static final String[] CMD_VERBOSE = {
  44         "--input", "input",
  45         "--output", OUTPUT,
  46         "--name", "test",
  47         "--main-jar", "hello.jar",
  48         "--main-class", "Hello",
  49         "--verbose"};
  50 
  51     private static void validate(String result, String resultVerbose)
  52             throws Exception {
  53         String[] r = result.split("\n");
  54         String[] rv = resultVerbose.split("\n");
  55 
  56         if (r.length >= rv.length) {
  57             System.err.println("r.length: " + r.length);
  58             System.err.println(result);
  59             System.err.println("rv.length: " + rv.length);
  60             System.err.println(resultVerbose);
  61             throw new AssertionError(
  62                     "non-verbose output is less or equal to verbose output");
  63         }
  64     }
  65 
  66     private static void testCreateAppImage() throws Exception {
  67         String result = JPackageHelper.executeCLI(true, CMD);
  68         JPackageHelper.deleteOutputFolder(OUTPUT);
  69         String resultVerbose = JPackageHelper.executeCLI(true, CMD_VERBOSE);
  70         validate(result, resultVerbose);
  71     }
  72 
  73     private static void testCreateAppImageToolProvider() throws Exception {
  74         JPackageHelper.deleteOutputFolder(OUTPUT);
  75         String result = JPackageHelper.executeToolProvider(true, CMD);
  76         JPackageHelper.deleteOutputFolder(OUTPUT);
  77         String resultVerbose =
  78                 JPackageHelper.executeToolProvider(true, CMD_VERBOSE);
  79         validate(result, resultVerbose);
  80     }
  81 
  82     public static void main(String[] args) throws Exception {
  83         JPackageHelper.createHelloImageJar();
  84         testCreateAppImage();
  85         testCreateAppImageToolProvider();
  86     }
  87 
  88 }