mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
d1ef6aa2db
The old import assertions proposal has been
renamed to "import attributes" with the follwing major changes:
1. The keyword is now `with` instead of `assert`.
2. Unknown assertions cause an error rather than being ignored,
This commit updates the documentation to encourage folks to use the new
syntax, and add aliases for module customization hooks.
PR-URL: https://github.com/nodejs/node/pull/50140
Fixes: https://github.com/nodejs/node/issues/50134
Refs: 159c82c5e6
Reviewed-By: Geoffrey Booth <webadmin@geoffreybooth.com>
Reviewed-By: Jacob Smith <jacob@frende.me>
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
116 lines
3.8 KiB
JavaScript
116 lines
3.8 KiB
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
const fixtures = require('../common/fixtures');
|
|
const assert = require('assert');
|
|
function createURL(mime, body) {
|
|
return `data:${mime},${body}`;
|
|
}
|
|
|
|
function createBase64URL(mime, body) {
|
|
return `data:${mime};base64,${Buffer.from(body).toString('base64')}`;
|
|
}
|
|
(async () => {
|
|
{
|
|
const body = 'export default {a:"aaa"};';
|
|
const plainESMURL = createURL('text/javascript', body);
|
|
const ns = await import(plainESMURL);
|
|
assert.deepStrictEqual(Object.keys(ns), ['default']);
|
|
assert.strictEqual(ns.default.a, 'aaa');
|
|
const importerOfURL = createURL(
|
|
'text/javascript',
|
|
`export {default as default} from ${JSON.stringify(plainESMURL)}`
|
|
);
|
|
assert.strictEqual(
|
|
(await import(importerOfURL)).default,
|
|
ns.default
|
|
);
|
|
const base64ESMURL = createBase64URL('text/javascript', body);
|
|
assert.notStrictEqual(
|
|
await import(base64ESMURL),
|
|
ns
|
|
);
|
|
}
|
|
{
|
|
const body = 'export default import.meta.url;';
|
|
const plainESMURL = createURL('text/javascript', body);
|
|
const ns = await import(plainESMURL);
|
|
assert.deepStrictEqual(Object.keys(ns), ['default']);
|
|
assert.strictEqual(ns.default, plainESMURL);
|
|
}
|
|
{
|
|
const body = 'export default import.meta.url;';
|
|
const plainESMURL = createURL('text/javascript;charset=UTF-8', body);
|
|
const ns = await import(plainESMURL);
|
|
assert.deepStrictEqual(Object.keys(ns), ['default']);
|
|
assert.strictEqual(ns.default, plainESMURL);
|
|
}
|
|
{
|
|
const body = 'export default import.meta.url;';
|
|
const plainESMURL = createURL('text/javascript;charset="UTF-8"', body);
|
|
const ns = await import(plainESMURL);
|
|
assert.deepStrictEqual(Object.keys(ns), ['default']);
|
|
assert.strictEqual(ns.default, plainESMURL);
|
|
}
|
|
{
|
|
const body = 'export default import.meta.url;';
|
|
const plainESMURL = createURL('text/javascript;;a=a;b=b;;', body);
|
|
const ns = await import(plainESMURL);
|
|
assert.deepStrictEqual(Object.keys(ns), ['default']);
|
|
assert.strictEqual(ns.default, plainESMURL);
|
|
}
|
|
{
|
|
const ns = await import('data:application/json;foo="test,"this"',
|
|
{ with: { type: 'json' } });
|
|
assert.deepStrictEqual(Object.keys(ns), ['default']);
|
|
assert.strictEqual(ns.default, 'this');
|
|
}
|
|
{
|
|
const ns = await import(`data:application/json;foo=${
|
|
encodeURIComponent('test,')
|
|
},0`, { with: { type: 'json' } });
|
|
assert.deepStrictEqual(Object.keys(ns), ['default']);
|
|
assert.strictEqual(ns.default, 0);
|
|
}
|
|
{
|
|
await assert.rejects(async () =>
|
|
import('data:application/json;foo="test,",0',
|
|
{ with: { type: 'json' } }), {
|
|
name: 'SyntaxError',
|
|
message: /Unterminated string in JSON at position 3/
|
|
});
|
|
}
|
|
{
|
|
const body = '{"x": 1}';
|
|
const plainESMURL = createURL('application/json', body);
|
|
const ns = await import(plainESMURL, { with: { type: 'json' } });
|
|
assert.deepStrictEqual(Object.keys(ns), ['default']);
|
|
assert.strictEqual(ns.default.x, 1);
|
|
}
|
|
{
|
|
const body = '{"default": 2}';
|
|
const plainESMURL = createURL('application/json', body);
|
|
const ns = await import(plainESMURL, { with: { type: 'json' } });
|
|
assert.deepStrictEqual(Object.keys(ns), ['default']);
|
|
assert.strictEqual(ns.default.default, 2);
|
|
}
|
|
{
|
|
const body = 'null';
|
|
const plainESMURL = createURL('invalid', body);
|
|
try {
|
|
await import(plainESMURL);
|
|
common.mustNotCall()();
|
|
} catch (e) {
|
|
assert.strictEqual(e.code, 'ERR_INVALID_URL');
|
|
}
|
|
}
|
|
{
|
|
const plainESMURL = 'data:text/javascript,export%20default%202';
|
|
const module = await import(plainESMURL);
|
|
assert.strictEqual(module.default, 2);
|
|
}
|
|
{
|
|
const plainESMURL = `data:text/javascript,${encodeURIComponent(`import ${JSON.stringify(fixtures.fileURL('es-module-url', 'empty.js'))}`)}`;
|
|
await import(plainESMURL);
|
|
}
|
|
})().then(common.mustCall());
|