Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Test reporter #56438

Open
wants to merge 5 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build-tarball.yml
Original file line number Diff line number Diff line change
Expand Up @@ -105,4 +105,4 @@ jobs:
- name: Test
run: |
cd $TAR_DIR
make run-ci -j4 V=1 TEST_CI_ARGS="-p dots --node-args='--test-reporter=spec' --measure-flakiness 9"
make run-ci -j4 V=1 TEST_CI_ARGS="-p dots --node-args='--test-reporter=./test/common/test-error-reporter.js' --measure-flakiness 9"
2 changes: 1 addition & 1 deletion .github/workflows/coverage-linux-without-intl.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ jobs:
# TODO(bcoe): fix the couple tests that fail with the inspector enabled.
# The cause is most likely coverage's use of the inspector.
- name: Test
run: NODE_V8_COVERAGE=coverage/tmp make test-cov -j4 V=1 TEST_CI_ARGS="-p dots --node-args='--test-reporter=spec' --measure-flakiness 9" || exit 0
run: NODE_V8_COVERAGE=coverage/tmp make test-cov -j4 V=1 TEST_CI_ARGS="-p dots --node-args='--test-reporter=./test/common/test-error-reporter.js' --measure-flakiness 9" || exit 0
- name: Report JS
run: npx c8 report --check-coverage
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/coverage-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ jobs:
# TODO(bcoe): fix the couple tests that fail with the inspector enabled.
# The cause is most likely coverage's use of the inspector.
- name: Test
run: NODE_V8_COVERAGE=coverage/tmp make test-cov -j4 V=1 TEST_CI_ARGS="-p dots --node-args='--test-reporter=spec' --measure-flakiness 9" || exit 0
run: NODE_V8_COVERAGE=coverage/tmp make test-cov -j4 V=1 TEST_CI_ARGS="-p dots --node-args='--test-reporter=./test/common/test-error-reporter.js' --measure-flakiness 9" || exit 0
- name: Report JS
run: npx c8 report --check-coverage
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/doc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,4 +40,4 @@ jobs:
name: docs
path: out/doc
- name: Test
run: NODE=$(command -v node) make test-doc-ci TEST_CI_ARGS="-p actions --node-args='--test-reporter=spec' --node-args='--test-reporter-destination=stdout' --measure-flakiness 9"
run: NODE=$(command -v node) make test-doc-ci TEST_CI_ARGS="-p actions --node-args='--test-reporter=./test/common/test-error-reporter.js' --node-args='--test-reporter-destination=stdout' --measure-flakiness 9"
2 changes: 1 addition & 1 deletion .github/workflows/test-asan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,4 +63,4 @@ jobs:
- name: Build
run: make build-ci -j4 V=1
- name: Test
run: make run-ci -j4 V=1 TEST_CI_ARGS="-p actions --node-args='--test-reporter=spec' --node-args='--test-reporter-destination=stdout' -t 300 --measure-flakiness 9"
run: make run-ci -j4 V=1 TEST_CI_ARGS="-p actions --node-args='--test-reporter=./test/common/test-error-reporter.js' --node-args='--test-reporter-destination=stdout' -t 300 --measure-flakiness 9"
2 changes: 1 addition & 1 deletion .github/workflows/test-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
- name: Build
run: make -C node build-ci -j4 V=1 CONFIG_FLAGS="--error-on-warn"
- name: Test
run: make -C node run-ci -j4 V=1 TEST_CI_ARGS="-p actions --node-args='--test-reporter=spec' --node-args='--test-reporter-destination=stdout' --measure-flakiness 9"
run: make -C node run-ci -j4 V=1 TEST_CI_ARGS="-p actions --node-args='--test-reporter=./test/common/test-error-reporter.js' --node-args='--test-reporter-destination=stdout' --measure-flakiness 9"
- name: Re-run test in a folder whose name contains unusual chars
run: |
mv node "$DIR"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ jobs:
- name: Free Space After Build
run: df -h
- name: Test
run: make -C node run-ci -j$(getconf _NPROCESSORS_ONLN) V=1 TEST_CI_ARGS="-p actions --node-args='--test-reporter=spec' --node-args='--test-reporter-destination=stdout' --measure-flakiness 9"
run: make -C node run-ci -j$(getconf _NPROCESSORS_ONLN) V=1 TEST_CI_ARGS="-p actions --node-args='--test-reporter=./test/common/test-error-reporter.js' --node-args='--test-reporter-destination=stdout' --measure-flakiness 9"
- name: Re-run test in a folder whose name contains unusual chars
run: |
mv node "$DIR"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-ubsan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,4 +64,4 @@ jobs:
- name: Build
run: make build-ci -j2 V=1
- name: Test
run: make run-ci -j2 V=1 TEST_CI_ARGS="-p actions --node-args='--test-reporter=spec' --node-args='--test-reporter-destination=stdout' -t 300 --measure-flakiness 9"
run: make run-ci -j2 V=1 TEST_CI_ARGS="-p actions --node-args='--test-reporter=./test/common/test-error-reporter.js' --node-args='--test-reporter-destination=stdout' -t 300 --measure-flakiness 9"
41 changes: 41 additions & 0 deletions test/common/test-error-reporter.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
'use strict';
const { relative } = require('node:path');
const { inspect } = require('node:util');
const cwd = process.cwd();

