mirror of
https://github.com/nodejs/node.git
synced 2025-05-10 11:50:36 +00:00

Also modifies the error messages so they include more information and are more consistent. - The message of ERR_SCRIPT_EXECUTION_INTERRUPTED now mentions SIGINT and the trailing period is dropped for consistency. - Added ERR_SCRIPT_EXECUTION_TIMEOUT and include the timeout in the message. PR-URL: https://github.com/nodejs/node/pull/20147 Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Tiancheng "Timothy" Gu <timothygu99@gmail.com> Reviewed-By: Gus Caplan <me@gus.host> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
47 lines
1.3 KiB
JavaScript
47 lines
1.3 KiB
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
if (common.isWindows) {
|
|
// No way to send CTRL_C_EVENT to processes from JS right now.
|
|
common.skip('platform not supported');
|
|
}
|
|
|
|
const assert = require('assert');
|
|
const spawn = require('child_process').spawn;
|
|
|
|
process.env.REPL_TEST_PPID = process.pid;
|
|
const child = spawn(process.execPath, [ '-i' ], {
|
|
stdio: [null, null, 2]
|
|
});
|
|
|
|
let stdout = '';
|
|
child.stdout.setEncoding('utf8');
|
|
child.stdout.on('data', function(c) {
|
|
stdout += c;
|
|
});
|
|
|
|
child.stdout.once('data', common.mustCall(() => {
|
|
process.on('SIGUSR2', common.mustCall(() => {
|
|
process.kill(child.pid, 'SIGINT');
|
|
child.stdout.once('data', common.mustCall(() => {
|
|
// Make sure REPL still works.
|
|
child.stdin.end('"foobar"\n');
|
|
}));
|
|
}));
|
|
|
|
child.stdin.write('process.kill(+process.env.REPL_TEST_PPID, "SIGUSR2");' +
|
|
'vm.runInThisContext("while(true){}", ' +
|
|
'{ breakOnSigint: true });\n');
|
|
}));
|
|
|
|
child.on('close', function(code) {
|
|
const expected = 'Script execution was interrupted by `SIGINT`';
|
|
assert.ok(
|
|
stdout.includes(expected),
|
|
`Expected stdout to contain "${expected}", got ${stdout}`
|
|
);
|
|
assert.ok(
|
|
stdout.includes('foobar'),
|
|
`Expected stdout to contain "foobar", got ${stdout}`
|
|
);
|
|
});
|