-
Notifications
You must be signed in to change notification settings - Fork 29.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test_runner: close and flush destinations on forced exit
This commit updates the test runner to explicitly close and flush all destination file streams when the --test-force-exit flag is used. Fixes: #54327
- Loading branch information
Showing
3 changed files
with
74 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
'use strict'; | ||
require('../common'); | ||
const fixtures = require('../common/fixtures'); | ||
const tmpdir = require('../common/tmpdir'); | ||
const { match, strictEqual } = require('node:assert'); | ||
const { spawnSync } = require('node:child_process'); | ||
const { readFileSync } = require('node:fs'); | ||
const { test } = require('node:test'); | ||
|
||
function runWithReporter(reporter) { | ||
const destination = tmpdir.resolve(`${reporter}.out`); | ||
const args = [ | ||
'--test-force-exit', | ||
`--test-reporter=${reporter}`, | ||
`--test-reporter-destination=${destination}`, | ||
fixtures.path('test-runner', 'reporters.js'), | ||
]; | ||
const child = spawnSync(process.execPath, args); | ||
// strictEqual(child.stdout.toString(), ''); | ||
strictEqual(child.stderr.toString(), ''); | ||
strictEqual(child.status, 1); | ||
return destination; | ||
} | ||
|
||
tmpdir.refresh(); | ||
|
||
test('junit reporter', () => { | ||
const output = readFileSync(runWithReporter('junit'), 'utf8'); | ||
match(output, /<!-- tests 4 -->/); | ||
match(output, /<!-- pass 2 -->/); | ||
match(output, /<!-- fail 2 -->/); | ||
match(output, /<!-- duration_ms/); | ||
match(output, /<\/testsuites>/); | ||
}); | ||
|
||
test('spec reporter', () => { | ||
const output = readFileSync(runWithReporter('spec'), 'utf8'); | ||
match(output, /tests 4/); | ||
match(output, /pass 2/); | ||
match(output, /fail 2/); | ||
}); | ||
|
||
test('tap reporter', () => { | ||
const output = readFileSync(runWithReporter('tap'), 'utf8'); | ||
match(output, /# tests 4/); | ||
match(output, /# pass 2/); | ||
match(output, /# fail 2/); | ||
match(output, /# duration_ms/); | ||
}); |