module.exports = async function* errorReporter(source) {
for await (const event of source) {
if (event.type === 'test:fail') {
const { name, details, line, column, file } = event.data;
let { error } = details;

if (error?.failureType === 'subtestsFailed') {
// In the interest of keeping things concise, skip failures that are
// only due to nested failures.
continue;
}

if (error?.code === 'ERR_TEST_FAILURE') {
error = error.cause;
}

const output = [
`Test failure: '${name}'`,
];

if (file) {
output.push(`Location: ${relative(cwd, file)}:${line}:${column}`);
}

output.push(inspect(error));
output.push('\n');
yield output.join('\n');

if (process.env.FAIL_FAST) {
yield `\n\u001b[31m✖ Bailing on failed test: ${event.data.name}\u001b[0m\n`;
process.exitCode = 1;
process.emit('SIGINT');
}
}
}
};
6 changes: 6 additions & 0 deletions test/fixtures/test-runner/error-reporter-fail-fast/a.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
const assert = require('node:assert');
const { test } = require('node:test');

test('fail', () => {
assert.fail('a.mjs fail');
});
6 changes: 6 additions & 0 deletions test/fixtures/test-runner/error-reporter-fail-fast/b.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
const assert = require('node:assert');
const { test } = require('node:test');

test('fail', () => {
assert.fail('b.mjs fail');
});
1 change: 1 addition & 0 deletions test/parallel/test-runner-cli-concurrency.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
const args = ['--test', '--test-concurrency=2'];
const cp = spawnSync(process.execPath, args, { cwd, env });
assert.match(cp.stderr.toString(), /concurrency: 2,/);
throw new Error('bye');

Check failure on line 26 in test/parallel/test-runner-cli-concurrency.js

View workflow job for this annotation

GitHub Actions / test-linux

--- stdout --- ::debug::starting to run default concurrency ::debug::completed running default concurrency ::debug::starting to run concurrency of one ::debug::completed running concurrency of one ::debug::starting to run concurrency of two ::error title=concurrency of two,file=node/node/test/parallel/test-runner-cli-concurrency.js,line=26,col=9::[Error [ERR_TEST_FAILURE]: bye] { code: 'ERR_TEST_FAILURE', failureType: 'testCodeFailure', cause: Error: bye at TestContext.<anonymous> (/home/runner/work/node/node/node/test/parallel/test-runner-cli-concurrency.js:26:9) at Test.runInAsyncScope (node:async_hooks:211:14) at Test.run (node:internal/test_runner/test:931:25) at Test.processPendingSubtests (node:internal/test_runner/test:629:18) at Test.postRun (node:internal/test_runner/test:1042:19) at Test.run (node:internal/test_runner/test:970:12) at async Test.processPendingSubtests (node:internal/test_runner/test:629:7) } Test failure: 'concurrency of two' Location: test/parallel/test-runner-cli-concurrency.js:22:1 Error: bye at TestContext.<anonymous> (/home/runner/work/node/node/node/test/parallel/test-runner-cli-concurrency.js:26:9) at Test.runInAsyncScope (node:async_hooks:211:14) at Test.run (node:internal/test_runner/test:931:25) at Test.processPendingSubtests (node:internal/test_runner/test:629:18) at Test.postRun (node:internal/test_runner/test:1042:19) at Test.run (node:internal/test_runner/test:970:12) at async Test.processPendingSubtests (node:internal/test_runner/test:629:7) ::debug::starting to run isolation=none uses a concurrency of one ::debug::completed running isolation=none uses a concurrency of one ::debug::starting to run isolation=none overrides --test-concurrency ::debug::completed running isolation=none overrides --test-concurrency ::notice file=node/test/parallel/test-runner-cli-concurrency.js,line=1,col=1::tests 5 ::notice file=node/test/parallel/test-runner-cli-concurrency.js,line=1,col=1::suites 0 ::notice file=node/test/parallel/test-runner-cli-concurrency.js,line=1,col=1::pass 4 ::notice file=node/test/parallel/test-runner-cli-concurrency.js,line=1,col=1::fail 1 ::notice file=node/test/parallel/test-runner-cli-concurrency.js,line=1,col=1::cancelled 0 ::notice file=node/test/parallel/test-runner-cli-concurrency.js,line=1,col=1::skipped 0 ::notice file=node/test/parallel/test-runner-cli-concurrency.js,line=1,col=1::todo 0 ::notice file=node/test/parallel/test-runner-cli-concurrency.js,line=1,col=1::duration_ms 1478.484154 ::group::Test results (4 passed, 1 failed) ::notice:: ::endgroup:: Command: out/Release/node --test-reporter=./test/common/test-error-reporter.js --test-reporter-destination=stdout --test-reporter=./tools/github_reporter/index.js --test-reporter-destination=stdout /home/runner/work/node/node/node/test/parallel/test-runner-cli-concurrency.js

