mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
2dc4290662
Fixes: https://github.com/nodejs/node/issues/47814 PR-URL: https://github.com/nodejs/node/pull/47817 Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Darshan Sen <raisinten@gmail.com>
106 lines
2.8 KiB
JavaScript
106 lines
2.8 KiB
JavaScript
'use strict';
|
|
|
|
const { mustCall, mustNotCall } = require('../common');
|
|
const { strictEqual } = require('assert');
|
|
const fixtures = require('../common/fixtures');
|
|
const { fork } = require('child_process');
|
|
|
|
{
|
|
// Test aborting a forked child_process after calling fork
|
|
const ac = new AbortController();
|
|
const { signal } = ac;
|
|
const cp = fork(fixtures.path('child-process-stay-alive-forever.js'), {
|
|
signal
|
|
});
|
|
cp.on('exit', mustCall((code, killSignal) => {
|
|
strictEqual(code, null);
|
|
strictEqual(killSignal, 'SIGTERM');
|
|
}));
|
|
cp.on('error', mustCall((err) => {
|
|
strictEqual(err.name, 'AbortError');
|
|
}));
|
|
process.nextTick(() => ac.abort());
|
|
}
|
|
|
|
{
|
|
// Test aborting with custom error
|
|
const ac = new AbortController();
|
|
const { signal } = ac;
|
|
const cp = fork(fixtures.path('child-process-stay-alive-forever.js'), {
|
|
signal
|
|
});
|
|
cp.on('exit', mustCall((code, killSignal) => {
|
|
strictEqual(code, null);
|
|
strictEqual(killSignal, 'SIGTERM');
|
|
}));
|
|
cp.on('error', mustCall((err) => {
|
|
strictEqual(err.name, 'AbortError');
|
|
strictEqual(err.cause.name, 'Error');
|
|
strictEqual(err.cause.message, 'boom');
|
|
}));
|
|
process.nextTick(() => ac.abort(new Error('boom')));
|
|
}
|
|
|
|
{
|
|
// Test passing an already aborted signal to a forked child_process
|
|
const signal = AbortSignal.abort();
|
|
const cp = fork(fixtures.path('child-process-stay-alive-forever.js'), {
|
|
signal
|
|
});
|
|
cp.on('exit', mustCall((code, killSignal) => {
|
|
strictEqual(code, null);
|
|
strictEqual(killSignal, 'SIGTERM');
|
|
}));
|
|
cp.on('error', mustCall((err) => {
|
|
strictEqual(err.name, 'AbortError');
|
|
}));
|
|
}
|
|
|
|
{
|
|
// Test passing an aborted signal with custom error to a forked child_process
|
|
const signal = AbortSignal.abort(new Error('boom'));
|
|
const cp = fork(fixtures.path('child-process-stay-alive-forever.js'), {
|
|
signal
|
|
});
|
|
cp.on('exit', mustCall((code, killSignal) => {
|
|
strictEqual(code, null);
|
|
strictEqual(killSignal, 'SIGTERM');
|
|
}));
|
|
cp.on('error', mustCall((err) => {
|
|
strictEqual(err.name, 'AbortError');
|
|
strictEqual(err.cause.name, 'Error');
|
|
strictEqual(err.cause.message, 'boom');
|
|
}));
|
|
}
|
|
|
|
{
|
|
// Test passing a different kill signal
|
|
const signal = AbortSignal.abort();
|
|
const cp = fork(fixtures.path('child-process-stay-alive-forever.js'), {
|
|
signal,
|
|
killSignal: 'SIGKILL',
|
|
});
|
|
cp.on('exit', mustCall((code, killSignal) => {
|
|
strictEqual(code, null);
|
|
strictEqual(killSignal, 'SIGKILL');
|
|
}));
|
|
cp.on('error', mustCall((err) => {
|
|
strictEqual(err.name, 'AbortError');
|
|
}));
|
|
}
|
|
|
|
{
|
|
// Test aborting a cp before close but after exit
|
|
const ac = new AbortController();
|
|
const { signal } = ac;
|
|
const cp = fork(fixtures.path('child-process-stay-alive-forever.js'), {
|
|
signal
|
|
});
|
|
cp.on('exit', mustCall(() => {
|
|
ac.abort();
|
|
}));
|
|
cp.on('error', mustNotCall());
|
|
|
|
setTimeout(() => cp.kill(), 1);
|
|
}
|