mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
99e0d0d218
PR-URL: https://github.com/nodejs/node/pull/55125 Reviewed-By: Jacob Smith <jacob@frende.me> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: LiviaMedeiros <livia@cirno.name> Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
64 lines
1.8 KiB
JavaScript
64 lines
1.8 KiB
JavaScript
// Flags: --experimental-permission --allow-fs-read=*
|
|
'use strict';
|
|
|
|
const common = require('../common');
|
|
common.skipIfWorker();
|
|
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({
|
|
code: 'ERR_ACCESS_DENIED',
|
|
permission: 'ChildProcess',
|
|
}));
|
|
assert.throws(() => {
|
|
childProcess.spawnSync(process.execPath, ['--version']);
|
|
}, common.expectsError({
|
|
code: 'ERR_ACCESS_DENIED',
|
|
permission: 'ChildProcess',
|
|
}));
|
|
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',
|
|
}));
|
|
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',
|
|
}));
|
|
}
|