mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
7d0ce254e8
Tests should pass even if the path where the repo is cloned contains URL-significant chars. PR-URL: https://github.com/nodejs/node/pull/55082 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Mohammed Keyvanzadeh <mohammadkeyvanzade94@gmail.com>
110 lines
3.9 KiB
JavaScript
110 lines
3.9 KiB
JavaScript
// Flags: --experimental-import-meta-resolve
|
|
import { spawnPromisified } from '../common/index.mjs';
|
|
import assert from 'assert';
|
|
import { spawn } from 'child_process';
|
|
import { execPath } from 'process';
|
|
|
|
const dirname = import.meta.url.slice(0, import.meta.url.lastIndexOf('/') + 1);
|
|
const fixtures = dirname.slice(0, dirname.lastIndexOf('/', dirname.length - 2) + 1) + 'fixtures/';
|
|
|
|
assert.strictEqual(import.meta.resolve('./test-esm-import-meta.mjs'),
|
|
dirname + 'test-esm-import-meta.mjs');
|
|
assert.strictEqual(import.meta.resolve('./notfound.mjs'), new URL('./notfound.mjs', import.meta.url).href);
|
|
assert.strictEqual(import.meta.resolve('./asset'), new URL('./asset', import.meta.url).href);
|
|
try {
|
|
import.meta.resolve('does-not-exist');
|
|
assert.fail();
|
|
} catch (e) {
|
|
assert.strictEqual(e.code, 'ERR_MODULE_NOT_FOUND');
|
|
}
|
|
assert.strictEqual(
|
|
import.meta.resolve('../fixtures/empty-with-bom.txt'),
|
|
fixtures + 'empty-with-bom.txt');
|
|
assert.strictEqual(import.meta.resolve('../fixtures/'), fixtures);
|
|
assert.strictEqual(
|
|
import.meta.resolve('../fixtures/', import.meta.url),
|
|
fixtures);
|
|
assert.strictEqual(
|
|
import.meta.resolve('../fixtures/', new URL(import.meta.url)),
|
|
fixtures);
|
|
[[], {}, Symbol(), 0, 1, 1n, 1.1, () => {}, true, false].map((arg) =>
|
|
assert.throws(() => import.meta.resolve('../fixtures/', arg), {
|
|
code: 'ERR_INVALID_ARG_TYPE',
|
|
})
|
|
);
|
|
assert.strictEqual(import.meta.resolve('http://some-absolute/url'), 'http://some-absolute/url');
|
|
assert.strictEqual(import.meta.resolve('some://weird/protocol'), 'some://weird/protocol');
|
|
assert.strictEqual(import.meta.resolve('baz/', fixtures),
|
|
fixtures + 'node_modules/baz/');
|
|
assert.deepStrictEqual(
|
|
{ ...await import('data:text/javascript,export default import.meta.resolve("http://some-absolute/url")') },
|
|
{ default: 'http://some-absolute/url' },
|
|
);
|
|
assert.deepStrictEqual(
|
|
{ ...await import('data:text/javascript,export default import.meta.resolve("some://weird/protocol")') },
|
|
{ default: 'some://weird/protocol' },
|
|
);
|
|
assert.deepStrictEqual(
|
|
{ ...await import(`data:text/javascript,export default import.meta.resolve("baz/", ${encodeURIComponent(JSON.stringify(fixtures))})`) },
|
|
{ default: fixtures + 'node_modules/baz/' },
|
|
);
|
|
assert.deepStrictEqual(
|
|
{ ...await import('data:text/javascript,export default import.meta.resolve("fs")') },
|
|
{ default: 'node:fs' },
|
|
);
|
|
await assert.rejects(import('data:text/javascript,export default import.meta.resolve("does-not-exist")'), {
|
|
code: 'ERR_UNSUPPORTED_RESOLVE_REQUEST',
|
|
});
|
|
await assert.rejects(import('data:text/javascript,export default import.meta.resolve("./relative")'), {
|
|
code: 'ERR_UNSUPPORTED_RESOLVE_REQUEST',
|
|
});
|
|
|
|
{
|
|
const cp = spawn(execPath, [
|
|
'--input-type=module',
|
|
'--eval', 'console.log(typeof import.meta.resolve)',
|
|
]);
|
|
assert.match((await cp.stdout.toArray()).toString(), /^function\r?\n$/);
|
|
}
|
|
|
|
{
|
|
const cp = spawn(execPath, [
|
|
'--input-type=module',
|
|
]);
|
|
cp.stdin.end('console.log(typeof import.meta.resolve)');
|
|
assert.match((await cp.stdout.toArray()).toString(), /^function\r?\n$/);
|
|
}
|
|
|
|
{
|
|
const cp = spawn(execPath, [
|
|
'--input-type=module',
|
|
'--eval', 'import "data:text/javascript,console.log(import.meta.resolve(%22node:os%22))"',
|
|
]);
|
|
assert.match((await cp.stdout.toArray()).toString(), /^node:os\r?\n$/);
|
|
}
|
|
|
|
{
|
|
const cp = spawn(execPath, [
|
|
'--input-type=module',
|
|
]);
|
|
cp.stdin.end('import "data:text/javascript,console.log(import.meta.resolve(%22node:os%22))"');
|
|
assert.match((await cp.stdout.toArray()).toString(), /^node:os\r?\n$/);
|
|
}
|
|
|
|
{
|
|
const result = await spawnPromisified(execPath, [
|
|
'--no-warnings',
|
|
'--input-type=module',
|
|
'--import', 'data:text/javascript,import{register}from"node:module";register("data:text/javascript,")',
|
|
'--eval',
|
|
'console.log(import.meta.resolve(new URL("http://example.com")))',
|
|
]);
|
|
|
|
assert.deepStrictEqual(result, {
|
|
code: 0,
|
|
signal: null,
|
|
stderr: '',
|
|
stdout: 'http://example.com/\n',
|
|
});
|
|
}
|