mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
82dab76d63
Fix two tests that fail when `node` is configured `--without-amaro`. PR-URL: https://github.com/nodejs/node/pull/55320 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Chemi Atlow <chemi@atlow.co.il> Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
98 lines
2.9 KiB
JavaScript
98 lines
2.9 KiB
JavaScript
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', { skip: !process.config.variables.node_use_amaro }, 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!/,
|
|
}
|
|
);
|
|
}
|
|
});
|
|
|
|
});
|