-
Notifications
You must be signed in to change notification settings - Fork 29.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
291f9cf
commit cedf437
Showing
12 changed files
with
172 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,160 @@ | ||
import { spawnPromisified } from '../common/index.mjs'; | ||
import * as fixtures from '../common/fixtures.mjs'; | ||
import { spawn } from 'node:child_process'; | ||
import { describe, it } from 'node:test'; | ||
import { strictEqual, match } from 'node:assert'; | ||
|
||
describe('--experimental-detect-module', { concurrency: true }, () => { | ||
describe('string input', { concurrency: true }, () => { | ||
it('permits ESM syntax in --eval input without requiring --input-type=module', async () => { | ||
const { stdout, stderr, code, signal } = await spawnPromisified(process.execPath, [ | ||
'--experimental-detect-module', | ||
'--eval', | ||
'import { version } from "node:process"; console.log(version);', | ||
]); | ||
|
||
strictEqual(stderr, ''); | ||
strictEqual(stdout, `${process.version}\n`); | ||
strictEqual(code, 0); | ||
strictEqual(signal, null); | ||
}); | ||
|
||
// ESM is unsupported for --print via --input-type=module | ||
|
||
it('permits ESM syntax in STDIN input without requiring --input-type=module', async () => { | ||
const child = spawn(process.execPath, [ | ||
'--experimental-detect-module', | ||
]); | ||
child.stdin.end('console.log(typeof import.meta.resolve)'); | ||
|
||
match((await child.stdout.toArray()).toString(), /^function\r?\n$/); | ||
}); | ||
|
||
it('should be overridden by --input-type', async () => { | ||
const { code, signal, stdout, stderr } = await spawnPromisified(process.execPath, [ | ||
'--experimental-detect-module', | ||
'--input-type=commonjs', | ||
'--eval', | ||
'import.meta.url', | ||
]); | ||
|
||
match(stderr, /SyntaxError: Cannot use 'import\.meta' outside a module/); | ||
strictEqual(stdout, ''); | ||
strictEqual(code, 1); | ||
strictEqual(signal, null); | ||
}); | ||
|
||
it('should be overridden by --experimental-default-type', async () => { | ||
const { code, signal, stdout, stderr } = await spawnPromisified(process.execPath, [ | ||
'--experimental-detect-module', | ||
'--experimental-default-type=commonjs', | ||
'--eval', | ||
'import.meta.url', | ||
]); | ||
|
||
match(stderr, /SyntaxError: Cannot use 'import\.meta' outside a module/); | ||
strictEqual(stdout, ''); | ||
strictEqual(code, 1); | ||
strictEqual(signal, null); | ||
}); | ||
}); | ||
|
||
describe('file input in a typeless package', { concurrency: true }, () => { | ||
for (const { testName, entryPath } of [ | ||
{ | ||
testName: 'permits CommonJS syntax in a .js entry point', | ||
entryPath: fixtures.path('es-modules/package-without-type/commonjs.js'), | ||
}, | ||
{ | ||
testName: 'permits ESM syntax in a .js entry point', | ||
entryPath: fixtures.path('es-modules/package-without-type/module.js'), | ||
}, | ||
{ | ||
testName: 'permits CommonJS syntax in a .js file imported by a CommonJS entry point', | ||
entryPath: fixtures.path('es-modules/package-without-type/imports-commonjs.cjs'), | ||
}, | ||
{ | ||
testName: 'permits ESM syntax in a .js file imported by a CommonJS entry point', | ||
entryPath: fixtures.path('es-modules/package-without-type/imports-esm.js'), | ||
}, | ||
{ | ||
testName: 'permits CommonJS syntax in a .js file imported by an ESM entry point', | ||
entryPath: fixtures.path('es-modules/package-without-type/imports-commonjs.mjs'), | ||
}, | ||
{ | ||
testName: 'permits ESM syntax in a .js file imported by an ESM entry point', | ||
entryPath: fixtures.path('es-modules/package-without-type/imports-esm.mjs'), | ||
}, | ||
]) { | ||
it(testName, async () => { | ||
const { stdout, stderr, code, signal } = await spawnPromisified(process.execPath, [ | ||
'--experimental-detect-module', | ||
entryPath, | ||
]); | ||
|
||
strictEqual(stderr, ''); | ||
strictEqual(stdout, 'executed\n'); | ||
strictEqual(code, 0); | ||
strictEqual(signal, null); | ||
}); | ||
} | ||
}); | ||
|
||
describe('file input in a "type": "commonjs" package', { concurrency: true }, () => { | ||
for (const { testName, entryPath } of [ | ||
{ | ||
testName: 'disallows ESM syntax in a .js entry point', | ||
entryPath: fixtures.path('es-modules/package-type-commonjs/module.js'), | ||
}, | ||
{ | ||
testName: 'disallows ESM syntax in a .js file imported by a CommonJS entry point', | ||
entryPath: fixtures.path('es-modules/package-type-commonjs/imports-esm.js'), | ||
}, | ||
{ | ||
testName: 'disallows ESM syntax in a .js file imported by an ESM entry point', | ||
entryPath: fixtures.path('es-modules/package-type-commonjs/imports-esm.mjs'), | ||
}, | ||
]) { | ||
it(testName, async () => { | ||
const { stdout, stderr, code, signal } = await spawnPromisified(process.execPath, [ | ||
'--experimental-detect-module', | ||
entryPath, | ||
]); | ||
|
||
match(stderr, /SyntaxError: Unexpected token 'export'/); | ||
strictEqual(stdout, ''); | ||
strictEqual(code, 1); | ||
strictEqual(signal, null); | ||
}); | ||
} | ||
}); | ||
|
||
describe('file input in a "type": "module" package', { concurrency: true }, () => { | ||
for (const { testName, entryPath } of [ | ||
{ | ||
testName: 'disallows CommonJS syntax in a .js entry point', | ||
entryPath: fixtures.path('es-modules/package-type-module/cjs.js'), | ||
}, | ||
{ | ||
testName: 'disallows CommonJS syntax in a .js file imported by a CommonJS entry point', | ||
entryPath: fixtures.path('es-modules/package-type-module/imports-commonjs.cjs'), | ||
}, | ||
{ | ||
testName: 'disallows CommonJS syntax in a .js file imported by an ESM entry point', | ||
entryPath: fixtures.path('es-modules/package-type-module/imports-commonjs.mjs'), | ||
}, | ||
]) { | ||
it(testName, async () => { | ||
const { stdout, stderr, code, signal } = await spawnPromisified(process.execPath, [ | ||
'--experimental-detect-module', | ||
entryPath, | ||
]); | ||
|
||
match(stderr, /ReferenceError: module is not defined in ES module scope/); | ||
strictEqual(stdout, ''); | ||
strictEqual(code, 1); | ||
strictEqual(signal, null); | ||
}); | ||
} | ||
}); | ||
}); |
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 @@ | ||
import('./module.js'); |
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 @@ | ||
import './module.js'; |
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,2 @@ | ||
export default 'module'; | ||
console.log('executed'); |
1 change: 1 addition & 0 deletions
1
test/fixtures/es-modules/package-type-module/imports-commonjs.cjs
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 @@ | ||
import('./cjs.js'); |
1 change: 1 addition & 0 deletions
1
test/fixtures/es-modules/package-type-module/imports-commonjs.mjs
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 @@ | ||
import './cjs.js'; |
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,2 @@ | ||
module.exports = 'cjs'; | ||
console.log('executed'); |
1 change: 1 addition & 0 deletions
1
test/fixtures/es-modules/package-without-type/imports-commonjs.cjs
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 @@ | ||
import('./commonjs.js'); |
1 change: 1 addition & 0 deletions
1
test/fixtures/es-modules/package-without-type/imports-commonjs.mjs
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 @@ | ||
import './commonjs.js'; |
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 @@ | ||
import('./module.js'); |
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 @@ | ||
import './module.js'; |
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 |
---|---|---|
@@ -1,3 +1,2 @@ | ||
// This file can be run or imported only if `--experimental-default-type=module` is set. | ||
export default 'module'; | ||
console.log('executed'); |