Skip to content

Commit a3ca770

Browse files
author
Alexey Semenyuk
committedSep 15, 2021
8272815: jpackage --type rpm produces an error: Invalid or unsupported type: [null]
Reviewed-by: herrick, almatvee
1 parent 8132bfd commit a3ca770

File tree

2 files changed

+14
-16
lines changed

2 files changed

+14
-16
lines changed
 

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

+11-13
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@
3535
import java.util.HashMap;
3636
import java.util.List;
3737
import java.util.Map;
38+
import java.util.Optional;
3839
import java.util.Properties;
3940
import java.util.ResourceBundle;
4041
import java.util.jar.Attributes;
@@ -635,15 +636,13 @@ private jdk.jpackage.internal.Bundler getPlatformBundler() {
635636
for (jdk.jpackage.internal.Bundler bundler :
636637
Bundlers.createBundlersInstance().getBundlers(bundleType)) {
637638
if (type == null) {
638-
if (bundler.isDefault()
639-
&& bundler.supported(runtimeInstaller)) {
640-
return bundler;
641-
}
639+
if (bundler.isDefault()) {
640+
return bundler;
641+
}
642642
} else {
643-
if ((appImage || type.equalsIgnoreCase(bundler.getID()))
644-
&& bundler.supported(runtimeInstaller)) {
645-
return bundler;
646-
}
643+
if (appImage || type.equalsIgnoreCase(bundler.getID())) {
644+
return bundler;
645+
}
647646
}
648647
}
649648
return null;
@@ -652,8 +651,6 @@ private jdk.jpackage.internal.Bundler getPlatformBundler() {
652651
private void generateBundle(Map<String,? super Object> params)
653652
throws PackagerException {
654653

655-
boolean bundleCreated = false;
656-
657654
// the temp dir needs to be fetched from the params early,
658655
// to prevent each copy of the params (such as may be used for
659656
// additional launchers) from generating a separate temp dir when
@@ -665,9 +662,10 @@ private void generateBundle(Map<String,? super Object> params)
665662
// determine what bundler to run
666663
jdk.jpackage.internal.Bundler bundler = getPlatformBundler();
667664

668-
if (bundler == null) {
669-
throw new PackagerException("ERR_InvalidInstallerType",
670-
deployParams.getTargetFormat());
665+
if (bundler == null || !bundler.supported(runtimeInstaller)) {
666+
String type = Optional.ofNullable(bundler).map(Bundler::getID).orElseGet(
667+
() -> deployParams.getTargetFormat());
668+
throw new PackagerException("ERR_InvalidInstallerType", type);
671669
}
672670

673671
Map<String, ? super Object> localParams = new HashMap<>(params);

‎test/jdk/tools/jpackage/share/jdk/jpackage/tests/ErrorTest.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232

3333
/*
3434
* @test
35-
* @summary jpackage application version testing
35+
* @summary Test jpackage output for erroneous input
3636
* @library ../../../../helpers
3737
* @build jdk.jpackage.test.*
3838
* @modules jdk.jpackage/jdk.jpackage.internal
@@ -44,7 +44,7 @@
4444

4545
/*
4646
* @test
47-
* @summary jpackage application version testing
47+
* @summary Test jpackage output for erroneous input
4848
* @library ../../../../helpers
4949
* @build jdk.jpackage.test.*
5050
* @modules jdk.jpackage/jdk.jpackage.internal
@@ -96,7 +96,7 @@ public static Collection input() {
9696
{"Hello",
9797
new String[]{"--type", "invalid-type"},
9898
null,
99-
"Invalid or unsupported type:"},
99+
"Invalid or unsupported type: [invalid-type]"},
100100
// no --input
101101
{"Hello",
102102
null,

0 commit comments

Comments
 (0)
Please sign in to comment.