/
githubmirror
/
panama-vector
Обзор
Документация
Войти
/
githubmirror
/
panama-vector
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/jdk/tools/jpackage/share/MultiLauncherTwoPhaseTest.java
85 строк
3 KB
Alexey Semenyuk
8371184: Improve jpackage test coverage for "--app-image" option
05 ноя 2025, 01:41
05 ноя 2025, 01:41
c8f5fd6
Код
Авторство
О чём код?
/* * Copyright (c) 2020, 2025, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. * * This code is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License * version 2 for more details (a copy is included in the LICENSE file that * accompanied this code). * * You should have received a copy of the GNU General Public License version * 2 along with this work; if not, write to the Free Software Foundation, * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. * * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA * or visit www.oracle.com if you need additional information or have any * questions. */ import java.nio.file.Path; import jdk.jpackage.test.AdditionalLauncher; import jdk.jpackage.test.Annotations.Test; import jdk.jpackage.test.JPackageCommand; import jdk.jpackage.test.PackageTest; import jdk.jpackage.test.PackageType; import jdk.jpackage.test.TKit; /** * Test multiple launchers in two phases. First test creates app image and then * creates installer from this image. Output of the test should be * MultiLauncherTwoPhaseTest*.* installer. The output installer should be basic * installer with 3 launcher MultiLauncherTwoPhaseTest, bar and foo. On Windows * we should have start menu integration under MultiLauncherTwoPhaseTest and * desktop shortcuts for all 3 launchers. Linux should also create shortcuts for * all launchers. */ /* * @test * @summary Multiple launchers in two phases * @library /test/jdk/tools/jpackage/helpers * @key jpackagePlatformPackage * @build jdk.jpackage.test.* * @compile -Xlint:all -Werror MultiLauncherTwoPhaseTest.java * @run main/othervm/timeout=360 -Xmx512m * jdk.jpackage.test.Main * --jpt-run=MultiLauncherTwoPhaseTest */ public class MultiLauncherTwoPhaseTest { @Test public static void test() { Path appimageOutput = TKit.createTempDirectory("appimage"); JPackageCommand appImageCmd = JPackageCommand.helloAppImage() .setArgumentValue("--dest", appimageOutput); AdditionalLauncher launcher1 = new AdditionalLauncher("bar"); launcher1.setDefaultArguments().applyTo(appImageCmd); AdditionalLauncher launcher2 = new AdditionalLauncher("foo"); launcher2.applyTo(appImageCmd); PackageTest packageTest = new PackageTest() .addRunOnceInitializer(appImageCmd::execute) .addBundleDesktopIntegrationVerifier(true) .usePredefinedAppImage(appImageCmd) .forTypes(PackageType.WINDOWS) .addInitializer(cmd -> { cmd.addArguments("--win-shortcut", "--win-menu", "--win-menu-group", "MultiLauncherTwoPhaseTest"); }) .forTypes(PackageType.LINUX) .addInitializer(cmd -> { cmd.addArguments("--linux-shortcut"); }); packageTest.run(); } }