mirror of
https://github.com/nodejs/node.git
synced 2025-05-13 17:45:48 +00:00

test/parallel/test-runner-exit-code.js failed in a recent CI run with the following error: + actual - expected + 'TAP version 13\n' + + '# Subtest: /home/iojs/build/workspace/...' - 'TAP version 13\n' This commit resolves that flakiness. Refs: https://ci.nodejs.org/job/node-test-commit-linuxone/35759/ PR-URL: https://github.com/nodejs/node/pull/46138 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
57 lines
1.9 KiB
JavaScript
57 lines
1.9 KiB
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
const fixtures = require('../common/fixtures');
|
|
const assert = require('assert');
|
|
const { spawnSync, spawn } = require('child_process');
|
|
const { once } = require('events');
|
|
const { finished } = require('stream/promises');
|
|
|
|
async function runAndKill(file) {
|
|
if (common.isWindows) {
|
|
common.printSkipMessage(`signals are not supported in windows, skipping ${file}`);
|
|
return;
|
|
}
|
|
let stdout = '';
|
|
const child = spawn(process.execPath, ['--test', file]);
|
|
child.stdout.setEncoding('utf8');
|
|
child.stdout.on('data', (chunk) => {
|
|
if (!stdout.length) child.kill('SIGINT');
|
|
stdout += chunk;
|
|
});
|
|
const [code, signal] = await once(child, 'exit');
|
|
await finished(child.stdout);
|
|
assert(stdout.startsWith('TAP version 13\n'));
|
|
assert.strictEqual(signal, null);
|
|
assert.strictEqual(code, 1);
|
|
}
|
|
|
|
if (process.argv[2] === 'child') {
|
|
const test = require('node:test');
|
|
|
|
if (process.argv[3] === 'pass') {
|
|
test('passing test', () => {
|
|
assert.strictEqual(true, true);
|
|
});
|
|
} else if (process.argv[3] === 'fail') {
|
|
assert.strictEqual(process.argv[3], 'fail');
|
|
test('failing test', () => {
|
|
assert.strictEqual(true, false);
|
|
});
|
|
} else assert.fail('unreachable');
|
|
} else {
|
|
let child = spawnSync(process.execPath, [__filename, 'child', 'pass']);
|
|
assert.strictEqual(child.status, 0);
|
|
assert.strictEqual(child.signal, null);
|
|
|
|
child = spawnSync(process.execPath, ['--test', fixtures.path('test-runner', 'subdir', 'subdir_test.js')]);
|
|
assert.strictEqual(child.status, 0);
|
|
assert.strictEqual(child.signal, null);
|
|
|
|
child = spawnSync(process.execPath, [__filename, 'child', 'fail']);
|
|
assert.strictEqual(child.status, 1);
|
|
assert.strictEqual(child.signal, null);
|
|
|
|
runAndKill(fixtures.path('test-runner', 'never_ending_sync.js')).then(common.mustCall());
|
|
runAndKill(fixtures.path('test-runner', 'never_ending_async.js')).then(common.mustCall());
|
|
}
|