mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
db1746182b
This patch disallows CJS <-> ESM edges when they come from require(esm) requested in ESM evalaution. Drive-by: don't reuse the cache for imported CJS modules to stash source code of required ESM because the former is also used for cycle detection. PR-URL: https://github.com/nodejs/node/pull/52264 Fixes: https://github.com/nodejs/node/issues/52145 Reviewed-By: Geoffrey Booth <webadmin@geoffreybooth.com> Reviewed-By: Guy Bedford <guybedford@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
57 lines
1.2 KiB
JavaScript
57 lines
1.2 KiB
JavaScript
'use strict';
|
|
|
|
require('../common');
|
|
const { spawnSyncAndAssert } = require('../common/child_process');
|
|
const fixtures = require('../common/fixtures');
|
|
|
|
// a.mjs -> b.cjs -> c.mjs -> a.mjs
|
|
{
|
|
spawnSyncAndAssert(
|
|
process.execPath,
|
|
[
|
|
'--experimental-require-module',
|
|
fixtures.path('es-modules/esm-cjs-esm-esm-cycle/a.mjs'),
|
|
],
|
|
{
|
|
signal: null,
|
|
status: 1,
|
|
trim: true,
|
|
stderr: /Cannot import Module \.\/a\.mjs in a cycle\. \(from .*c\.mjs\)/,
|
|
}
|
|
);
|
|
}
|
|
|
|
// b.cjs -> c.mjs -> a.mjs -> b.cjs
|
|
{
|
|
spawnSyncAndAssert(
|
|
process.execPath,
|
|
[
|
|
'--experimental-require-module',
|
|
fixtures.path('es-modules/esm-cjs-esm-esm-cycle/b.cjs'),
|
|
],
|
|
{
|
|
signal: null,
|
|
status: 1,
|
|
trim: true,
|
|
stderr: /Cannot import CommonJS Module \.\/b\.cjs in a cycle\. \(from .*a\.mjs\)/,
|
|
}
|
|
);
|
|
}
|
|
|
|
// c.mjs -> a.mjs -> b.cjs -> c.mjs
|
|
{
|
|
spawnSyncAndAssert(
|
|
process.execPath,
|
|
[
|
|
'--experimental-require-module',
|
|
fixtures.path('es-modules/esm-cjs-esm-esm-cycle/c.mjs'),
|
|
],
|
|
{
|
|
signal: null,
|
|
status: 1,
|
|
trim: true,
|
|
stderr: /Cannot require\(\) ES Module .*c\.mjs in a cycle\. \(from .*b\.cjs\)/,
|
|
}
|
|
);
|
|
}
|