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