test/jdk/tools/jpackage/share/AppMainClassModuleTest.java
branchJDK-8200758-branch
changeset 58648 3bf53ffa9ae7
parent 58647 2c43b89b1679
child 58670 6fb9e12d5595
equal deleted inserted replaced
58647:2c43b89b1679 58648:3bf53ffa9ae7
     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 import java.nio.file.Files;
       
    26 
       
    27 /*
       
    28  * @test
       
    29  * @summary jpackage create image using main class from main module
       
    30  * @library ../helpers
       
    31  * @build JPackageHelper
       
    32  * @build JPackagePath
       
    33  * @modules jdk.jpackage
       
    34  * @run main/othervm -Xmx512m AppMainClassModuleTest
       
    35  */
       
    36 public class AppMainClassModuleTest {
       
    37 
       
    38     private static final String OUTPUT = "output";
       
    39     private static final String app = JPackagePath.getApp();
       
    40     private static final String appOutput = JPackagePath.getAppOutputFile();
       
    41 
       
    42     private static final String[] CMD = {
       
    43         "--package-type", "app-image",
       
    44         "--input", "input",
       
    45         "--dest", OUTPUT,
       
    46         "--name", "test",
       
    47         "--module", "com.hello",
       
    48         "--module-path", "input"
       
    49     };
       
    50 
       
    51     private static final String[] CMD_MAIN_CLASS = {
       
    52         "--package-type", "app-image",
       
    53         "--input", "input",
       
    54         "--dest", OUTPUT,
       
    55         "--name", "test",
       
    56         "--module", "com.hello/com.hello.Hello",
       
    57         "--module-path", "input"
       
    58     };
       
    59 
       
    60     private static void validate(String buildOutput) throws Exception {
       
    61 
       
    62         File outfile = new File(appOutput);
       
    63         int retVal = JPackageHelper.execute(outfile, app);
       
    64         if (retVal != 0) {
       
    65             throw new AssertionError(
       
    66                     "Test application exited with error: ");
       
    67         }
       
    68 
       
    69         if (!outfile.exists()) {
       
    70             throw new AssertionError(appOutput + " was not created");
       
    71         }
       
    72         String output = Files.readString(outfile.toPath());
       
    73         String[] result = output.split("\n");
       
    74 
       
    75         if (!result[0].trim().equals("jpackage test application")) {
       
    76             throw new AssertionError("Unexpected result[0]: " + result[0]);
       
    77         }
       
    78 
       
    79         if (!result[1].trim().equals("args.length: 0")) {
       
    80             throw new AssertionError("Unexpected result[1]: " + result[1]);
       
    81         }
       
    82     }
       
    83 
       
    84     private static void testMainClassFromModule() throws Exception {
       
    85         JPackageHelper.createHelloModule(
       
    86                 new JPackageHelper.ModuleArgs(null, "com.hello.Hello"));
       
    87 
       
    88         validate(JPackageHelper.executeCLI(true, CMD));
       
    89         JPackageHelper.deleteOutputFolder(OUTPUT);
       
    90         validate(JPackageHelper.executeToolProvider(true, CMD));
       
    91         JPackageHelper.deleteOutputFolder(OUTPUT);
       
    92     }
       
    93 
       
    94     private static void testMainClassFromCLI() throws Exception {
       
    95         JPackageHelper.createHelloModule(
       
    96                 new JPackageHelper.ModuleArgs(null, "com.hello.Hello2"));
       
    97 
       
    98         validate(JPackageHelper.executeCLI(true, CMD_MAIN_CLASS));
       
    99         JPackageHelper.deleteOutputFolder(OUTPUT);
       
   100         validate(JPackageHelper.executeToolProvider(true, CMD_MAIN_CLASS));
       
   101     }
       
   102 
       
   103     public static void main(String[] args) throws Exception {
       
   104         testMainClassFromModule();
       
   105         testMainClassFromCLI();
       
   106     }
       
   107 
       
   108 }