Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

8343876: Enhancements to jpackage test lib #21996

Closed
Closed
Changes from all commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
bf85eb3
- provide convenient way to verify jpackage output contains localized…
alexeysemenyukoracle Nov 4, 2024
86e832d
Added @ParameterSupplier annotation to allow link test method with pa…
alexeysemenyukoracle Nov 5, 2024
9553295
Fix "java.lang.ClassCastException: class java.lang.reflect.Method can…
alexeysemenyukoracle Nov 5, 2024
a6b8107
Add @Test.includeOn() and @Test.excludeOn() annotation parameters to …
alexeysemenyukoracle Nov 5, 2024
bf0abac
More granular control on what test cases executed in the given enviro…
alexeysemenyukoracle Nov 5, 2024
ed51e09
Merge branch 'master' into TKit.ParameterSupplier
alexeysemenyukoracle Nov 5, 2024
e8b8331
Support @command-file
alexeysemenyukoracle Nov 4, 2024
1dfd315
Can read command file without splitting lines into arguments at white…
alexeysemenyukoracle Nov 5, 2024
1b5acd9
Bugfix
alexeysemenyukoracle Nov 5, 2024
d09f8b5
LinuxHelper.verifyDesktopFile() will verify that the given desktop fi…
alexeysemenyukoracle Nov 5, 2024
01cef8f
Bugfix
alexeysemenyukoracle Nov 5, 2024
9d0ad98
Added CannedFormattedString to simplify using string resources in the…
alexeysemenyukoracle Nov 5, 2024
d7ef6b9
Bugfix for the case of empty arguments passed into foo(String ... args)
alexeysemenyukoracle Nov 5, 2024
ac8d913
Update copyright year
alexeysemenyukoracle Nov 5, 2024
0825485
Run `blessed-modifier-order.sh` script on changed files
alexeysemenyukoracle Nov 5, 2024
25a26db
Trailing whitespaces removed
alexeysemenyukoracle Nov 5, 2024
4d87507
Bugfix
alexeysemenyukoracle Nov 5, 2024
e754e51
Move code handling annotations and other reflection-related work from…
alexeysemenyukoracle Nov 5, 2024
92eacaa
Add unit testing for the new annotations
alexeysemenyukoracle Nov 6, 2024
1591c58
Add unit tests for ifOS and ifNotOS annotation properties. Support ov…
alexeysemenyukoracle Nov 6, 2024
0b7101d
Test summary reworded
alexeysemenyukoracle Nov 6, 2024
01bffbd
- Minor cleanup.
alexeysemenyukoracle Nov 6, 2024
7bf7597
Merge branch 'master' into TKit.ParameterSupplier
alexeysemenyukoracle Nov 7, 2024
f939b19
- add test coverage to @Parameters.ifOS and @Parameters.ifNotOS.
alexeysemenyukoracle Nov 7, 2024
f222964
Merge branch 'master' into JDK-8343876
alexeysemenyukoracle Nov 9, 2024
b13e36d
Use Comparator
alexeysemenyukoracle Nov 9, 2024
2630249
Full test class name in test case description
alexeysemenyukoracle Nov 9, 2024
ea454ac
Add test case to validate static test case will be executed only once…
alexeysemenyukoracle Nov 9, 2024
767a8a7
Don't create intermediate set of expected test descs for very test cl…
alexeysemenyukoracle Nov 9, 2024
998d993
Don't run static test methods with test instances
alexeysemenyukoracle Nov 9, 2024
4c6d78e
Use "validate" instead of "verify" for the new API
alexeysemenyukoracle Nov 9, 2024
27f2447
Merge branch 'master' into JDK-8343876
alexeysemenyukoracle Nov 14, 2024
1c7e059
Minor cleanup
alexeysemenyukoracle Nov 14, 2024
66c1583
Fix finding in the review
alexeysemenyukoracle Nov 15, 2024
ba89798
Remove redundant "method.setAccessible(true);" calls
alexeysemenyukoracle Nov 15, 2024
2b746d4
Remove changes unrelated to the new annotations from the PR
alexeysemenyukoracle Nov 15, 2024
9c3a81f
Remove JDK-8344322-specific changes
alexeysemenyukoracle Nov 15, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2019, Oracle and/or its affiliates. All rights reserved.
* 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
@@ -27,6 +27,7 @@
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
import jdk.internal.util.OperatingSystem;

