mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
d859e9e997
PR-URL: https://github.com/nodejs/node/pull/42623 Reviewed-By: Geoffrey Booth <webadmin@geoffreybooth.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
111 lines
3.3 KiB
JavaScript
111 lines
3.3 KiB
JavaScript
import '../common/index.mjs';
|
|
import assert from 'assert';
|
|
import child_process from 'child_process';
|
|
import fixtures from '../common/fixtures.js';
|
|
|
|
const commonArgs = [
|
|
'--no-warnings',
|
|
'--input-type=module',
|
|
'--eval',
|
|
];
|
|
|
|
{
|
|
// Unresolved TLA promise, --eval
|
|
const { status, stdout, stderr } = child_process.spawnSync(
|
|
process.execPath,
|
|
[...commonArgs, 'await new Promise(() => {})'],
|
|
{ encoding: 'utf8' });
|
|
assert.deepStrictEqual([status, stdout, stderr], [13, '', '']);
|
|
}
|
|
|
|
{
|
|
// Rejected TLA promise, --eval
|
|
const { status, stdout, stderr } = child_process.spawnSync(
|
|
process.execPath,
|
|
[...commonArgs, 'await Promise.reject(new Error("Xyz"))'],
|
|
{ encoding: 'utf8' });
|
|
assert.deepStrictEqual([status, stdout], [1, '']);
|
|
assert.match(stderr, /Error: Xyz/);
|
|
}
|
|
|
|
{
|
|
// Unresolved TLA promise with explicit exit code, --eval
|
|
const { status, stdout, stderr } = child_process.spawnSync(
|
|
process.execPath,
|
|
[
|
|
...commonArgs,
|
|
'process.exitCode = 42;await new Promise(() => {})',
|
|
],
|
|
{ encoding: 'utf8' });
|
|
assert.deepStrictEqual([status, stdout, stderr], [42, '', '']);
|
|
}
|
|
|
|
{
|
|
// Rejected TLA promise with explicit exit code, --eval
|
|
const { status, stdout, stderr } = child_process.spawnSync(
|
|
process.execPath,
|
|
[
|
|
...commonArgs,
|
|
'process.exitCode = 42;await Promise.reject(new Error("Xyz"))',
|
|
],
|
|
{ encoding: 'utf8' });
|
|
assert.deepStrictEqual([status, stdout], [1, '']);
|
|
assert.match(stderr, /Error: Xyz/);
|
|
}
|
|
|
|
{
|
|
// Unresolved TLA promise, module file
|
|
const { status, stdout, stderr } = child_process.spawnSync(
|
|
process.execPath,
|
|
['--no-warnings', fixtures.path('es-modules/tla/unresolved.mjs')],
|
|
{ encoding: 'utf8' });
|
|
assert.deepStrictEqual([status, stdout, stderr], [13, '', '']);
|
|
}
|
|
|
|
{
|
|
// Rejected TLA promise, module file
|
|
const { status, stdout, stderr } = child_process.spawnSync(
|
|
process.execPath,
|
|
['--no-warnings', fixtures.path('es-modules/tla/rejected.mjs')],
|
|
{ encoding: 'utf8' });
|
|
assert.deepStrictEqual([status, stdout], [1, '']);
|
|
assert.match(stderr, /Error: Xyz/);
|
|
}
|
|
|
|
{
|
|
// Unresolved TLA promise, module file
|
|
const { status, stdout, stderr } = child_process.spawnSync(
|
|
process.execPath,
|
|
['--no-warnings', fixtures.path('es-modules/tla/unresolved-withexitcode.mjs')],
|
|
{ encoding: 'utf8' });
|
|
assert.deepStrictEqual([status, stdout, stderr], [42, '', '']);
|
|
}
|
|
|
|
{
|
|
// Rejected TLA promise, module file
|
|
const { status, stdout, stderr } = child_process.spawnSync(
|
|
process.execPath,
|
|
['--no-warnings', fixtures.path('es-modules/tla/rejected-withexitcode.mjs')],
|
|
{ encoding: 'utf8' });
|
|
assert.deepStrictEqual([status, stdout], [1, '']);
|
|
assert.match(stderr, /Error: Xyz/);
|
|
}
|
|
|
|
{
|
|
// Calling process.exit() in .mjs should return status 0
|
|
const { status, stdout, stderr } = child_process.spawnSync(
|
|
process.execPath,
|
|
['--no-warnings', fixtures.path('es-modules/tla/process-exit.mjs')],
|
|
{ encoding: 'utf8' });
|
|
assert.deepStrictEqual([status, stdout, stderr], [0, '', '']);
|
|
}
|
|
|
|
{
|
|
// Calling process.exit() in worker thread shouldn't influence main thread
|
|
const { status, stdout, stderr } = child_process.spawnSync(
|
|
process.execPath,
|
|
['--no-warnings', fixtures.path('es-modules/tla/unresolved-with-worker-process-exit.mjs')],
|
|
{ encoding: 'utf8' });
|
|
assert.deepStrictEqual([status, stdout, stderr], [13, '', '']);
|
|
}
|