test/jdk/tools/jpackage/windows/exe/InstallDirTest.java
author herrick
Thu, 08 Aug 2019 17:23:13 -0400
branchJDK-8200758-branch
changeset 57688 7ea8c623393c
parent 57446 5a5b85f00a63
child 57909 c7de06ed4b54
permissions -rw-r--r--
8229252: Add descriptions to Windows jtreg tests Reviewed-by: herrick, almatvee Submitted-by: asemenyuk
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
57283
0b0be19f79e4 8215019: Allow --install-dir on windows
herrick
parents:
diff changeset
     1
/*
0b0be19f79e4 8215019: Allow --install-dir on windows
herrick
parents:
diff changeset
     2
 * Copyright (c) 2019, Oracle and/or its affiliates. All rights reserved.
0b0be19f79e4 8215019: Allow --install-dir on windows
herrick
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
0b0be19f79e4 8215019: Allow --install-dir on windows
herrick
parents:
diff changeset
     4
 *
0b0be19f79e4 8215019: Allow --install-dir on windows
herrick
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
0b0be19f79e4 8215019: Allow --install-dir on windows
herrick
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
0b0be19f79e4 8215019: Allow --install-dir on windows
herrick
parents:
diff changeset
     7
 * published by the Free Software Foundation.
0b0be19f79e4 8215019: Allow --install-dir on windows
herrick
parents:
diff changeset
     8
 *
0b0be19f79e4 8215019: Allow --install-dir on windows
herrick
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
0b0be19f79e4 8215019: Allow --install-dir on windows
herrick
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
0b0be19f79e4 8215019: Allow --install-dir on windows
herrick
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
0b0be19f79e4 8215019: Allow --install-dir on windows
herrick
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
0b0be19f79e4 8215019: Allow --install-dir on windows
herrick
parents:
diff changeset
    13
 * accompanied this code).
0b0be19f79e4 8215019: Allow --install-dir on windows
herrick
parents:
diff changeset
    14
 *
0b0be19f79e4 8215019: Allow --install-dir on windows
herrick
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
0b0be19f79e4 8215019: Allow --install-dir on windows
herrick
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
0b0be19f79e4 8215019: Allow --install-dir on windows
herrick
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
0b0be19f79e4 8215019: Allow --install-dir on windows
herrick
parents:
diff changeset
    18
 *
0b0be19f79e4 8215019: Allow --install-dir on windows
herrick
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
0b0be19f79e4 8215019: Allow --install-dir on windows
herrick
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
0b0be19f79e4 8215019: Allow --install-dir on windows
herrick
parents:
diff changeset
    21
 * questions.
0b0be19f79e4 8215019: Allow --install-dir on windows
herrick
parents:
diff changeset
    22
 */
0b0be19f79e4 8215019: Allow --install-dir on windows
herrick
parents:
diff changeset
    23
0b0be19f79e4 8215019: Allow --install-dir on windows
herrick
parents:
diff changeset
    24
/*
57688
7ea8c623393c 8229252: Add descriptions to Windows jtreg tests
herrick
parents: 57446
diff changeset
    25
 * Test --install-dir parameter.
7ea8c623393c 8229252: Add descriptions to Windows jtreg tests
herrick
parents: 57446
diff changeset
    26
 * Output of the test should be InstallDirTest-1.0.exe installer.
7ea8c623393c 8229252: Add descriptions to Windows jtreg tests
herrick
parents: 57446
diff changeset
    27
 * The output installer should provide the same functionality as the default 
7ea8c623393c 8229252: Add descriptions to Windows jtreg tests
herrick
parents: 57446
diff changeset
    28
 * installer (see description of the default installer in Test.java) but 
7ea8c623393c 8229252: Add descriptions to Windows jtreg tests
herrick
parents: 57446
diff changeset
    29
 * install test app in %ProgramFiles%\TestVendor\InstallDirTest instead of 
7ea8c623393c 8229252: Add descriptions to Windows jtreg tests
herrick
parents: 57446
diff changeset
    30
 * %ProgramFiles%\InstallDirTest directory.
7ea8c623393c 8229252: Add descriptions to Windows jtreg tests
herrick
parents: 57446
diff changeset
    31
 */