public class Annotations {

@@ -43,6 +44,14 @@ public class Annotations {
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.METHOD)
public @interface Test {

OperatingSystem[] ifOS() default {
OperatingSystem.LINUX,
OperatingSystem.WINDOWS,
OperatingSystem.MACOS
};

OperatingSystem[] ifNotOS() default {};
}

@Retention(RetentionPolicy.RUNTIME)
@@ -51,6 +60,14 @@ public class Annotations {
public @interface Parameter {

String[] value();

OperatingSystem[] ifOS() default {
OperatingSystem.LINUX,
OperatingSystem.WINDOWS,
OperatingSystem.MACOS
};

OperatingSystem[] ifNotOS() default {};
}

@Retention(RetentionPolicy.RUNTIME)
@@ -60,8 +77,39 @@ public class Annotations {
Parameter[] value();
}

@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.METHOD)
@Repeatable(ParameterSupplierGroup.class)
public @interface ParameterSupplier {

String value();

OperatingSystem[] ifOS() default {
OperatingSystem.LINUX,
OperatingSystem.WINDOWS,
OperatingSystem.MACOS
};

OperatingSystem[] ifNotOS() default {};
}

@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.METHOD)
public @interface ParameterSupplierGroup {

ParameterSupplier[] value();
}

@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.METHOD)
public @interface Parameters {

OperatingSystem[] ifOS() default {
OperatingSystem.LINUX,
OperatingSystem.WINDOWS,
OperatingSystem.MACOS
};

OperatingSystem[] ifNotOS() default {};
}
}
39 changes: 39 additions & 0 deletions test/jdk/tools/jpackage/helpers/jdk/jpackage/test/Comm.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
/*
* Copyright (c) 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.
*/
package jdk.jpackage.test;

import java.util.HashSet;
import java.util.Set;

record Comm<T>(Set<T> common, Set<T> unique1, Set<T> unique2) {

static <T> Comm<T> compare(Set<T> a, Set<T> b) {
Set<T> common = new HashSet<>(a);
common.retainAll(b);
Set<T> unique1 = new HashSet<>(a);
unique1.removeAll(common);
Set<T> unique2 = new HashSet<>(b);
unique2.removeAll(common);
return new Comm(common, unique1, unique2);
}
}
43 changes: 34 additions & 9 deletions test/jdk/tools/jpackage/helpers/jdk/jpackage/test/LinuxHelper.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2019, 2023, Oracle and/or its affiliates. All rights reserved.
* 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
@@ -40,6 +40,7 @@
import java.util.regex.Pattern;
import java.util.stream.Collectors;
import java.util.stream.Stream;
import jdk.jpackage.internal.ApplicationLayout;
import jdk.jpackage.internal.IOUtils;
import jdk.jpackage.test.Functional.ThrowingConsumer;
import jdk.jpackage.test.PackageTest.PackageHandlers;
@@ -399,6 +400,15 @@ static void addBundleDesktopIntegrationVerifier(PackageTest test,
private static void verifyDesktopFile(JPackageCommand cmd, Path desktopFile)
throws IOException {
TKit.trace(String.format("Check [%s] file BEGIN", desktopFile));

var launcherName = Stream.of(List.of(cmd.name()), cmd.addLauncherNames()).flatMap(List::stream).filter(name -> {
return getDesktopFile(cmd, name).equals(desktopFile);
}).findAny();
if (!cmd.hasArgument("--app-image")) {
TKit.assertTrue(launcherName.isPresent(),
"Check the desktop file corresponds to one of app launchers");
}

List<String> lines = Files.readAllLines(desktopFile);
TKit.assertEquals("[Desktop Entry]", lines.get(0), "Check file header");

@@ -428,7 +438,7 @@ private static void verifyDesktopFile(JPackageCommand cmd, Path desktopFile)
"Check value of [%s] key", key));
}

