mirror of
https://github.com/nodejs/node.git
synced 2025-08-15 13:48:44 +02:00

This commit enhances the permission model errors when no --allow-child-process is used and the error is emitted. Signed-off-by: RafaelGSS <rafael.nunu@hotmail.com> PR-URL: https://github.com/nodejs/node/pull/58758 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Edy Silva <edigleyssonsilva@gmail.com> Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
72 lines
2 KiB
JavaScript
72 lines
2 KiB
JavaScript
// Flags: --permission --allow-fs-read=*
|
|
'use strict';
|
|
|
|
const common = require('../common');
|
|
const { isMainThread } = require('worker_threads');
|
|
|
|
if (!isMainThread) {
|
|
common.skip('This test only works on a main thread');
|
|
}
|
|
|
|
const assert = require('assert');
|
|
const childProcess = require('child_process');
|
|
|
|
if (process.argv[2] === 'child') {
|
|
process.exit(0);
|
|
}
|
|
|
|
// Guarantee the initial state
|
|
{
|
|
assert.ok(!process.permission.has('child'));
|
|
}
|
|
|
|
// When a permission is set by cli, the process shouldn't be able
|
|
// to spawn
|
|
{
|
|
assert.throws(() => {
|
|
childProcess.spawn(process.execPath, ['--version']);
|
|
}, common.expectsError({
|
|
message: 'Access to this API has been restricted. Use --allow-child-process to manage permissions.',
|
|
code: 'ERR_ACCESS_DENIED',
|
|
permission: 'ChildProcess',
|
|
resource: process.execPath,
|
|
}));
|
|
assert.throws(() => {
|
|
childProcess.spawnSync(process.execPath, ['--version']);
|
|
}, common.expectsError({
|
|
code: 'ERR_ACCESS_DENIED',
|
|
permission: 'ChildProcess',
|
|
resource: process.execPath,
|
|
}));
|
|
assert.throws(() => {
|
|
childProcess.exec(...common.escapePOSIXShell`"${process.execPath}" --version`);
|
|
}, common.expectsError({
|
|
code: 'ERR_ACCESS_DENIED',
|
|
permission: 'ChildProcess',
|
|
}));
|
|
assert.throws(() => {
|
|
childProcess.execSync(...common.escapePOSIXShell`"${process.execPath}" --version`);
|
|
}, common.expectsError({
|
|
code: 'ERR_ACCESS_DENIED',
|
|
permission: 'ChildProcess',
|
|
}));
|
|
assert.throws(() => {
|
|
childProcess.fork(__filename, ['child']);
|
|
}, common.expectsError({
|
|
code: 'ERR_ACCESS_DENIED',
|
|
permission: 'ChildProcess',
|
|
resource: process.execPath,
|
|
}));
|
|
assert.throws(() => {
|
|
childProcess.execFile(...common.escapePOSIXShell`"${process.execPath}" --version`);
|
|
}, common.expectsError({
|
|
code: 'ERR_ACCESS_DENIED',
|
|
permission: 'ChildProcess',
|
|
}));
|
|
assert.throws(() => {
|
|
childProcess.execFileSync(...common.escapePOSIXShell`"${process.execPath}" --version`);
|
|
}, common.expectsError({
|
|
code: 'ERR_ACCESS_DENIED',
|
|
permission: 'ChildProcess',
|
|
}));
|
|
}
|