Skip to content

Commit 29f015c

Browse files
author
Andy Herrick
committedMay 7, 2020
8236518: There is no Native Packages WinUpgradeUUIDTest-2.0.exe after creating Native packages on win
Reviewed-by: asemenyuk, almatvee
1 parent 1a16a4b commit 29f015c

File tree

3 files changed

+18
-8
lines changed

3 files changed

+18
-8
lines changed
 

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -603,7 +603,7 @@ public Executor.Result execute(int expectedExitCode) {
603603

604604
if (isImagePackageType()) {
605605
TKit.deleteDirectoryContentsRecursive(outputDir());
606-
} else if (ThrowingSupplier.toSupplier(() -> Files.deleteIfExists(
606+
} else if (ThrowingSupplier.toSupplier(() -> TKit.deleteIfExists(
607607
outputBundle())).get()) {
608608
TKit.trace(
609609
String.format("Deleted [%s] file before running jpackage",

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

+9
Original file line numberDiff line numberDiff line change
@@ -399,6 +399,15 @@ public void accept(Path root) {
399399
private boolean contentsOnly;
400400
}
401401

402+
public static boolean deleteIfExists(Path path) throws IOException {
403+
if (isWindows()) {
404+
if (path.toFile().exists()) {
405+
Files.setAttribute(path, "dos:readonly", false);
406+
}
407+
}
408+
return Files.deleteIfExists(path);
409+
}
410+
402411
/**
403412
* Deletes contents of the given directory recursively. Shortcut for
404413
* <code>deleteDirectoryContentsRecursive(path, null)</code>

‎test/jdk/tools/jpackage/windows/WinUpgradeUUIDTest.java

+8-7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2019, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2019, 2020, 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
@@ -65,7 +65,7 @@
6565
* @requires (jpackage.test.SQETest == null)
6666
* @build jdk.jpackage.test.*
6767
* @requires (os.family == "windows")
68-
* @modules jdk.jpackage/jdk.jpackage.internal
68+
* @modules jdk.incubator.jpackage/jdk.incubator.jpackage.internal
6969
* @compile WinUpgradeUUIDTest.java
7070
* @run main/othervm/timeout=540 -Xmx512m jdk.jpackage.test.Main
7171
* --jpt-run=WinUpgradeUUIDTest
@@ -79,10 +79,6 @@ public static void test() {
7979
final UUID upgradeCode = UUID.fromString(
8080
"F0B18E75-52AD-41A2-BC86-6BE4FCD50BEB");
8181
return new PackageTest()
82-
.forTypes(PackageType.WINDOWS)
83-
.configureHelloApp()
84-
.addInitializer(cmd -> cmd.addArguments("--win-upgrade-uuid",
85-
upgradeCode.toString()))
8682
.forTypes(PackageType.WIN_MSI)
8783
.addBundlePropertyVerifier("UpgradeCode", value -> {
8884
if (value.startsWith("{")) {
@@ -92,7 +88,12 @@ public static void test() {
9288
value = value.substring(0, value.length() - 1);
9389
}
9490
return UUID.fromString(value).equals(upgradeCode);
95-
}, "is a match with");
91+
}, "is a match with")
92+
.forTypes(PackageType.WINDOWS)
93+
.configureHelloApp()
94+
.addInitializer(cmd -> cmd.addArguments("--win-upgrade-uuid",
95+
upgradeCode.toString())) ;
96+
9697
};
9798

9899
// Replace real uninstall command for the first package with nop action.

0 commit comments

Comments
 (0)
Please sign in to comment.