7ea8c623393c 8229252: Add descriptions to Windows jtreg tests
herrick
parents: 57446
diff changeset
    32
7ea8c623393c 8229252: Add descriptions to Windows jtreg tests
herrick
parents: 57446
diff changeset
    33
/*
57283
0b0be19f79e4 8215019: Allow --install-dir on windows
herrick
parents:
diff changeset
    34
 * @test
0b0be19f79e4 8215019: Allow --install-dir on windows
herrick
parents:
diff changeset
    35
 * @summary jpackage create installer install dir test
57446
5a5b85f00a63 8226891: rename and re-layout jpackage tests.
herrick
parents: 57438
diff changeset
    36
 * @library ../../helpers
57283
0b0be19f79e4 8215019: Allow --install-dir on windows
herrick
parents:
diff changeset
    37
 * @library ../base
0b0be19f79e4 8215019: Allow --install-dir on windows
herrick
parents:
diff changeset
    38
 * @build JPackageHelper
0b0be19f79e4 8215019: Allow --install-dir on windows
herrick
parents:
diff changeset
    39
 * @build JPackagePath
0b0be19f79e4 8215019: Allow --install-dir on windows
herrick
parents:
diff changeset
    40
 * @build JPackageInstallerHelper
57446
5a5b85f00a63 8226891: rename and re-layout jpackage tests.
herrick
parents: 57438
diff changeset
    41
 * @build InstallDirBase
57283
0b0be19f79e4 8215019: Allow --install-dir on windows
herrick
parents:
diff changeset
    42
 * @requires (os.family == "windows")
0b0be19f79e4 8215019: Allow --install-dir on windows
herrick
parents:
diff changeset
    43
 * @modules jdk.jpackage
57438
4a31db8d42bd 8226599: use code coverage results to remove dead code
herrick
parents: 57283
diff changeset
    44
 * @modules jdk.jpackage/jdk.jpackage.internal
57446
5a5b85f00a63 8226891: rename and re-layout jpackage tests.
herrick
parents: 57438
diff changeset
    45
 * @run main/othervm -Xmx512m InstallDirTest
57283
0b0be19f79e4 8215019: Allow --install-dir on windows
herrick
parents:
diff changeset
    46
 */
57446
5a5b85f00a63 8226891: rename and re-layout jpackage tests.
herrick
parents: 57438
diff changeset
    47
public class InstallDirTest {
5a5b85f00a63 8226891: rename and re-layout jpackage tests.
herrick
parents: 57438
diff changeset
    48
    private static final String TEST_NAME = "InstallDirTest";
57283
0b0be19f79e4 8215019: Allow --install-dir on windows
herrick
parents:
diff changeset
    49
    private static final String EXT = "exe";
0b0be19f79e4 8215019: Allow --install-dir on windows
herrick
parents:
diff changeset
    50
0b0be19f79e4 8215019: Allow --install-dir on windows
herrick
parents:
diff changeset
    51
    public static void main(String[] args) throws Exception {
57438
4a31db8d42bd 8226599: use code coverage results to remove dead code
herrick
parents: 57283
diff changeset
    52
        if (jdk.jpackage.internal.WinMsiBundler.isSupported()) {
57446
5a5b85f00a63 8226891: rename and re-layout jpackage tests.
herrick
parents: 57438
diff changeset
    53
            InstallDirBase.run(TEST_NAME, EXT);
57438
4a31db8d42bd 8226599: use code coverage results to remove dead code
herrick
parents: 57283
diff changeset
    54
        }
57283
0b0be19f79e4 8215019: Allow --install-dir on windows
herrick
parents:
diff changeset
    55
    }
0b0be19f79e4 8215019: Allow --install-dir on windows
herrick
parents:
diff changeset
    56
}