mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
107 lines
3.7 KiB
JavaScript
107 lines
3.7 KiB
JavaScript
|
// Flags: --experimental-wasm-modules
|
||
|
import { mustNotCall, spawnPromisified } from '../common/index.mjs';
|
||
|
import * as fixtures from '../common/fixtures.mjs';
|
||
|
import { describe, it } from 'node:test';
|
||
|
import { match, ok, strictEqual } from 'node:assert';
|
||
|
|
||
|
describe('extensionless ES modules within a "type": "module" package scope', { concurrency: true }, () => {
|
||
|
it('should run as the entry point', async () => {
|
||
|
const { code, signal, stdout, stderr } = await spawnPromisified(process.execPath, [
|
||
|
fixtures.path('es-modules/package-type-module/noext-esm'),
|
||
|
]);
|
||
|
|
||
|
strictEqual(stderr, '');
|
||
|
strictEqual(stdout, 'executed\n');
|
||
|
strictEqual(code, 0);
|
||
|
strictEqual(signal, null);
|
||
|
});
|
||
|
|
||
|
it('should be importable', async () => {
|
||
|
const { default: defaultExport } =
|
||
|
await import(fixtures.fileURL('es-modules/package-type-module/noext-esm'));
|
||
|
strictEqual(defaultExport, 'module');
|
||
|
});
|
||
|
|
||
|
it('should be importable from a module scope under node_modules', async () => {
|
||
|
const { default: defaultExport } =
|
||
|
await import(fixtures.fileURL(
|
||
|
'es-modules/package-type-module/node_modules/dep-with-package-json-type-module/noext-esm'));
|
||
|
strictEqual(defaultExport, 'module');
|
||
|
});
|
||
|
});
|
||
|
describe('extensionless Wasm modules within a "type": "module" package scope', { concurrency: true }, () => {
|
||
|
it('should run as the entry point', async () => {
|
||
|
const { code, signal, stdout, stderr } = await spawnPromisified(process.execPath, [
|
||
|
'--experimental-wasm-modules',
|
||
|
'--no-warnings',
|
||
|
fixtures.path('es-modules/package-type-module/noext-wasm'),
|
||
|
]);
|
||
|
|
||
|
strictEqual(stderr, '');
|
||
|
strictEqual(stdout, 'executed\n');
|
||
|
strictEqual(code, 0);
|
||
|
strictEqual(signal, null);
|
||
|
});
|
||
|
|
||
|
it('should be importable', async () => {
|
||
|
const { add } = await import(fixtures.fileURL('es-modules/package-type-module/noext-wasm'));
|
||
|
strictEqual(add(1, 2), 3);
|
||
|
});
|
||
|
|
||
|
it('should be importable from a module scope under node_modules', async () => {
|
||
|
const { add } = await import(fixtures.fileURL(
|
||
|
'es-modules/package-type-module/node_modules/dep-with-package-json-type-module/noext-wasm'));
|
||
|
strictEqual(add(1, 2), 3);
|
||
|
});
|
||
|
});
|
||
|
|
||
|
describe('extensionless ES modules within no package scope', { concurrency: true }, () => {
|
||
|
// This succeeds with `--experimental-default-type=module`
|
||
|
it('should error as the entry point', async () => {
|
||
|
const { code, signal, stdout, stderr } = await spawnPromisified(process.execPath, [
|
||
|
fixtures.path('es-modules/noext-esm'),
|
||
|
]);
|
||
|
|
||
|
match(stderr, /SyntaxError/);
|
||
|
strictEqual(stdout, '');
|
||
|
strictEqual(code, 1);
|
||
|
strictEqual(signal, null);
|
||
|
});
|
||
|
|
||
|
// This succeeds with `--experimental-default-type=module`
|
||
|
it('should error on import', async () => {
|
||
|
try {
|
||
|
await import(fixtures.fileURL('es-modules/noext-esm'));
|
||
|
mustNotCall();
|
||
|
} catch (err) {
|
||
|
ok(err instanceof SyntaxError);
|
||
|
}
|
||
|
});
|
||
|
});
|
||
|
|
||
|
describe('extensionless Wasm within no package scope', { concurrency: true }, () => {
|
||
|
// This succeeds with `--experimental-default-type=module`
|
||
|
it('should error as the entry point', async () => {
|
||
|
const { code, signal, stdout, stderr } = await spawnPromisified(process.execPath, [
|
||
|
'--experimental-wasm-modules',
|
||
|
'--no-warnings',
|
||
|
fixtures.path('es-modules/noext-wasm'),
|
||
|
]);
|
||
|
|
||
|
match(stderr, /SyntaxError/);
|
||
|
strictEqual(stdout, '');
|
||
|
strictEqual(code, 1);
|
||
|
strictEqual(signal, null);
|
||
|
});
|
||
|
|
||
|
// This succeeds with `--experimental-default-type=module`
|
||
|
it('should error on import', async () => {
|
||
|
try {
|
||
|
await import(fixtures.fileURL('es-modules/noext-wasm'));
|
||
|
mustNotCall();
|
||
|
} catch (err) {
|
||
|
ok(err instanceof SyntaxError);
|
||
|
}
|
||
|
});
|
||
|
});
|