1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363
|
/*
* Copyright (c) 2019, 2024, 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.io.IOException;
import java.nio.file.Files;
import java.nio.file.Path;
import java.util.List;
import java.util.ArrayList;
import java.util.function.Function;
import java.util.function.Predicate;
import java.util.regex.Pattern;
import java.util.stream.Stream;
import jdk.jpackage.test.TKit;
import jdk.jpackage.test.JPackageCommand;
import jdk.jpackage.test.JavaAppDesc;
import jdk.jpackage.test.PackageTest;
import jdk.jpackage.test.HelloApp;
import jdk.jpackage.test.Executor;
import jdk.jpackage.test.JavaTool;
import jdk.jpackage.test.Annotations.Test;
import jdk.jpackage.test.Annotations.Parameter;
/*
* @test
* @summary jpackage basic testing
* @library /test/jdk/tools/jpackage/helpers
* @build jdk.jpackage.test.*
* @compile BasicTest.java
* @run main/othervm/timeout=720 -Xmx512m jdk.jpackage.test.Main
* --jpt-run=BasicTest
*/
public final class BasicTest {
@Test
public void testNoArgs() {
List<String> output =
getJPackageToolProvider().executeAndGetOutput();
TKit.assertStringListEquals(List.of("Usage: jpackage <options>",
"Use jpackage --help (or -h) for a list of possible options"),
output, "Check jpackage output");
}
@Test
public void testJpackageProps() {
String appVersion = "3.0";
JPackageCommand cmd = JPackageCommand.helloAppImage(
JavaAppDesc.parse("Hello"))
// Disable default logic adding `--verbose` option
// to jpackage command line.
.ignoreDefaultVerbose(true)
.saveConsoleOutput(true)
.addArguments("--app-version", appVersion, "--arguments",
"jpackage.app-version jpackage.app-path")
.ignoreDefaultRuntime(true);
cmd.executeAndAssertImageCreated();
Path launcherPath = cmd.appLauncherPath();
List<String> output = HelloApp.executeLauncher(cmd).getOutput();
TKit.assertTextStream("jpackage.app-version=" + appVersion).apply(output.stream());
TKit.assertTextStream("jpackage.app-path=").apply(output.stream());
}
@Test
public void testVersion() {
List<String> output =
getJPackageToolProvider()
.addArgument("--version")
.executeAndGetOutput();
TKit.assertStringListEquals(List.of(System.getProperty("java.version")),
output, "Check jpackage output");
}
@Test
public void testHelp() {
List<String> hOutput = getJPackageToolProvider()
.addArgument("-h").executeAndGetOutput();
List<String> helpOutput = getJPackageToolProvider()
.addArgument("--help").executeAndGetOutput();
TKit.assertStringListEquals(hOutput, helpOutput,
"Check -h and --help parameters produce the same output");
final String windowsPrefix = "--win-";
final String linuxPrefix = "--linux-";
final String osxPrefix = "--mac-";
final String expectedPrefix;
final List<String> unexpectedPrefixes;
if (TKit.isWindows()) {
expectedPrefix = windowsPrefix;
unexpectedPrefixes = List.of(osxPrefix, linuxPrefix);
} else if (TKit.isLinux()) {
expectedPrefix = linuxPrefix;
unexpectedPrefixes = List.of(windowsPrefix, osxPrefix);
} else if (TKit.isOSX()) {
expectedPrefix = osxPrefix;
unexpectedPrefixes = List.of(linuxPrefix, windowsPrefix);
} else {
throw TKit.throwUnknownPlatformError();
}
Function<String, Predicate<String>> createPattern = (prefix) -> {
return Pattern.compile("^ " + prefix).asPredicate();
};
Function<List<String>, Long> countStrings = (prefixes) -> {
return hOutput.stream().filter(
prefixes.stream().map(createPattern).reduce(x -> false,
Predicate::or)).peek(TKit::trace).count();
};
TKit.trace("Check parameters in help text");
TKit.assertNotEquals(0, countStrings.apply(List.of(expectedPrefix)),
"Check help text contains platform specific parameters");
TKit.assertEquals(0, countStrings.apply(unexpectedPrefixes),
"Check help text doesn't contain unexpected parameters");
}
@Test
@SuppressWarnings("unchecked")
public void testVerbose() {
JPackageCommand cmd = JPackageCommand.helloAppImage()
// Disable default logic adding `--verbose` option
// to jpackage command line.
.ignoreDefaultVerbose(true)
.saveConsoleOutput(true)
.setFakeRuntime().executePrerequisiteActions();
List<String> expectedVerboseOutputStrings = new ArrayList<>();
expectedVerboseOutputStrings.add("Creating app package:");
if (TKit.isWindows()) {
expectedVerboseOutputStrings.add(
"Succeeded in building Windows Application Image package");
} else if (TKit.isLinux()) {
expectedVerboseOutputStrings.add(
"Succeeded in building Linux Application Image package");
} else if (TKit.isOSX()) {
expectedVerboseOutputStrings.add("Preparing Info.plist:");
expectedVerboseOutputStrings.add(
"Succeeded in building Mac Application Image package");
} else {
TKit.throwUnknownPlatformError();
}
TKit.deleteDirectoryContentsRecursive(cmd.outputDir());
List<String> nonVerboseOutput = cmd.execute().getOutput();
List<String>[] verboseOutput = (List<String>[])new List<?>[1];
// Directory clean up is not 100% reliable on Windows because of
// antivirus software that can lock .exe files. Setup
// different output directory instead of cleaning the default one for
// verbose jpackage run.
TKit.withTempDirectory("verbose-output", tempDir -> {
cmd.setArgumentValue("--dest", tempDir);
cmd.addArgument("--verbose");
verboseOutput[0] = cmd.execute().getOutput();
});
TKit.assertTrue(nonVerboseOutput.size() < verboseOutput[0].size(),
"Check verbose output is longer than regular");
expectedVerboseOutputStrings.forEach(str -> {
TKit.assertTextStream(str).label("regular output")
.predicate(String::contains).negate()
.apply(nonVerboseOutput.stream());
});
expectedVerboseOutputStrings.forEach(str -> {
TKit.assertTextStream(str).label("verbose output")
.apply(verboseOutput[0].stream());
});
}
@Test
public void testNoName() {
final String mainClassName = "Greetings";
JPackageCommand cmd = JPackageCommand.helloAppImage(mainClassName)
.removeArgumentWithValue("--name");
Path expectedImageDir = cmd.outputDir().resolve(mainClassName);
if (TKit.isOSX()) {
expectedImageDir = expectedImageDir.getParent().resolve(
expectedImageDir.getFileName().toString() + ".app");
}
cmd.executeAndAssertHelloAppImageCreated();
TKit.assertEquals(expectedImageDir.toAbsolutePath().normalize().toString(),
cmd.outputBundle().toAbsolutePath().normalize().toString(),
String.format(
"Check [%s] directory is filled with application image data",
expectedImageDir));
}
@Test
// Regular app
@Parameter("Hello")
// Modular app in .jar file
@Parameter("com.other/com.other.Hello")
// Modular app in .jmod file
@Parameter("hello.jmod:com.other/com.other.Hello")
// Modular app in exploded .jmod file
@Parameter("hello.ejmod:com.other/com.other.Hello")
public void testApp(String javaAppDesc) {
JavaAppDesc appDesc = JavaAppDesc.parse(javaAppDesc);
JPackageCommand cmd = JPackageCommand.helloAppImage(appDesc);
if (appDesc.jmodFileName() != null) {
// .jmod files are not supported at run-time. They should be
// bundled in Java run-time with jlink command, so disable
// use of external Java run-time if any configured.
cmd.ignoreDefaultRuntime(true);
}
cmd.executeAndAssertHelloAppImageCreated();
}
@Test
public void testWhitespaceInPaths() {
JPackageCommand.helloAppImage("a/b c.jar:Hello")
.setArgumentValue("--input", TKit.workDir().resolve("The quick brown fox"))
.setArgumentValue("--dest", TKit.workDir().resolve("jumps over the lazy dog"))
.executeAndAssertHelloAppImageCreated();
}
@Test
@Parameter("ALL-MODULE-PATH")
@Parameter("ALL-DEFAULT")
@Parameter("java.desktop")
@Parameter("java.desktop,jdk.jartool")
@Parameter({ "java.desktop", "jdk.jartool" })
public void testAddModules(String... addModulesArg) {
JPackageCommand cmd = JPackageCommand
.helloAppImage("goodbye.jar:com.other/com.other.Hello")
.ignoreDefaultRuntime(true); // because of --add-modules
Stream.of(addModulesArg).map(v -> Stream.of("--add-modules", v)).flatMap(
s -> s).forEachOrdered(cmd::addArgument);
cmd.executeAndAssertHelloAppImageCreated();
}
public static enum TestTempType {
TEMPDIR_EMPTY,
TEMPDIR_NOT_EMPTY,
TEMPDIR_NOT_EXIST,
}
/**
* Test --temp option. Doesn't make much sense for app image as temporary
* directory is used only on Windows. Test it in packaging mode.
*/
@Test
@Parameter("TEMPDIR_EMPTY")
@Parameter("TEMPDIR_NOT_EMPTY")
@Parameter("TEMPDIR_NOT_EXIST")
public void testTemp(TestTempType type) throws IOException {
final Path tempRoot = TKit.createTempDirectory("tmp");
var pkgTest = new PackageTest()
.configureHelloApp()
// Force save of package bundle in test work directory.
.addInitializer(JPackageCommand::setDefaultInputOutput)
.addInitializer(cmd -> {
Path tempDir = tempRoot.resolve(cmd.packageType().name());
switch (type) {
case TEMPDIR_EMPTY -> Files.createDirectories(tempDir);
case TEMPDIR_NOT_EXIST -> Files.createDirectories(tempDir.getParent());
case TEMPDIR_NOT_EMPTY -> {
Files.createDirectories(tempDir);
TKit.createTextFile(tempDir.resolve("foo.txt"), List.of(
"Hello Duke!"));
}
}
cmd.addArguments("--temp", tempDir);
}
);
if (TestTempType.TEMPDIR_NOT_EMPTY.equals(type)) {
pkgTest.setExpectedExitCode(1).addBundleVerifier(cmd -> {
// Check jpackage didn't use the supplied directory.
Path tempDir = Path.of(cmd.getArgumentValue("--temp"));
TKit.assertDirectoryContent(tempDir).match(Path.of("foo.txt"));
TKit.assertStringListEquals(List.of("Hello Duke!"),
Files.readAllLines(tempDir.resolve("foo.txt")),
"Check the contents of the file in the supplied temporary directory");
});
} else {
pkgTest.addBundleVerifier(cmd -> {
// Check jpackage used the supplied directory.
Path tempDir = Path.of(cmd.getArgumentValue("--temp"));
TKit.assertDirectoryNotEmpty(tempDir);
});
}
pkgTest.run(PackageTest.Action.CREATE);
}
@Test
public void testAtFile() throws IOException {
JPackageCommand cmd = JPackageCommand
.helloAppImage()
.setArgumentValue("--dest", TKit.createTempDirectory("output"));
// Init options file with the list of options configured
// for JPackageCommand instance.
final Path optionsFile = TKit.createTempFile(Path.of("options"));
Files.write(optionsFile,
List.of(String.join(" ", cmd.getAllArguments())));
// Build app jar file.
cmd.executePrerequisiteActions();
// Instead of running jpackage command through configured
// JPackageCommand instance, run vanilla jpackage command with @ file.
getJPackageToolProvider()
.addArgument(String.format("@%s", optionsFile))
.execute();
// Verify output of jpackage command.
cmd.assertImageCreated();
HelloApp.executeLauncherAndVerifyOutput(cmd);
}
@Test
@Parameter("1")
@Parameter("123")
public void testExitCode(int exitCode) {
JPackageCommand cmd = JPackageCommand
.helloAppImage()
.addArguments("--java-options", String.format(
"-Djpackage.test.exitCode=%d", exitCode));
cmd.executeAndAssertHelloAppImageCreated();
}
private static Executor getJPackageToolProvider() {
return getToolProvider(JavaTool.JPACKAGE);
}
private static Executor getToolProvider(JavaTool tool) {
return new Executor().dumpOutput().saveOutput().setToolProvider(tool);
}
}
|