-
-
Notifications
You must be signed in to change notification settings - Fork 31.7k
module: ensure 'node:'-only modules can access node_modules #42430
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
bca33e2
module: ensure 'node:'-only modules can access node_modules
cjihrig 2fc6f2a
Update test/parallel/test-runner-import-no-scheme.js
cjihrig 3b626e5
Update test/parallel/test-runner-import-no-scheme.js
cjihrig bcc91f8
Update test/parallel/test-runner-import-no-scheme.js
cjihrig 8c52cea
Update test/parallel/test-runner-import-no-scheme.js
cjihrig 712d9f3
Update test/parallel/test-runner-import-no-scheme.js
cjihrig aa7445a
Update test/parallel/test-runner-import-no-scheme.js
cjihrig File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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); | ||
} |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.