mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 21:19:50 +01:00
e2e2bc83c0
Replace Object.prototpye.hasOwnProperty() with Object.hasOwn() where applicable. PR-URL: https://github.com/nodejs/node/pull/41664 Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Darshan Sen <raisinten@gmail.com> Reviewed-By: Mestery <mestery@protonmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Tierney Cyren <hello@bnb.im> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
62 lines
1.8 KiB
JavaScript
62 lines
1.8 KiB
JavaScript
'use strict';
|
|
// Flags: --expose-internals
|
|
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
const getValidStdio = require('internal/child_process').getValidStdio;
|
|
|
|
const expectedError = { code: 'ERR_INVALID_ARG_VALUE', name: 'TypeError' };
|
|
|
|
// Should throw if string and not ignore, pipe, or inherit
|
|
assert.throws(() => getValidStdio('foo'), expectedError);
|
|
|
|
// Should throw if not a string or array
|
|
assert.throws(() => getValidStdio(600), expectedError);
|
|
|
|
// Should populate stdio with undefined if len < 3
|
|
{
|
|
const stdio1 = [];
|
|
const result = getValidStdio(stdio1, false);
|
|
assert.strictEqual(stdio1.length, 3);
|
|
assert.strictEqual(Object.hasOwn(result, 'stdio'), true);
|
|
assert.strictEqual(Object.hasOwn(result, 'ipc'), true);
|
|
assert.strictEqual(Object.hasOwn(result, 'ipcFd'), true);
|
|
}
|
|
|
|
// Should throw if stdio has ipc and sync is true
|
|
const stdio2 = ['ipc', 'ipc', 'ipc'];
|
|
assert.throws(() => getValidStdio(stdio2, true),
|
|
{ code: 'ERR_IPC_SYNC_FORK', name: 'Error' }
|
|
);
|
|
|
|
// Should throw if stdio is not a valid input
|
|
{
|
|
const stdio = ['foo'];
|
|
assert.throws(() => getValidStdio(stdio, false),
|
|
{ code: 'ERR_INVALID_SYNC_FORK_INPUT', name: 'TypeError' }
|
|
);
|
|
}
|
|
|
|
// Should throw if stdio is not a valid option
|
|
{
|
|
const stdio = [{ foo: 'bar' }];
|
|
assert.throws(() => getValidStdio(stdio), expectedError);
|
|
}
|
|
|
|
if (common.isMainThread) {
|
|
const stdio3 = [process.stdin, process.stdout, process.stderr];
|
|
const result = getValidStdio(stdio3, false);
|
|
assert.deepStrictEqual(result, {
|
|
stdio: [
|
|
{ type: 'fd', fd: 0 },
|
|
{ type: 'fd', fd: 1 },
|
|
{ type: 'fd', fd: 2 },
|
|
],
|
|
ipc: undefined,
|
|
ipcFd: undefined
|
|
});
|
|
} else {
|
|
common.printSkipMessage(
|
|
'stdio is not associated with file descriptors in Workers');
|
|
}
|