forked from nodejs/node
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
PR-URL: nodejs#56394 Reviewed-By: James M Snell <[email protected]> Reviewed-By: Paolo Insogna <[email protected]> Reviewed-By: Pietro Marchini <[email protected]>
- Loading branch information
1 parent
639db21
commit 76b80b1
Showing
2 changed files
with
93 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
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,67 @@ | ||
'use strict'; | ||
require('../common'); | ||
const assert = require('assert'); | ||
const { Worker } = require('worker_threads'); | ||
const { test } = require('node:test'); | ||
const { once } = require('events'); | ||
|
||
const esmHelloWorld = ` | ||
import worker from 'worker_threads'; | ||
const foo: string = 'Hello, World!'; | ||
worker.parentPort.postMessage(foo); | ||
`; | ||
|
||
const cjsHelloWorld = ` | ||
const { parentPort } = require('worker_threads'); | ||
const foo: string = 'Hello, World!'; | ||
parentPort.postMessage(foo); | ||
`; | ||
|
||
const disableTypeScriptWarningFlag = '--disable-warning=ExperimentalWarning'; | ||
|
||
test('Worker eval module typescript without input-type', async () => { | ||
const w = new Worker(esmHelloWorld, { eval: true, execArgv: [disableTypeScriptWarningFlag] }); | ||
assert.deepStrictEqual(await once(w, 'message'), ['Hello, World!']); | ||
}); | ||
|
||
test('Worker eval module typescript with --input-type=module-typescript', async () => { | ||
const w = new Worker(esmHelloWorld, { eval: true, execArgv: ['--input-type=module-typescript', | ||
disableTypeScriptWarningFlag] }); | ||
assert.deepStrictEqual(await once(w, 'message'), ['Hello, World!']); | ||
}); | ||
|
||
test('Worker eval module typescript with --input-type=commonjs-typescript', async () => { | ||
const w = new Worker(esmHelloWorld, { eval: true, execArgv: ['--input-type=commonjs-typescript', | ||
disableTypeScriptWarningFlag] }); | ||
|
||
const [err] = await once(w, 'error'); | ||
assert.strictEqual(err.name, 'SyntaxError'); | ||
assert.match(err.message, /Cannot use import statement outside a module/); | ||
}); | ||
|
||
test('Worker eval module typescript with --input-type=module', async () => { | ||
const w = new Worker(esmHelloWorld, { eval: true, execArgv: ['--input-type=module', | ||
disableTypeScriptWarningFlag] }); | ||
const [err] = await once(w, 'error'); | ||
assert.strictEqual(err.name, 'SyntaxError'); | ||
assert.match(err.message, /Missing initializer in const declaration/); | ||
}); | ||
|
||
test('Worker eval commonjs typescript without input-type', async () => { | ||
const w = new Worker(cjsHelloWorld, { eval: true, execArgv: [disableTypeScriptWarningFlag] }); | ||
assert.deepStrictEqual(await once(w, 'message'), ['Hello, World!']); | ||
}); | ||
|
||
test('Worker eval commonjs typescript with --input-type=commonjs-typescript', async () => { | ||
const w = new Worker(cjsHelloWorld, { eval: true, execArgv: ['--input-type=commonjs-typescript', | ||
disableTypeScriptWarningFlag] }); | ||
assert.deepStrictEqual(await once(w, 'message'), ['Hello, World!']); | ||
}); | ||
|
||
test('Worker eval commonjs typescript with --input-type=module-typescript', async () => { | ||
const w = new Worker(cjsHelloWorld, { eval: true, execArgv: ['--input-type=module-typescript', | ||
disableTypeScriptWarningFlag] }); | ||
const [err] = await once(w, 'error'); | ||
assert.strictEqual(err.name, 'ReferenceError'); | ||
assert.match(err.message, /require is not defined in ES module scope, you can use import instead/); | ||
}); |