Skip to content

Commit c556735

Browse files
committed
Use same expected files for all JDK versions
(cherry picked from commit e802db4)
1 parent 808493a commit c556735

File tree

3 files changed

+12
-43
lines changed

3 files changed

+12
-43
lines changed

platform-tooling-support-tests/projects/standalone/expected-err-java8.txt

-21
This file was deleted.

platform-tooling-support-tests/projects/standalone/expected-out-java8.txt

-18
This file was deleted.

platform-tooling-support-tests/src/test/java/platform/tooling/support/tests/StandaloneTests.java

+12-4
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
import java.nio.file.Files;
2222
import java.nio.file.Path;
2323
import java.util.ArrayList;
24+
import java.util.List;
2425

2526
import de.sormuras.bartholdy.Result;
2627
import de.sormuras.bartholdy.jdk.Jar;
@@ -390,8 +391,8 @@ void executeOnJava8() throws IOException {
390391
assertEquals(1, result.getExitCode(), () -> getExitCodeMessage(result));
391392

392393
var workspace = Request.WORKSPACE.resolve("standalone");
393-
var expectedOutLines = Files.readAllLines(workspace.resolve("expected-out-java8.txt"));
394-
var expectedErrLines = Files.readAllLines(workspace.resolve("expected-err-java8.txt"));
394+
var expectedOutLines = Files.readAllLines(workspace.resolve("expected-out.txt"));
395+
var expectedErrLines = getExpectedErrLinesOnJava8(workspace);
395396
assertLinesMatch(expectedOutLines, result.getOutputLines("out"));
396397
assertLinesMatch(expectedErrLines, result.getOutputLines("err"));
397398

@@ -427,8 +428,8 @@ void executeOnJava8SelectPackage() throws IOException {
427428
assertEquals(1, result.getExitCode(), () -> getExitCodeMessage(result));
428429

429430
var workspace = Request.WORKSPACE.resolve("standalone");
430-
var expectedOutLines = Files.readAllLines(workspace.resolve("expected-out-java8.txt"));
431-
var expectedErrLines = Files.readAllLines(workspace.resolve("expected-err-java8.txt"));
431+
var expectedOutLines = Files.readAllLines(workspace.resolve("expected-out.txt"));
432+
var expectedErrLines = getExpectedErrLinesOnJava8(workspace);
432433
assertLinesMatch(expectedOutLines, result.getOutputLines("out"));
433434
assertLinesMatch(expectedErrLines, result.getOutputLines("err"));
434435

@@ -440,6 +441,13 @@ void executeOnJava8SelectPackage() throws IOException {
440441
+ " (group ID: org.junit.vintage, artifact ID: junit-vintage-engine, version: " + vintageVersion));
441442
}
442443

444+
private static List<String> getExpectedErrLinesOnJava8(Path workspace) throws IOException {
445+
var expectedErrLines = new ArrayList<String>();
446+
expectedErrLines.add(">> JAVA VERSION >>");
447+
expectedErrLines.addAll(Files.readAllLines(workspace.resolve("expected-err.txt")));
448+
return expectedErrLines;
449+
}
450+
443451
@Test
444452
@Order(6)
445453
@Disabled("https://github.com/junit-team/junit5/issues/1724")

0 commit comments

Comments
 (0)