Check failure on line 26 in test/parallel/test-runner-cli-concurrency.js

View workflow job for this annotation

GitHub Actions / test-macOS (macos-13)

--- stdout --- ::debug::starting to run default concurrency ::debug::completed running default concurrency ::debug::starting to run concurrency of one ::debug::completed running concurrency of one ::debug::starting to run concurrency of two ::error title=concurrency of two,file=node/node/test/parallel/test-runner-cli-concurrency.js,line=26,col=9::[Error [ERR_TEST_FAILURE]: bye] { code: 'ERR_TEST_FAILURE', failureType: 'testCodeFailure', cause: Error: bye at TestContext.<anonymous> (/Users/runner/work/node/node/node/test/parallel/test-runner-cli-concurrency.js:26:9) at Test.runInAsyncScope (node:async_hooks:211:14) at Test.run (node:internal/test_runner/test:931:25) at Test.processPendingSubtests (node:internal/test_runner/test:629:18) at Test.postRun (node:internal/test_runner/test:1042:19) at Test.run (node:internal/test_runner/test:970:12) at async Test.processPendingSubtests (node:internal/test_runner/test:629:7) } Test failure: 'concurrency of two' Location: test/parallel/test-runner-cli-concurrency.js:22:1 Error: bye at TestContext.<anonymous> (/Users/runner/work/node/node/node/test/parallel/test-runner-cli-concurrency.js:26:9) at Test.runInAsyncScope (node:async_hooks:211:14) at Test.run (node:internal/test_runner/test:931:25) at Test.processPendingSubtests (node:internal/test_runner/test:629:18) at Test.postRun (node:internal/test_runner/test:1042:19) at Test.run (node:internal/test_runner/test:970:12) at async Test.processPendingSubtests (node:internal/test_runner/test:629:7) ::debug::starting to run isolation=none uses a concurrency of one ::debug::completed running isolation=none uses a concurrency of one ::debug::starting to run isolation=none overrides --test-concurrency ::debug::completed running isolation=none overrides --test-concurrency ::notice file=node/test/parallel/test-runner-cli-concurrency.js,line=1,col=1::tests 5 ::notice file=node/test/parallel/test-runner-cli-concurrency.js,line=1,col=1::suites 0 ::notice file=node/test/parallel/test-runner-cli-concurrency.js,line=1,col=1::pass 4 ::notice file=node/test/parallel/test-runner-cli-concurrency.js,line=1,col=1::fail 1 ::notice file=node/test/parallel/test-runner-cli-concurrency.js,line=1,col=1::cancelled 0 ::notice file=node/test/parallel/test-runner-cli-concurrency.js,line=1,col=1::skipped 0 ::notice file=node/test/parallel/test-runner-cli-concurrency.js,line=1,col=1::todo 0 ::notice file=node/test/parallel/test-runner-cli-concurrency.js,line=1,col=1::duration_ms 1486.381287 ::group::Test results (4 passed, 1 failed) ::notice:: ::endgroup:: Command: out/Release/node --test-reporter=./test/common/test-error-reporter.js --test-reporter-destination=stdout --test-reporter=./tools/github_reporter/index.js --test-reporter-destination=stdout /Users/runner/work/node/node/node/test/parallel/test-runner-cli-concurrency.js

Check failure on line 26 in test/parallel/test-runner-cli-concurrency.js

View workflow job for this annotation

GitHub Actions / test-macOS (macos-14)

