Permalink
Show file tree
Hide file tree
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
test_runner: pass signal on timeout
PR-URL: #43911 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
- Loading branch information
1 parent
25ec71d
commit 58d15b36870e74c474b66978a47d23bb94d78bf5
Showing
3 changed files
with
42 additions
and
5 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,33 @@ | ||
| 'use strict'; | ||
| const common = require('../common'); | ||
| const assert = require('assert'); | ||
| const { spawnSync } = require('child_process'); | ||
| const { setTimeout } = require('timers/promises'); | ||
|
|
||
| if (process.argv[2] === 'child') { | ||
| const test = require('node:test'); | ||
|
|
||
| if (process.argv[3] === 'abortSignal') { | ||
| assert.throws(() => test({ signal: {} }), { | ||
| code: 'ERR_INVALID_ARG_TYPE', | ||
| name: 'TypeError' | ||
| }); | ||
|
|
||
| let testSignal; | ||
| test({ timeout: 10 }, common.mustCall(async ({ signal }) => { | ||
| assert.strictEqual(signal.aborted, false); | ||
| testSignal = signal; | ||
| await setTimeout(50); | ||
| })).finally(common.mustCall(() => { | ||
| test(() => assert.strictEqual(testSignal.aborted, true)); | ||
| })); | ||
| } else assert.fail('unreachable'); | ||
| } else { | ||
| const child = spawnSync(process.execPath, [__filename, 'child', 'abortSignal']); | ||
| const stdout = child.stdout.toString(); | ||
| assert.match(stdout, /^# pass 1$/m); | ||
| assert.match(stdout, /^# fail 0$/m); | ||
| assert.match(stdout, /^# cancelled 1$/m); | ||
| assert.strictEqual(child.status, 1); | ||
| assert.strictEqual(child.signal, null); | ||
| } |