Skip to content

Commit e304a8a

Browse files
author
Alexey Semenyuk
committedMay 31, 2024
8333307: Don't suppress jpackage logging in tests when it is detecting packaging tools in the system
Reviewed-by: almatvee
1 parent 3634a91 commit e304a8a

File tree

1 file changed

+29
-2
lines changed

1 file changed

+29
-2
lines changed
 

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

+29-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2019, 2021, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2019, 2024, 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
@@ -22,13 +22,16 @@
2222
*/
2323
package jdk.jpackage.test;
2424

25+
import java.io.PrintWriter;
2526
import java.lang.reflect.InvocationTargetException;
2627
import java.lang.reflect.Method;
2728
import java.util.Collections;
2829
import java.util.Optional;
2930
import java.util.Set;
31+
import java.util.concurrent.atomic.AtomicBoolean;
3032
import java.util.stream.Collectors;
3133
import java.util.stream.Stream;
34+
import jdk.jpackage.internal.Log;
3235

3336
/**
3437
* jpackage type traits.
@@ -91,7 +94,7 @@ static PackageType fromSuffix(String packageFilename) {
9194
return null;
9295
}
9396

94-
private static boolean isBundlerSupported(String bundlerClass) {
97+
private static boolean isBundlerSupportedImpl(String bundlerClass) {
9598
try {
9699
Class clazz = Class.forName(bundlerClass);
97100
Method supported = clazz.getMethod("supported", boolean.class);
@@ -105,6 +108,30 @@ private static boolean isBundlerSupported(String bundlerClass) {
105108
return false;
106109
}
107110

111+
private static boolean isBundlerSupported(String bundlerClass) {
112+
AtomicBoolean reply = new AtomicBoolean();
113+
try {
114+
// Capture jpackage's activity on configuring bundlers.
115+
// Log configuration is thread-local.
116+
// Call Log.setPrintWriter and Log.setVerbose in a separate
117+
// thread to keep the main log configuration intact.
118+
var thread = new Thread(() -> {
119+
Log.setPrintWriter(new PrintWriter(System.out), new PrintWriter(System.err));
120+
Log.setVerbose();
121+
try {
122+
reply.set(isBundlerSupportedImpl(bundlerClass));
123+
} finally {
124+
Log.flush();
125+
}
126+
});
127+
thread.run();
128+
thread.join();
129+
} catch (InterruptedException ex) {
130+
Functional.rethrowUnchecked(ex);
131+
}
132+
return reply.get();
133+
}
134+
108135
private final String name;
109136
private final String suffix;
110137
private final boolean supported;

0 commit comments

Comments
 (0)
Please sign in to comment.