mirror of https://github.com/nodejs/node.git
31 lines
774 B
JavaScript
31 lines
774 B
JavaScript
'use strict';
|
|
|
|
const common = require('../common');
|
|
const { isMainThread } = require('worker_threads');
|
|
|
|
if (!isMainThread) {
|
|
common.skip('This test only works on a main thread');
|
|
}
|
|
|
|
if (!common.hasCrypto) {
|
|
common.skip('no crypto');
|
|
}
|
|
|
|
const { spawnSync } = require('child_process');
|
|
const assert = require('assert');
|
|
const fixtures = require('../common/fixtures');
|
|
const file = fixtures.path('permission', 'processbinding.js');
|
|
|
|
// Due to linting rules-utils.js:isBinding check, process.binding() should
|
|
// not be called when --permission is enabled.
|
|
// Always spawn a child process
|
|
{
|
|
const { status, stderr } = spawnSync(
|
|
process.execPath,
|
|
[
|
|
'--permission', '--allow-fs-read=*', file,
|
|
],
|
|
);
|
|
assert.strictEqual(status, 0, stderr.toString());
|
|
}
|