mirror of
https://github.com/nodejs/node.git
synced 2025-05-04 22:16:16 +00:00

PR-URL: https://github.com/nodejs/node/pull/37798 Refs: https://github.com/whatwg/dom/pull/960 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Zijian Liu <lxxyxzj@gmail.com> Reviewed-By: Zeyu Yang <himself65@outlook.com>
46 lines
1.1 KiB
JavaScript
46 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 signal = AbortSignal.abort(); // Abort in advance
|
|
const promise = execPromisifed(waitCommand, { signal });
|
|
|
|
assert.rejects(promise, /AbortError/, 'pre aborted signal failed')
|
|
.then(common.mustCall());
|
|
}
|