--- stdout --- ::debug::starting to run default concurrency ::debug::completed running default concurrency ::debug::starting to run concurrency of one ::debug::completed running concurrency of one ::debug::starting to run concurrency of two ::error title=concurrency of two,file=node/node/test/parallel/test-runner-cli-concurrency.js,line=26,col=9::[Error [ERR_TEST_FAILURE]: bye] { code: 'ERR_TEST_FAILURE', failureType: 'testCodeFailure', cause: Error: bye at TestContext.<anonymous> (/Users/runner/work/node/node/node/test/parallel/test-runner-cli-concurrency.js:26:9) at Test.runInAsyncScope (node:async_hooks:211:14) at Test.run (node:internal/test_runner/test:931:25) at Test.processPendingSubtests (node:internal/test_runner/test:629:18) at Test.postRun (node:internal/test_runner/test:1042:19) at Test.run (node:internal/test_runner/test:970:12) at async Test.processPendingSubtests (node:internal/test_runner/test:629:7) } Test failure: 'concurrency of two' Location: test/parallel/test-runner-cli-concurrency.js:22:1 Error: bye at TestContext.<anonymous> (/Users/runner/work/node/node/node/test/parallel/test-runner-cli-concurrency.js:26:9) at Test.runInAsyncScope (node:async_hooks:211:14) at Test.run (node:internal/test_runner/test:931:25) at Test.processPendingSubtests (node:internal/test_runner/test:629:18) at Test.postRun (node:internal/test_runner/test:1042:19) at Test.run (node:internal/test_runner/test:970:12) at async Test.processPendingSubtests (node:internal/test_runner/test:629:7) ::debug::starting to run isolation=none uses a concurrency of one ::debug::completed running isolation=none uses a concurrency of one ::debug::starting to run isolation=none overrides --test-concurrency ::debug::completed running isolation=none overrides --test-concurrency ::notice file=node/test/parallel/test-runner-cli-concurrency.js,line=1,col=1::tests 5 ::notice file=node/test/parallel/test-runner-cli-concurrency.js,line=1,col=1::suites 0 ::notice file=node/test/parallel/test-runner-cli-concurrency.js,line=1,col=1::pass 4 ::notice file=node/test/parallel/test-runner-cli-concurrency.js,line=1,col=1::fail 1 ::notice file=node/test/parallel/test-runner-cli-concurrency.js,line=1,col=1::cancelled 0 ::notice file=node/test/parallel/test-runner-cli-concurrency.js,line=1,col=1::skipped 0 ::notice file=node/test/parallel/test-runner-cli-concurrency.js,line=1,col=1::todo 0 ::notice file=node/test/parallel/test-runner-cli-concurrency.js,line=1,col=1::duration_ms 657.312833 ::group::Test results (4 passed, 1 failed) ::notice:: ::endgroup:: Command: out/Release/node --test-reporter=./test/common/test-error-reporter.js --test-reporter-destination=stdout --test-reporter=./tools/github_reporter/index.js --test-reporter-destination=stdout /Users/runner/work/node/node/node/test/parallel/test-runner-cli-concurrency.js
Ceres6 marked this conversation as resolved.
Show resolved Hide resolved
});

test('isolation=none uses a concurrency of one', async () => {
Expand Down
33 changes: 33 additions & 0 deletions test/parallel/test-runner-error-reporter.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
'use strict';

require('../common');
const fixtures = require('../common/fixtures');
const assert = require('node:assert');
const { spawnSync } = require('node:child_process');
const { test } = require('node:test');
const cwd = fixtures.path('test-runner', 'error-reporter-fail-fast');
const env = { ...process.env };

test('all tests failures reported without FAIL_FAST flag', async () => {
const args = [
'--test-reporter=./test/common/test-error-reporter.js',
'--test-concurrency=1',
'--test',
`${cwd}/*.mjs`,
];
const cp = spawnSync(process.execPath, args, { env });
const failureCount = (cp.stdout.toString().match(/Test failure:/g) || []).length;
assert.strictEqual(failureCount, 2);
});

test('FAIL_FAST stops test execution after first failure', async () => {
const args = [
'--test-reporter=./test/common/test-error-reporter.js',
'--test-concurrency=1',
'--test',
`${cwd}/*.mjs`,
];
const cp = spawnSync(process.execPath, args, { env: { ...env, FAIL_FAST: 'true' } });
const failureCount = (cp.stdout.toString().match(/Test failure:/g) || []).length;
assert.strictEqual(failureCount, 1);
});
Loading