mirror of
https://github.com/zebrajr/node.git
synced 2025-12-06 12:20:27 +01:00
This is a trimmed-down version of 63d4cae009 that avoids
backporting pain for v11.x. The remainder of the original commit
can be cherry-picked later, once other PRs have been backported first.
PR-URL: https://github.com/nodejs/node/pull/25404
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
--- Original commit message ---
Having an experimental feature behind a flag makes change
if we are expecting significant breaking changes to its API.
Since the Worker API has been essentially stable since
its initial introduction, and no noticeable doubt about
possibly not keeping the feature around has been voiced,
removing the flag and thereby reducing the barrier to experimentation,
and consequently receiving feedback on the implementation,
seems like a good idea.
Refs: #25361
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Yuta Hiroto <hello@hiroppy.me>
Reviewed-By: Shingo Inoue <leko.noor@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
Reviewed-By: Tiancheng "Timothy" Gu <timothygu99@gmail.com>
Reviewed-By: Tobias Nießen <tniessen@tnie.de>
Reviewed-By: Masashi Hirano <shisama07@gmail.com>
Reviewed-By: Weijia Wang <starkwang@126.com>
Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
29 lines
938 B
JavaScript
29 lines
938 B
JavaScript
'use strict';
|
|
|
|
const path = require('path');
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
const { Worker } = require('worker_threads');
|
|
|
|
{
|
|
const expectedErr = common.expectsError({
|
|
code: 'ERR_WORKER_UNSUPPORTED_EXTENSION',
|
|
type: TypeError
|
|
}, 3);
|
|
assert.throws(() => { new Worker('/b'); }, expectedErr);
|
|
assert.throws(() => { new Worker('/c.wasm'); }, expectedErr);
|
|
assert.throws(() => { new Worker('/d.txt'); }, expectedErr);
|
|
}
|
|
|
|
{
|
|
const expectedErr = common.expectsError({
|
|
code: 'ERR_WORKER_PATH',
|
|
type: TypeError
|
|
}, 4);
|
|
const existingRelPathNoDot = path.relative('.', __filename);
|
|
assert.throws(() => { new Worker(existingRelPathNoDot); }, expectedErr);
|
|
assert.throws(() => { new Worker('relative_no_dot'); }, expectedErr);
|
|
assert.throws(() => { new Worker('file:///file_url'); }, expectedErr);
|
|
assert.throws(() => { new Worker('https://www.url.com'); }, expectedErr);
|
|
}
|