|
32 | 32 | import java.util.Objects;
|
33 | 33 | import java.util.Optional;
|
34 | 34 | import java.util.function.BiConsumer;
|
| 35 | +import java.util.function.Supplier; |
35 | 36 | import java.util.regex.Matcher;
|
36 | 37 | import java.util.regex.Pattern;
|
37 | 38 | import java.util.stream.Collectors;
|
@@ -86,6 +87,18 @@ final public AdditionalLauncher addRawProperties(
|
86 | 87 | return this;
|
87 | 88 | }
|
88 | 89 |
|
| 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 | + |
89 | 102 | final public AdditionalLauncher setShortcuts(boolean menu, boolean shortcut) {
|
90 | 103 | withMenuShortcut = menu;
|
91 | 104 | withShortcut = shortcut;
|
@@ -281,9 +294,30 @@ private void verifyShortcuts(JPackageCommand cmd) throws IOException {
|
281 | 294 | }
|
282 | 295 | }
|
283 | 296 |
|
| 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 | + |
284 | 317 | protected void verify(JPackageCommand cmd) throws IOException {
|
285 | 318 | verifyIcon(cmd);
|
286 | 319 | verifyShortcuts(cmd);
|
| 320 | + verifyDescription(cmd); |
287 | 321 |
|
288 | 322 | Path launcherPath = cmd.appLauncherPath(name);
|
289 | 323 |
|
|
0 commit comments