mirror of
https://github.com/zebrajr/node.git
synced 2025-12-06 00:20:08 +01:00
Move permission model from 1.1 (Active Development) to 2.0 (Stable). PR-URL: https://github.com/nodejs/node/pull/56201 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Santiago Gimeno <santiago.gimeno@gmail.com> Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Stephen Belanger <admin@stephenbelanger.com>
42 lines
932 B
JavaScript
42 lines
932 B
JavaScript
'use strict';
|
|
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
const { spawnSync } = require('child_process');
|
|
const fixtures = require('../common/fixtures');
|
|
const file = fixtures.path('permission', 'inspector-brk.js');
|
|
|
|
common.skipIfWorker();
|
|
common.skipIfInspectorDisabled();
|
|
|
|
// See https://github.com/nodejs/node/issues/53385
|
|
{
|
|
const { status, stderr } = spawnSync(
|
|
process.execPath,
|
|
[
|
|
'--permission',
|
|
'--allow-fs-read=*',
|
|
'--inspect-brk',
|
|
file,
|
|
],
|
|
);
|
|
|
|
assert.strictEqual(status, 1);
|
|
assert.match(stderr.toString(), /Error: Access to this API has been restricted/);
|
|
}
|
|
|
|
{
|
|
const { status, stderr } = spawnSync(
|
|
process.execPath,
|
|
[
|
|
'--permission',
|
|
'--inspect-brk',
|
|
'--eval',
|
|
'console.log("Hi!")',
|
|
],
|
|
);
|
|
|
|
assert.strictEqual(status, 1);
|
|
assert.match(stderr.toString(), /Error: Access to this API has been restricted/);
|
|
}
|