-
Notifications
You must be signed in to change notification settings - Fork 29.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
child_process: add timeout to spawn and fork
Add support for timeout to spawn and fork. Fixes: #27639 PR-URL: #37256 Reviewed-By: Benjamin Gruenbaum <[email protected]>
- Loading branch information
Showing
4 changed files
with
138 additions
and
9 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
50 changes: 50 additions & 0 deletions
50
test/parallel/test-child-process-fork-timeout-kill-signal.js
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,50 @@ | ||
'use strict'; | ||
|
||
const { mustCall } = require('../common'); | ||
const { strictEqual, throws } = require('assert'); | ||
const fixtures = require('../common/fixtures'); | ||
const { fork } = require('child_process'); | ||
const { getEventListeners } = require('events'); | ||
|
||
{ | ||
// Verify default signal | ||
const cp = fork(fixtures.path('child-process-stay-alive-forever.js'), { | ||
timeout: 5, | ||
}); | ||
cp.on('exit', mustCall((code, ks) => strictEqual(ks, 'SIGTERM'))); | ||
} | ||
|
||
{ | ||
// Verify correct signal + closes after at least 4 ms. | ||
const cp = fork(fixtures.path('child-process-stay-alive-forever.js'), { | ||
timeout: 5, | ||
killSignal: 'SIGKILL', | ||
}); | ||
cp.on('exit', mustCall((code, ks) => strictEqual(ks, 'SIGKILL'))); | ||
} | ||
|
||
{ | ||
// Verify timeout verification | ||
throws(() => fork(fixtures.path('child-process-stay-alive-forever.js'), { | ||
timeout: 'badValue', | ||
}), /ERR_OUT_OF_RANGE/); | ||
|
||
throws(() => fork(fixtures.path('child-process-stay-alive-forever.js'), { | ||
timeout: {}, | ||
}), /ERR_OUT_OF_RANGE/); | ||
} | ||
|
||
{ | ||
// Verify abort signal gets unregistered | ||
const signal = new EventTarget(); | ||
signal.aborted = false; | ||
|
||
const cp = fork(fixtures.path('child-process-stay-alive-forever.js'), { | ||
timeout: 6, | ||
signal, | ||
}); | ||
strictEqual(getEventListeners(signal, 'abort').length, 1); | ||
cp.on('exit', mustCall(() => { | ||
strictEqual(getEventListeners(signal, 'abort').length, 0); | ||
})); | ||
} |
50 changes: 50 additions & 0 deletions
50
test/parallel/test-child-process-spawn-timeout-kill-signal.js
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,50 @@ | ||
'use strict'; | ||
|
||
const { mustCall } = require('../common'); | ||
const { strictEqual, throws } = require('assert'); | ||
const fixtures = require('../common/fixtures'); | ||
const { spawn } = require('child_process'); | ||
const { getEventListeners } = require('events'); | ||
|
||
const aliveForeverFile = 'child-process-stay-alive-forever.js'; | ||
{ | ||
// Verify default signal + closes | ||
const cp = spawn(process.execPath, [fixtures.path(aliveForeverFile)], { | ||
timeout: 5, | ||
}); | ||
cp.on('exit', mustCall((code, ks) => strictEqual(ks, 'SIGTERM'))); | ||
} | ||
|
||
{ | ||
// Verify SIGKILL signal + closes | ||
const cp = spawn(process.execPath, [fixtures.path(aliveForeverFile)], { | ||
timeout: 6, | ||
killSignal: 'SIGKILL', | ||
}); | ||
cp.on('exit', mustCall((code, ks) => strictEqual(ks, 'SIGKILL'))); | ||
} | ||
|
||
{ | ||
// Verify timeout verification | ||
throws(() => spawn(process.execPath, [fixtures.path(aliveForeverFile)], { | ||
timeout: 'badValue', | ||
}), /ERR_OUT_OF_RANGE/); | ||
|
||
throws(() => spawn(process.execPath, [fixtures.path(aliveForeverFile)], { | ||
timeout: {}, | ||
}), /ERR_OUT_OF_RANGE/); | ||
} | ||
|
||
{ | ||
// Verify abort signal gets unregistered | ||
const controller = new AbortController(); | ||
const { signal } = controller; | ||
const cp = spawn(process.execPath, [fixtures.path(aliveForeverFile)], { | ||
timeout: 6, | ||
signal, | ||
}); | ||
strictEqual(getEventListeners(signal, 'abort').length, 1); | ||
cp.on('exit', mustCall(() => { | ||
strictEqual(getEventListeners(signal, 'abort').length, 0); | ||
})); | ||
} |