|
14 | 14 | import static org.junit.jupiter.api.Assertions.assertEquals;
|
15 | 15 | import static org.junit.jupiter.api.Assertions.assertThrows;
|
16 | 16 |
|
| 17 | +import java.net.URL; |
| 18 | +import java.net.URLClassLoader; |
| 19 | +import java.nio.file.Files; |
| 20 | +import java.nio.file.Path; |
| 21 | +import java.util.List; |
17 | 22 | import java.util.Map;
|
| 23 | +import java.util.Properties; |
| 24 | +import java.util.logging.Level; |
| 25 | +import java.util.logging.LogRecord; |
18 | 26 |
|
19 | 27 | import org.junit.jupiter.api.AfterEach;
|
20 | 28 | import org.junit.jupiter.api.BeforeEach;
|
21 | 29 | import org.junit.jupiter.api.Test;
|
22 | 30 | import org.junit.jupiter.api.extension.ExtendWith;
|
23 | 31 | import org.junit.jupiter.api.extension.ExtensionContext;
|
24 | 32 | import org.junit.jupiter.api.extension.TestInstancePostProcessor;
|
| 33 | +import org.junit.jupiter.api.fixtures.TrackLogRecords; |
| 34 | +import org.junit.jupiter.api.io.TempDir; |
25 | 35 | import org.junit.platform.commons.JUnitException;
|
26 | 36 | import org.junit.platform.commons.PreconditionViolationException;
|
| 37 | +import org.junit.platform.commons.logging.LogRecordListener; |
27 | 38 | import org.junit.platform.engine.ConfigurationParameters;
|
28 | 39 | import org.junit.platform.engine.discovery.DiscoverySelectors;
|
29 | 40 | import org.junit.platform.launcher.listeners.SummaryGeneratingListener;
|
@@ -190,6 +201,40 @@ void ignoresSystemPropertyAndConfigFileWhenImplicitLookupsAreDisabled() {
|
190 | 201 | assertThat(configParams.get(KEY)).isEmpty();
|
191 | 202 | }
|
192 | 203 |
|
| 204 | + @Test |
| 205 | + void warnsOnMultiplePropertyResources(@TempDir Path tempDir, @TrackLogRecords LogRecordListener logRecordListener) |
| 206 | + throws Exception { |
| 207 | + Properties properties = new Properties(); |
| 208 | + properties.setProperty(KEY, "from second config file"); |
| 209 | + try (var out = Files.newOutputStream(tempDir.resolve(CONFIG_FILE_NAME))) { |
| 210 | + properties.store(out, ""); |
| 211 | + } |
| 212 | + ClassLoader originalClassLoader = Thread.currentThread().getContextClassLoader(); |
| 213 | + try (var customClassLoader = new URLClassLoader(new URL[] { tempDir.toUri().toURL() }, originalClassLoader)) { |
| 214 | + Thread.currentThread().setContextClassLoader(customClassLoader); |
| 215 | + ConfigurationParameters configParams = fromMapAndFile(Map.of(), CONFIG_FILE_NAME); |
| 216 | + |
| 217 | + assertThat(configParams.get(KEY)).contains(CONFIG_FILE); |
| 218 | + |
| 219 | + List<String> loggedWarnings = logRecordListener.stream(Level.WARNING) // |
| 220 | + .map(LogRecord::getMessage) // |
| 221 | + .toList(); |
| 222 | + assertThat(loggedWarnings) // |
| 223 | + .hasSize(1); |
| 224 | + assertThat(loggedWarnings.getFirst()) // |
| 225 | + .contains("Discovered 2 '" + CONFIG_FILE_NAME |
| 226 | + + "' configuration files on the classpath (see below); only the first (*) will be used.") // |
| 227 | + .contains("- " |
| 228 | + + Path.of( |
| 229 | + "build/resources/test/test-junit-platform.properties").toAbsolutePath().toUri().toURL() |
| 230 | + + " (*)") // |
| 231 | + .contains("- " + tempDir.resolve(CONFIG_FILE_NAME).toUri().toURL()); |
| 232 | + } |
| 233 | + finally { |
| 234 | + Thread.currentThread().setContextClassLoader(originalClassLoader); |
| 235 | + } |
| 236 | + } |
| 237 | + |
193 | 238 | private static LauncherConfigurationParameters fromMap(Map<String, String> map) {
|
194 | 239 | return LauncherConfigurationParameters.builder().explicitParameters(map).build();
|
195 | 240 | }
|
|
0 commit comments