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.util.ArrayList;
  25 
  26 /*
  27  * @test
  28  * @summary jpackage create image with additional launcher test
  29  * @library ../helpers
  30  * @build JPackageHelper
  31  * @build JPackagePath
  32  * @build AddLauncherBase
  33  * @modules jdk.incubator.jpackage
  34  * @run main/othervm -Xmx512m AddLauncherTest
  35  */
  36 public class AddLauncherTest {
  37     private static final String OUTPUT = "output";
  38     private static final String [] CMD = {
  39         "--type", "app-image",
  40         "--input", "input",
  41         "--dest", OUTPUT,
  42         "--name", "test",
  43         "--main-jar", "hello.jar",
  44         "--main-class", "Hello",
  45         "--add-launcher", "test2=sl.properties"};
  46 
  47     private final static String OPT1 = "-Dparam1=xxx";
  48     private final static String OPT2 = "-Dparam2=yyy";
  49     private final static String OPT3 = "-Dparam3=zzz";
  50     private final static String ARG1 = "original-argument";
  51 
  52     private static final String [] CMD1 = {
  53         "--type", "app-image",
  54         "--input", "input",
  55         "--dest", OUTPUT,
  56         "--name", "test",
  57         "--main-jar", "hello.jar",
  58         "--main-class", "Hello",
  59         "--java-options", OPT1,
  60         "--java-options", OPT2,
  61         "--java-options", OPT3,
  62         "--arguments", ARG1,
  63         "--add-launcher", "test4=sl.properties"};
  64 
  65 
  66     public static void main(String[] args) throws Exception {
  67         JPackageHelper.createHelloImageJar();
  68         AddLauncherBase.createSLProperties();
  69         AddLauncherBase.testCreateAppImage(CMD);
  70 
  71         ArrayList <String> argList = new ArrayList <String> ();
  72         argList.add(ARG1);
  73 
  74         ArrayList <String> optList = new ArrayList <String> ();
  75         optList.add(OPT1);
  76         optList.add(OPT2);
  77         optList.add(OPT3);
  78 
  79         JPackageHelper.deleteOutputFolder(OUTPUT);
  80         AddLauncherBase.testCreateAppImage(CMD1, argList, optList);
  81     }
  82 
  83 }