Skip to content

Commit fb8bf81

Browse files
author
Alexander Matveev
committedFeb 25, 2022
8279995: jpackage --add-launcher option should allow overriding description
Reviewed-by: asemenyuk
1 parent 441e485 commit fb8bf81

File tree

7 files changed

+75
-10
lines changed

7 files changed

+75
-10
lines changed
 

‎src/jdk.jpackage/share/classes/jdk/jpackage/internal/AddLauncherArguments.java

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2018, 2021, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2018, 2022, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -54,6 +54,7 @@
5454
* The add-launcher properties file may have any of:
5555
*
5656
* appVersion
57+
* description
5758
* module
5859
* main-jar
5960
* main-class
@@ -111,6 +112,9 @@ private void initLauncherMap() {
111112
Arguments.putUnlessNull(bundleParams, CLIOptions.VERSION.getId(),
112113
getOptionValue(CLIOptions.VERSION));
113114

115+
Arguments.putUnlessNull(bundleParams, CLIOptions.DESCRIPTION.getId(),
116+
getOptionValue(CLIOptions.DESCRIPTION));
117+
114118
Arguments.putUnlessNull(bundleParams, CLIOptions.RELEASE.getId(),
115119
getOptionValue(CLIOptions.RELEASE));
116120

‎src/jdk.jpackage/share/classes/jdk/jpackage/internal/resources/HelpResources.properties

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright (c) 2017, 2021, Oracle and/or its affiliates. All rights reserved.
2+
# Copyright (c) 2017, 2022, Oracle and/or its affiliates. All rights reserved.
33
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
#
55
# This code is free software; you can redistribute it and/or modify it
@@ -138,7 +138,7 @@ Generic Options:\n\
138138
\ Name of launcher, and a path to a Properties file that contains\n\
139139
\ a list of key, value pairs\n\
140140
\ (absolute path or relative to the current directory)\n\
141-
\ The keys "module", "main-jar", "main-class",\n\
141+
\ The keys "module", "main-jar", "main-class", "description",\n\
142142
\ "arguments", "java-options", "app-version", "icon",\n\
143143
\ "win-console", "win-shortcut", "win-menu",\n\
144144
\ "linux-app-category", and "linux-shortcut" can be used.\n\

‎src/jdk.jpackage/share/classes/jdk/jpackage/internal/resources/HelpResources_ja.properties

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright (c) 2017, 2021, Oracle and/or its affiliates. All rights reserved.
2+
# Copyright (c) 2017, 2022, Oracle and/or its affiliates. All rights reserved.
33
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
#
55
# This code is free software; you can redistribute it and/or modify it
@@ -138,7 +138,7 @@ Generic Options:\n\
138138
\ Name of launcher, and a path to a Properties file that contains\n\
139139
\ a list of key, value pairs\n\
140140
\ (absolute path or relative to the current directory)\n\
141-
\ The keys "module", "main-jar", "main-class",\n\
141+
\ The keys "module", "main-jar", "main-class", "description",\n\
142142
\ "arguments", "java-options", "app-version", "icon",\n\
143143
\ "win-console", "win-shortcut", "win-menu",\n\
144144
\ "linux-app-category", and "linux-shortcut" can be used.\n\

‎src/jdk.jpackage/share/classes/jdk/jpackage/internal/resources/HelpResources_zh_CN.properties

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright (c) 2017, 2021, Oracle and/or its affiliates. All rights reserved.
2+
# Copyright (c) 2017, 2022, Oracle and/or its affiliates. All rights reserved.
33
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
#
55
# This code is free software; you can redistribute it and/or modify it
@@ -138,7 +138,7 @@ Generic Options:\n\
138138
\ Name of launcher, and a path to a Properties file that contains\n\
139139
\ a list of key, value pairs\n\
140140
\ (absolute path or relative to the current directory)\n\
141-
\ The keys "module", "main-jar", "main-class",\n\
141+
\ The keys "module", "main-jar", "main-class", "description",\n\
142142
\ "arguments", "java-options", "app-version", "icon",\n\
143143
\ "win-console", "win-shortcut", "win-menu",\n\
144144
\ "linux-app-category", and "linux-shortcut" can be used.\n\

‎test/jdk/tools/jpackage/helpers/jdk/jpackage/test/AdditionalLauncher.java

+34
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@
3232
import java.util.Objects;
3333
import java.util.Optional;
3434
import java.util.function.BiConsumer;
35+
import java.util.function.Supplier;
3536
import java.util.regex.Matcher;
3637
import java.util.regex.Pattern;
3738
import java.util.stream.Collectors;
@@ -86,6 +87,18 @@ final public AdditionalLauncher addRawProperties(
8687
return this;
8788
}
8889

90+
final public String getRawPropertyValue(
91+
String key, Supplier<String> getDefault) {
92+
return rawProperties.stream()
93+
.filter(item -> item.getKey().equals(key))
94+
.map(e -> e.getValue()).findAny().orElseGet(getDefault);
95+
}
96+
97+
private String getDesciption(JPackageCommand cmd) {
98+
return getRawPropertyValue("description", () -> cmd.getArgumentValue(
99+
"--description", unused -> cmd.name()));
100+
}
101+
89102
final public AdditionalLauncher setShortcuts(boolean menu, boolean shortcut) {
90103
withMenuShortcut = menu;
91104
withShortcut = shortcut;
@@ -281,9 +294,30 @@ private void verifyShortcuts(JPackageCommand cmd) throws IOException {
281294
}
282295
}
283296

297+
private void verifyDescription(JPackageCommand cmd) throws IOException {
298+
if (TKit.isWindows()) {
299+
String expectedDescription = getDesciption(cmd);
300+
Path launcherPath = cmd.appLauncherPath(name);
301+
String actualDescription =
302+
WindowsHelper.getExecutableDesciption(launcherPath);
303+
TKit.assertEquals(expectedDescription, actualDescription,
304+
String.format("Check file description of [%s]", launcherPath));
305+
} else if (TKit.isLinux() && !cmd.isImagePackageType()) {
306+
String expectedDescription = getDesciption(cmd);
307+
Path desktopFile = LinuxHelper.getDesktopFile(cmd, name);
308+
if (Files.exists(desktopFile)) {
309+
TKit.assertTextStream("Comment=" + expectedDescription)
310+
.label(String.format("[%s] file", desktopFile))
311+
.predicate(String::equals)
312+
.apply(Files.readAllLines(desktopFile).stream());
313+
}
314+
}
315+
}
316+
284317
protected void verify(JPackageCommand cmd) throws IOException {
285318
verifyIcon(cmd);
286319
verifyShortcuts(cmd);
320+
verifyDescription(cmd);
287321

288322
Path launcherPath = cmd.appLauncherPath(name);
289323

‎test/jdk/tools/jpackage/helpers/jdk/jpackage/test/WindowsHelper.java

+23
Original file line numberDiff line numberDiff line change
@@ -163,6 +163,29 @@ public static String getMsiProperty(JPackageCommand cmd, String propertyName) {
163163
.executeAndGetOutput().stream().collect(Collectors.joining("\n"));
164164
}
165165

166+
public static String getExecutableDesciption(Path pathToExeFile) {
167+
Executor exec = Executor.of("powershell",
168+
"-NoLogo",
169+
"-NoProfile",
170+
"-Command",
171+
"(Get-Item \\\""
172+
+ pathToExeFile.toAbsolutePath()
173+
+ "\\\").VersionInfo | select FileDescription");
174+
175+
var lineIt = exec.dumpOutput().executeAndGetOutput().iterator();
176+
while (lineIt.hasNext()) {
177+
var line = lineIt.next();
178+
if (line.trim().equals("FileDescription")) {
179+
// Skip "---------------" and move to the description value
180+
lineIt.next();
181+
return lineIt.next().trim();
182+
}
183+
}
184+
185+
throw new RuntimeException(String.format(
186+
"Failed to get file description of [%s]", pathToExeFile));
187+
}
188+
166189
private static boolean isUserLocalInstall(JPackageCommand cmd) {
167190
return cmd.hasArgument("--win-per-user-install");
168191
}

‎test/jdk/tools/jpackage/share/AddLauncherTest.java

+7-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2018, 2021, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2018, 2022, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -40,7 +40,7 @@
4040
* AddLauncherTest*.* installer. The output installer should provide the
4141
* same functionality as the default installer (see description of the default
4242
* installer in SimplePackageTest.java) plus install three extra application
43-
* launchers.
43+
* launchers with unique description ("LauncherName Description").
4444
*/
4545

4646
/*
@@ -80,7 +80,8 @@ public void test() {
8080
PackageTest packageTest = new PackageTest().configureHelloApp();
8181
packageTest.addInitializer(cmd -> {
8282
cmd.addArguments("--arguments", "Duke", "--arguments", "is",
83-
"--arguments", "the", "--arguments", "King");
83+
"--arguments", "the", "--arguments", "King",
84+
"--description", "AddLauncherTest Description");
8485
});
8586

8687
new FileAssociations(
@@ -89,14 +90,17 @@ public void test() {
8990

9091
new AdditionalLauncher("Baz2")
9192
.setDefaultArguments()
93+
.addRawProperties(Map.entry("description", "Baz2 Description"))
9294
.applyTo(packageTest);
9395

9496
new AdditionalLauncher("foo")
9597
.setDefaultArguments("yep!")
98+
.addRawProperties(Map.entry("description", "foo Description"))
9699
.applyTo(packageTest);
97100

98101
new AdditionalLauncher("Bar")
99102
.setDefaultArguments("one", "two", "three")
103+
.addRawProperties(Map.entry("description", "Bar Description"))
100104
.setIcon(GOLDEN_ICON)
101105
.applyTo(packageTest);
102106

0 commit comments

Comments
 (0)
Please sign in to comment.