2022-07-29 08:42:55 +00:00
|
|
|
import { spawnPromisified } from '../common/index.mjs';
|
2022-06-18 00:27:13 +00:00
|
|
|
import { fileURL, path } from '../common/fixtures.mjs';
|
|
|
|
import { match, ok, notStrictEqual, strictEqual } from 'assert';
|
2022-07-29 08:42:55 +00:00
|
|
|
import { execPath } from 'node:process';
|
|
|
|
import { describe, it } from 'node:test';
|
2022-06-18 00:27:13 +00:00
|
|
|
|
|
|
|
|
2024-03-23 21:11:28 +00:00
|
|
|
describe('ESM: thenable loader hooks', { concurrency: !process.env.TEST_PARALLEL }, () => {
|
2022-07-29 08:42:55 +00:00
|
|
|
it('should behave as a normal promise resolution', async () => {
|
|
|
|
const { code, stderr } = await spawnPromisified(execPath, [
|
|
|
|
'--experimental-loader',
|
|
|
|
fileURL('es-module-loaders', 'thenable-load-hook.mjs').href,
|
|
|
|
path('es-modules', 'test-esm-ok.mjs'),
|
|
|
|
]);
|
|
|
|
|
2022-06-18 00:27:13 +00:00
|
|
|
strictEqual(code, 0);
|
|
|
|
ok(!stderr.includes('must not call'));
|
2022-07-29 08:42:55 +00:00
|
|
|
});
|
2022-06-18 00:27:13 +00:00
|
|
|
|
2022-07-29 08:42:55 +00:00
|
|
|
it('should crash the node process rejection with an error', async () => {
|
|
|
|
const { code, stderr } = await spawnPromisified(execPath, [
|
|
|
|
'--experimental-loader',
|
|
|
|
fileURL('es-module-loaders', 'thenable-load-hook-rejected.mjs').href,
|
|
|
|
path('es-modules', 'test-esm-ok.mjs'),
|
|
|
|
]);
|
2022-06-18 00:27:13 +00:00
|
|
|
|
|
|
|
notStrictEqual(code, 0);
|
|
|
|
match(stderr, /\sError: must crash the process\r?\n/);
|
|
|
|
ok(!stderr.includes('must not call'));
|
2022-07-29 08:42:55 +00:00
|
|
|
});
|
2022-06-18 00:27:13 +00:00
|
|
|
|
2022-07-29 08:42:55 +00:00
|
|
|
it('should just reject without an error (but NOT crash the node process)', async () => {
|
|
|
|
const { code, stderr } = await spawnPromisified(execPath, [
|
|
|
|
'--experimental-loader',
|
|
|
|
fileURL('es-module-loaders', 'thenable-load-hook-rejected-no-arguments.mjs').href,
|
|
|
|
path('es-modules', 'test-esm-ok.mjs'),
|
|
|
|
]);
|
2022-06-18 00:27:13 +00:00
|
|
|
|
|
|
|
notStrictEqual(code, 0);
|
|
|
|
match(stderr, /\sundefined\r?\n/);
|
|
|
|
ok(!stderr.includes('must not call'));
|
2022-07-29 08:42:55 +00:00
|
|
|
});
|
|
|
|
});
|