-
Notifications
You must be signed in to change notification settings - Fork 29.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
module: ensure 'node:'-only modules can access node_modules
This commit allows require() and import to search the node_modules directories when importing a core module that must have the node: scheme. This prevents these core modules from shadowing userland modules with the same name but no prefix. PR-URL: #42430 Reviewed-By: Darshan Sen <raisinten@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Beth Griggs <bgriggs@redhat.com> Reviewed-By: Richard Lau <rlau@redhat.com>
- Loading branch information
Showing
4 changed files
with
52 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,51 @@ | ||
'use strict'; | ||
const common = require('../common'); | ||
const tmpdir = require('../common/tmpdir'); | ||
const assert = require('assert'); | ||
const { spawnSync } = require('child_process'); | ||
const fs = require('fs'); | ||
const path = require('path'); | ||
const { createRequire } = require('module'); | ||
|
||
assert.throws( | ||
() => require('test'), | ||
common.expectsError({ code: 'ERR_UNKNOWN_BUILTIN_MODULE' }), | ||
common.expectsError({ code: 'MODULE_NOT_FOUND' }), | ||
); | ||
|
||
(async () => { | ||
await assert.rejects( | ||
async () => import('test'), | ||
common.expectsError({ code: 'ERR_UNKNOWN_BUILTIN_MODULE' }), | ||
common.expectsError({ code: 'ERR_MODULE_NOT_FOUND' }), | ||
); | ||
})().then(common.mustCall()); | ||
|
||
assert.throws( | ||
() => require.resolve('test'), | ||
common.expectsError({ code: 'MODULE_NOT_FOUND' }), | ||
); | ||
|
||
// Verify that files in node_modules can be resolved. | ||
tmpdir.refresh(); | ||
|
||
const packageRoot = path.join(tmpdir.path, 'node_modules', 'test'); | ||
const indexFile = path.join(packageRoot, 'index.js'); | ||
|
||
fs.mkdirSync(packageRoot, { recursive: true }); | ||
fs.writeFileSync(indexFile, 'module.exports = { marker: 1 };'); | ||
|
||
function test(argv) { | ||
const child = spawnSync(process.execPath, argv, { cwd: tmpdir.path }); | ||
assert.strictEqual(child.status, 0); | ||
assert.strictEqual(child.stdout.toString().trim(), '{ marker: 1 }'); | ||
} | ||
|
||
test(['-e', 'console.log(require("test"))']); | ||
test(['-e', 'import("test").then(m=>console.log(m.default))']); | ||
test(['--input-type=module', '-e', 'import test from "test";console.log(test)']); | ||
test(['--input-type=module', '-e', 'console.log((await import("test")).default)']); | ||
|
||
{ | ||
const dummyFile = path.join(tmpdir.path, 'file.js'); | ||
const require = createRequire(dummyFile); | ||
assert.strictEqual(require.resolve('test'), indexFile); | ||
} |