// Verify value of `Exec` property in .desktop files are escaped if required
// Verify the value of `Exec` key is escaped if required
String launcherPath = data.get("Exec");
if (Pattern.compile("\\s").matcher(launcherPath).find()) {
TKit.assertTrue(launcherPath.startsWith("\"")
@@ -437,10 +447,25 @@ private static void verifyDesktopFile(JPackageCommand cmd, Path desktopFile)
launcherPath = launcherPath.substring(1, launcherPath.length() - 1);
}

Stream.of(launcherPath, data.get("Icon"))
.map(Path::of)
.map(cmd::pathToUnpackedPackageFile)
.forEach(TKit::assertFileExists);
if (launcherName.isPresent()) {
TKit.assertEquals(launcherPath, cmd.pathToPackageFile(
cmd.appLauncherPath(launcherName.get())).toString(),
String.format(
"Check the value of [Exec] key references [%s] app launcher",
launcherName.get()));
}

for (var e : List.<Map.Entry<Map.Entry<String, Optional<String>>, Function<ApplicationLayout, Path>>>of(
Map.entry(Map.entry("Exec", Optional.of(launcherPath)), ApplicationLayout::launchersDirectory),
Map.entry(Map.entry("Icon", Optional.empty()), ApplicationLayout::destktopIntegrationDirectory))) {
var path = e.getKey().getValue().or(() -> Optional.of(data.get(
e.getKey().getKey()))).map(Path::of).get();
TKit.assertFileExists(cmd.pathToUnpackedPackageFile(path));
Path expectedDir = cmd.pathToPackageFile(e.getValue().apply(cmd.appLayout()));
TKit.assertTrue(path.getParent().equals(expectedDir), String.format(
"Check the value of [%s] key references a file in [%s] folder",
e.getKey().getKey(), expectedDir));
}

TKit.trace(String.format("Check [%s] file END", desktopFile));
}
@@ -725,10 +750,10 @@ private static Method initGetServiceUnitFileName() {

private static Map<PackageType, String> archs;

private final static Pattern XDG_CMD_ICON_SIZE_PATTERN = Pattern.compile("\\s--size\\s+(\\d+)\\b");
private static final Pattern XDG_CMD_ICON_SIZE_PATTERN = Pattern.compile("\\s--size\\s+(\\d+)\\b");

// Values grabbed from https://linux.die.net/man/1/xdg-icon-resource
private final static Set<Integer> XDG_CMD_VALID_ICON_SIZES = Set.of(16, 22, 32, 48, 64, 128);
private static final Set<Integer> XDG_CMD_VALID_ICON_SIZES = Set.of(16, 22, 32, 48, 64, 128);

private final static Method getServiceUnitFileName = initGetServiceUnitFileName();
private static final Method getServiceUnitFileName = initGetServiceUnitFileName();
}
42 changes: 36 additions & 6 deletions test/jdk/tools/jpackage/helpers/jdk/jpackage/test/Main.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2019, Oracle and/or its affiliates. All rights reserved.
* 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
@@ -23,11 +23,17 @@

package jdk.jpackage.test;

import java.nio.file.Files;
import java.nio.file.Path;
import java.util.ArrayDeque;
import java.util.ArrayList;
import java.util.Comparator;
import java.util.Deque;
import java.util.List;
import java.util.function.Function;
import java.util.function.Predicate;
import java.util.stream.Collectors;
import static java.util.stream.Collectors.toCollection;
import java.util.stream.Stream;
import static jdk.jpackage.test.TestBuilder.CMDLINE_ARG_PREFIX;


@@ -36,14 +42,39 @@ public static void main(String args[]) throws Throwable {
boolean listTests = false;
List<TestInstance> tests = new ArrayList<>();
try (TestBuilder testBuilder = new TestBuilder(tests::add)) {
for (var arg : args) {
Deque<String> argsAsList = new ArrayDeque<>(List.of(args));
while (!argsAsList.isEmpty()) {
var arg = argsAsList.pop();
TestBuilder.trace(String.format("Parsing [%s]...", arg));

if ((CMDLINE_ARG_PREFIX + "list").equals(arg)) {
listTests = true;
continue;
}

if (arg.startsWith("@")) {
// Command file
// @=args will read arguments from the "args" file, one argument per line
// @args will read arguments from the "args" file, splitting lines into arguments at whitespaces
arg = arg.substring(1);
var oneArgPerLine = arg.startsWith("=");
if (oneArgPerLine) {
arg = arg.substring(1);
}

var newArgsStream = Files.readAllLines(Path.of(arg)).stream();
if (!oneArgPerLine) {
newArgsStream.map(line -> {
return Stream.of(line.split("\\s+"));
}).flatMap(x -> x);
}

var newArgs = newArgsStream.collect(toCollection(ArrayDeque::new));
newArgs.addAll(argsAsList);
argsAsList = newArgs;
continue;
}

boolean success = false;
try {
testBuilder.processCmdLineArg(arg);
@@ -62,12 +93,11 @@ public static void main(String args[]) throws Throwable {

// Order tests by their full names to have stable test sequence.
List<TestInstance> orderedTests = tests.stream()
.sorted((a, b) -> a.fullName().compareTo(b.fullName()))
.collect(Collectors.toList());
.sorted(Comparator.comparing(TestInstance::fullName)).toList();

if (listTests) {
// Just list the tests
orderedTests.stream().forEach(test -> System.out.println(String.format(
orderedTests.forEach(test -> System.out.println(String.format(
"%s; workDir=[%s]", test.fullName(), test.workDir())));
return;
}
Loading