Skip to content

Commit

Permalink
CLI: Apply trace cleaning and internal greying to assertion stack
Browse files Browse the repository at this point in the history
Follows-up #1789, which applied
this to traces under uncaught errors. We now apply this clean up to
traces under assertion failures as well.
  • Loading branch information
Krinkle committed Aug 7, 2024
1 parent 9a1fc05 commit b72930b
Show file tree
Hide file tree
Showing 12 changed files with 17 additions and 28 deletions.
10 changes: 8 additions & 2 deletions src/core/reporters/TapReporter.js
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,10 @@ export default class TapReporter {
if (error.stack) {
// Since stacks aren't user generated, take a bit of liberty by
// adding a trailing new line to allow a straight-forward YAML Blocks.
out += `\n stack: ${prettyYamlValue(error.stack + '\n')}`;
const fmtStack = annotateStacktrace(error.stack, kleur.grey);
if (fmtStack.length) {
out += `\n stack: ${prettyYamlValue(fmtStack + '\n')}`;
}
}

out += '\n ...';
Expand All @@ -281,7 +284,10 @@ export default class TapReporter {
out += `\n message: ${prettyYamlValue(errorString(error))}`;
out += `\n severity: ${prettyYamlValue('failed')}`;
if (error && error.stack) {
out += `\n stack: ${prettyYamlValue(annotateStacktrace(error, kleur.grey) + '\n')}`;
const fmtStack = annotateStacktrace(error.stack, kleur.grey, error.toString());
if (fmtStack.length) {
out += `\n stack: ${prettyYamlValue(fmtStack + '\n')}`;
}
}
out += '\n ...';
this.log(out);
Expand Down
15 changes: 9 additions & 6 deletions src/core/stacktrace.js
Original file line number Diff line number Diff line change
Expand Up @@ -60,17 +60,20 @@ function qunitFileName () {
const fileName = qunitFileName();

/**
* Responsibilities:
* - For internal errors from QUnit itself, remove the first qunit.js frames.
* - For errors in Node.js, format any remaining qunit.js and node:internal
* frames as internal (i.e. grey out).
*
* @param {string} Error#stack
* @param {Function} formatInternal Format a string in an "internal" color
* @param {string|null} [eToString] Error#toString() to help remove
* noise from Node.js/V8 stack traces.
*/
export function annotateStacktrace (e, formatInternal) {
if (!e || !e.stack) {
return String(e);
}
const frames = e.stack.split('\n');
export function annotateStacktrace (stack, formatInternal, eToString = null) {
const frames = stack.split('\n');
const annotated = [];
if (e.toString().indexOf(frames[0]) !== -1) {
if (eToString && eToString.indexOf(frames[0]) !== -1) {
// In Firefox and Safari e.stack starts with frame 0, but in V8 (Chrome/Node.js),
// e.stack starts first stringified message. Preserve this separately,
// so that, below, we can distinguish between internal frames on top
Expand Down
2 changes: 0 additions & 2 deletions test/cli/cli-main.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,6 @@ not ok 2 slow
---
message: Test took longer than 7ms; test timed out.
severity: failed
stack: |
at internal
...
ok 3 config
1..3
Expand Down
2 changes: 0 additions & 2 deletions test/cli/fixtures/config-noglobals-add.tap.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@ not ok 1 adds global var
---
message: Introduced global variable(s): dummyGlobal
severity: failed
stack: |
at qunit.js
...
1..1
# pass 0
Expand Down
2 changes: 0 additions & 2 deletions test/cli/fixtures/config-noglobals-remove.tap.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@ not ok 1 deletes global var
---
message: Deleted global variable(s): dummyGlobal
severity: failed
stack: |
at qunit.js
...
1..1
# pass 0
Expand Down
2 changes: 0 additions & 2 deletions test/cli/fixtures/config-notrycatch-hook-rejection.tap.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,6 @@ not ok 1 example > passing test
---
message: Test took longer than 1000ms; test timed out.
severity: failed
stack: |
at internal
...
1..1
# pass 0
Expand Down
2 changes: 0 additions & 2 deletions test/cli/fixtures/config-notrycatch-test-rejection.tap.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,6 @@ not ok 1 example > returns a rejected promise
---
message: Test took longer than 1000ms; test timed out.
severity: failed
stack: |
at internal
...
1..1
# pass 0
Expand Down
2 changes: 0 additions & 2 deletions test/cli/fixtures/config-testTimeout.tap.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@ not ok 1 slow
---
message: Test took longer than 10ms; test timed out.
severity: failed
stack: |
at internal
...
1..1
# pass 0
Expand Down
2 changes: 0 additions & 2 deletions test/cli/fixtures/done-after-timeout.tap.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@ not ok 1 times out before scheduled done is called
---
message: Test took longer than 10ms; test timed out.
severity: failed
stack: |
at internal
...
1..1
# pass 0
Expand Down
2 changes: 0 additions & 2 deletions test/cli/fixtures/hanging-test.tap.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@ not ok 1 hanging
---
message: Test took longer than 3000ms; test timed out.
severity: failed
stack: |
at internal
...
1..1
# pass 0
Expand Down
2 changes: 0 additions & 2 deletions test/cli/fixtures/pending-async-after-timeout.tap.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@ not ok 1 example
---
message: Test took longer than 10ms; test timed out.
severity: failed
stack: |
at internal
...
1..1
# pass 0
Expand Down
2 changes: 0 additions & 2 deletions test/cli/fixtures/timeout.tap.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@ not ok 1 timeout > first
---
message: Test took longer than 10ms; test timed out.
severity: failed
stack: |
at internal
...
ok 2 timeout > second
1..2
Expand Down

0 comments on commit b72930b

Please sign in to comment.