mirror of
https://github.com/nodejs/node.git
synced 2025-05-19 23:36:56 +00:00

Fixes: https://github.com/nodejs/node/issues/37568 PR-URL: https://github.com/nodejs/node/pull/37572 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
48 lines
1.1 KiB
JavaScript
48 lines
1.1 KiB
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
const exec = require('child_process').exec;
|
|
const { promisify } = require('util');
|
|
|
|
const execPromisifed = promisify(exec);
|
|
const invalidArgTypeError = {
|
|
code: 'ERR_INVALID_ARG_TYPE',
|
|
name: 'TypeError'
|
|
};
|
|
|
|
const waitCommand = common.isLinux ?
|
|
'sleep 2m' :
|
|
`${process.execPath} -e "setInterval(()=>{}, 99)"`;
|
|
|
|
{
|
|
const ac = new AbortController();
|
|
const signal = ac.signal;
|
|
const promise = execPromisifed(waitCommand, { signal });
|
|
assert.rejects(promise, /AbortError/, 'post aborted sync signal failed')
|
|
.then(common.mustCall());
|
|
ac.abort();
|
|
}
|
|
|
|
{
|
|
assert.throws(() => {
|
|
execPromisifed(waitCommand, { signal: {} });
|
|
}, invalidArgTypeError);
|
|
}
|
|
|
|
{
|
|
function signal() {}
|
|
assert.throws(() => {
|
|
execPromisifed(waitCommand, { signal });
|
|
}, invalidArgTypeError);
|
|
}
|
|
|
|
{
|
|
const ac = new AbortController();
|
|
const { signal } = ac;
|
|
ac.abort();
|
|
const promise = execPromisifed(waitCommand, { signal });
|
|
|
|
assert.rejects(promise, /AbortError/, 'pre aborted signal failed')
|
|
.then(common.mustCall());
|
|
}
|