Skip to content

Commit 4af00b6

Browse files
committed
feat: Improve handling of skipped lines in stderr assertion and update test fixtures
1 parent 455409a commit 4af00b6

File tree

6 files changed

+8
-18
lines changed

6 files changed

+8
-18
lines changed

internal/assertions/stderr_assertion.go

+4-4
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,14 @@ func (a StderrAssertion) Run(result executable.ExecutableResult, logger *logger.
2222
stderr := getStderrLinesFromExecutableResult(result)
2323
skippedLines := getSkippedLinesCount(result)
2424

25+
if skippedLines > 0 {
26+
logger.Plainf("[stderr] Skipped %d lines that didn't start with [line N]", skippedLines)
27+
}
28+
2529
for i, expectedLine := range a.ExpectedLines {
2630
if i >= len(stderr) {
2731
logAllSuccessLogs(successLogs, logger)
2832

29-
if skippedLines > 0 {
30-
logger.Plainf("[stderr] Skipped %d lines that didn't start with [line N]", skippedLines)
31-
}
32-
3333
return fmt.Errorf(`
3434
[stderr] Missing line #%d from stderr: %q
3535
[stderr] Perhaps it's printed to stdout? It should be printed to stderr.

internal/test_helpers/fixtures/fail_scanning_multiline_errors/1_missing_line

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
[stage-11] [test-1] Writing contents to ./test.lox:
44
[stage-11] [test-1] [test.lox] ()<|SPACE|><|TAB|>@
55
[stage-11] [test-1] $ ./your_program.sh tokenize test.lox
6-
[your_program] [line 2] Error: Unexpected character: @
76
[your_program] LEFT_PAREN ( null
87
[your_program] RIGHT_PAREN ) null
8+
[your_program] [line 2] Error: Unexpected character: @
99
[your_program] EOF null
1010
[stage-11] [test-1] ✓ 1 line(s) match on stderr
1111
[stage-11] [test-1] ✓ 3 line(s) match on stdout

internal/test_helpers/fixtures/fail_scanning_multiline_errors/2_mismatch

+1-4
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,10 @@
33
[stage-11] [test-1] Writing contents to ./test.lox:
44
[stage-11] [test-1] [test.lox] ()<|SPACE|><|TAB|>@
55
[stage-11] [test-1] $ ./your_program.sh tokenize test.lox
6+
[your_program] [line 2] Error: Unexpected character: @
67
[your_program] LEFT_PAREN ( null
78
[your_program] RIGHT_PAREN ) null
89
[your_program] EOF null
9-
[your_program] This line will be skipped in stderr
10-
[your_program] [line 2] Error: Unexpected character: @
1110
[stage-11] [test-1] ✓ 1 line(s) match on stderr
1211
[stage-11] [test-1] ✓ 3 line(s) match on stdout
1312
[stage-11] [test-1] ✓ Received exit code 65.
@@ -17,9 +16,7 @@
1716
[stage-11] [test-2] [test.lox] <|SPACE|>
1817
[stage-11] [test-2] $ ./your_program.sh tokenize test.lox
1918
[your_program] EOF null
20-
[your_program] This line will be skipped in stderr
2119
[your_program] [line 1] Error: Unexpected character: @
22-
[your_program] This line will be skipped in stderr
2320
[your_program] [line 1] eRrRr: Unexpected character: #
2421
[stage-11] [test-2] ✓ [line 1] Error: Unexpected character: @
2522
[stage-11] [test-2] 

internal/test_helpers/fixtures/fail_scanning_multiline_errors/3_extra_line

+2-5
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,8 @@
33
[stage-11] [test-1] Writing contents to ./test.lox:
44
[stage-11] [test-1] [test.lox] ()<|SPACE|><|TAB|>@
55
[stage-11] [test-1] $ ./your_program.sh tokenize test.lox
6-
[your_program] LEFT_PAREN ( null
7-
[your_program] This line will be skipped in stderr
86
[your_program] [line 2] Error: Unexpected character: @
7+
[your_program] LEFT_PAREN ( null
98
[your_program] RIGHT_PAREN ) null
109
[your_program] EOF null
1110
[stage-11] [test-1] ✓ 1 line(s) match on stderr
@@ -16,10 +15,8 @@
1615
[stage-11] [test-2] [test.lox] @#
1716
[stage-11] [test-2] [test.lox] <|SPACE|>
1817
[stage-11] [test-2] $ ./your_program.sh tokenize test.lox
19-
[your_program] This line will be skipped in stderr
20-
[your_program] EOF null
2118
[your_program] [line 1] Error: Unexpected character: @
22-
[your_program] This line will be skipped in stderr
19+
[your_program] EOF null
2320
[your_program] [line 1] Error: Unexpected character: #
2421
[your_program] [line 888] extra line
2522
[stage-11] [test-2] ✓ [line 1] Error: Unexpected character: @

internal/test_helpers/scenarios/fail_scanning_multiline_errors/2_mismatch/lox/lox.py

-2
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,6 @@ def _check_errror_exit(self):
5353

5454
def _error_report(self, line: int, where: str, message: str):
5555
self._had_error = True
56-
print(f"This line will be skipped in stderr", file=sys.stderr)
57-
5856
if message.endswith("@"):
5957
output = f"[line {line}] Error{where}: {message}"
6058
print(output, file=sys.stderr)

internal/test_helpers/scenarios/fail_scanning_multiline_errors/3_extra_line/lox/lox.py

-2
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,6 @@ def _check_errror_exit(self):
5353

5454
def _error_report(self, line: int, where: str, message: str):
5555
self._had_error = True
56-
print(f"This line will be skipped in stderr", file=sys.stderr)
57-
5856
output = f"[line {line}] Error{where}: {message}"
5957
print(output, file=sys.stderr)
6058
if message.endswith("#"):

0 commit comments

Comments
 (0)