0
0
mirror of https://github.com/nodejs/node.git synced 2024-11-24 20:29:23 +01:00

esm: ensure cwd-relative imports for module --eval

PR-URL: https://github.com/nodejs/node/pull/28389
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
This commit is contained in:
Guy Bedford 2019-06-23 00:27:56 +02:00
parent a173173398
commit 4565292a77
3 changed files with 22 additions and 7 deletions

View File

@ -9,7 +9,10 @@ const {
ERR_MISSING_DYNAMIC_INSTANTIATE_HOOK,
ERR_UNKNOWN_MODULE_FORMAT
} = require('internal/errors').codes;
const { URL } = require('url');
const {
URL,
pathToFileURL
} = require('url');
const { validateString } = require('internal/validators');
const ModuleMap = require('internal/modules/esm/module_map');
const ModuleJob = require('internal/modules/esm/module_job');
@ -107,7 +110,10 @@ class Loader {
return { url, format };
}
async eval(source, url = `eval:${++this.evalIndex}`) {
async eval(
source,
url = pathToFileURL(`${process.cwd()}/[eval${++this.evalIndex}]`).href
) {
const evalInstance = async (url) => {
return {
module: new ModuleWrap(source, url),

View File

@ -1,7 +1,7 @@
Error: test
at one (eval:1:2:9)
at two (eval:1:15:9)
at one (file:*/[eval1]:2:9)
at two (file:*/[eval1]:15:9)
at processTicksAndRejections (internal/process/task_queues.js:*:*)
at async three (eval:1:18:3)
at async four (eval:1:22:3)
at async main (eval:1:28:5)
at async three (file:*/[eval1]:18:3)
at async four (file:*/[eval1]:22:3)
at async main (file:*/[eval1]:28:5)

View File

@ -274,3 +274,12 @@ child.exec(
assert.ifError(err);
assert.strictEqual(stdout, 'object\n');
}));
// Assert that packages can be imported cwd-relative with --eval
child.exec(
`${nodejs} ${execOptions} ` +
'--eval "import \'./test/fixtures/es-modules/mjs-file.mjs\'"',
common.mustCall((err, stdout) => {
assert.ifError(err);
assert.strictEqual(stdout, '.mjs file\n');
}));