-
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: support loading entrypoint as url
Co-Authored-By: Antoine du Hamel <[email protected]> PR-URL: #54933 Refs: #49975 Reviewed-By: James M Snell <[email protected]> Reviewed-By: LiviaMedeiros <[email protected]> Reviewed-By: Stephen Belanger <[email protected]> Reviewed-By: Matteo Collina <[email protected]> Reviewed-By: Antoine du Hamel <[email protected]>
- Loading branch information
Showing
8 changed files
with
147 additions
and
8 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
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 |
---|---|---|
@@ -0,0 +1,97 @@ | ||
import { spawnPromisified } from '../common/index.mjs'; | ||
import * as fixtures from '../common/fixtures.mjs'; | ||
import assert from 'node:assert'; | ||
import { execPath } from 'node:process'; | ||
import { describe, it } from 'node:test'; | ||
|
||
// Helper function to assert the spawned process | ||
async function assertSpawnedProcess(args, options = {}, expected = {}) { | ||
const { code, signal, stderr, stdout } = await spawnPromisified(execPath, args, options); | ||
|
||
if (expected.stderr) { | ||
assert.match(stderr, expected.stderr); | ||
} | ||
|
||
if (expected.stdout) { | ||
assert.match(stdout, expected.stdout); | ||
} | ||
|
||
assert.strictEqual(code, expected.code ?? 0); | ||
assert.strictEqual(signal, expected.signal ?? null); | ||
} | ||
|
||
// Common expectation for experimental feature warning in stderr | ||
const experimentalFeatureWarning = { stderr: /--entry-url is an experimental feature/ }; | ||
|
||
describe('--entry-url', { concurrency: true }, () => { | ||
it('should reject loading a path that contains %', async () => { | ||
await assertSpawnedProcess( | ||
['--entry-url', './test-esm-double-encoding-native%20.mjs'], | ||
{ cwd: fixtures.fileURL('es-modules') }, | ||
{ | ||
code: 1, | ||
stderr: /ERR_MODULE_NOT_FOUND/, | ||
} | ||
); | ||
}); | ||
|
||
it('should support loading properly encoded Unix path', async () => { | ||
await assertSpawnedProcess( | ||
['--entry-url', fixtures.fileURL('es-modules/test-esm-double-encoding-native%20.mjs').pathname], | ||
{}, | ||
experimentalFeatureWarning | ||
); | ||
}); | ||
|
||
it('should support loading absolute URLs', async () => { | ||
await assertSpawnedProcess( | ||
['--entry-url', fixtures.fileURL('printA.js')], | ||
{}, | ||
{ | ||
...experimentalFeatureWarning, | ||
stdout: /^A\r?\n$/, | ||
} | ||
); | ||
}); | ||
|
||
it('should support loading relative URLs', async () => { | ||
await assertSpawnedProcess( | ||
['--entry-url', 'es-modules/print-entrypoint.mjs?key=value#hash'], | ||
{ cwd: fixtures.fileURL('./') }, | ||
{ | ||
...experimentalFeatureWarning, | ||
stdout: /print-entrypoint\.mjs\?key=value#hash\r?\n$/, | ||
} | ||
); | ||
}); | ||
|
||
it('should support loading `data:` URLs', async () => { | ||
await assertSpawnedProcess( | ||
['--entry-url', 'data:text/javascript,console.log(import.meta.url)'], | ||
{}, | ||
{ | ||
...experimentalFeatureWarning, | ||
stdout: /^data:text\/javascript,console\.log\(import\.meta\.url\)\r?\n$/, | ||
} | ||
); | ||
}); | ||
|
||
it('should support loading TypeScript URLs', async () => { | ||
const typescriptUrls = [ | ||
'typescript/cts/test-require-ts-file.cts', | ||
'typescript/mts/test-import-ts-file.mts', | ||
]; | ||
|
||
for (const url of typescriptUrls) { | ||
await assertSpawnedProcess( | ||
['--entry-url', '--experimental-strip-types', fixtures.fileURL(url)], | ||
{}, | ||
{ | ||
...experimentalFeatureWarning, | ||
stdout: /Hello, TypeScript!/, | ||
} | ||
); | ||
} | ||
}); | ||
|
||
}); |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
console.log(import.meta.url); |