2017-09-25 16:30:09 -07:00
|
|
|
'use strict';
|
|
|
|
const common = require('../common');
|
|
|
|
const assert = require('assert');
|
2019-01-15 14:12:57 -05:00
|
|
|
const { Worker, parentPort } = require('worker_threads');
|
2017-09-25 16:30:09 -07:00
|
|
|
|
2019-01-15 14:12:57 -05:00
|
|
|
// Do not use isMainThread so that this test itself can be run inside a Worker.
|
|
|
|
if (!process.env.HAS_STARTED_WORKER) {
|
|
|
|
process.env.HAS_STARTED_WORKER = 1;
|
|
|
|
process.env.NODE_CHANNEL_FD = 'foo'; // Make worker think it has IPC.
|
2017-09-25 16:30:09 -07:00
|
|
|
const w = new Worker(__filename);
|
|
|
|
w.on('message', common.mustCall((message) => {
|
|
|
|
assert.strictEqual(message, true);
|
|
|
|
}));
|
|
|
|
} else {
|
|
|
|
{
|
|
|
|
const before = process.title;
|
2024-04-19 12:29:53 +02:00
|
|
|
const after = before + ' in worker';
|
|
|
|
process.title = after;
|
|
|
|
assert.strictEqual(process.title, after);
|
2017-09-25 16:30:09 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
const before = process.debugPort;
|
2024-04-19 12:29:53 +02:00
|
|
|
const after = before + 1;
|
|
|
|
process.debugPort = after;
|
|
|
|
assert.strictEqual(process.debugPort, after);
|
2017-09-25 16:30:09 -07:00
|
|
|
}
|
|
|
|
|
2021-01-13 09:35:08 -05:00
|
|
|
{
|
|
|
|
const mask = 0o600;
|
|
|
|
assert.throws(() => { process.umask(mask); }, {
|
|
|
|
code: 'ERR_WORKER_UNSUPPORTED_OPERATION',
|
|
|
|
message: 'Setting process.umask() is not supported in workers'
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2019-01-15 14:12:57 -05:00
|
|
|
const stubs = ['abort', 'chdir', 'send', 'disconnect'];
|
|
|
|
|
|
|
|
if (!common.isWindows) {
|
|
|
|
stubs.push('setuid', 'seteuid', 'setgid',
|
|
|
|
'setegid', 'setgroups', 'initgroups');
|
|
|
|
}
|
|
|
|
|
|
|
|
stubs.forEach((fn) => {
|
|
|
|
assert.strictEqual(process[fn].disabled, true);
|
|
|
|
assert.throws(() => {
|
|
|
|
process[fn]();
|
2021-01-13 09:35:08 -05:00
|
|
|
}, {
|
|
|
|
code: 'ERR_WORKER_UNSUPPORTED_OPERATION',
|
|
|
|
message: `process.${fn}() is not supported in workers`
|
|
|
|
});
|
2019-01-15 14:12:57 -05:00
|
|
|
});
|
|
|
|
|
|
|
|
['channel', 'connected'].forEach((fn) => {
|
|
|
|
assert.throws(() => {
|
2020-11-24 14:11:20 +01:00
|
|
|
process[fn]; // eslint-disable-line no-unused-expressions
|
2021-01-13 09:35:08 -05:00
|
|
|
}, {
|
|
|
|
code: 'ERR_WORKER_UNSUPPORTED_OPERATION',
|
|
|
|
message: `process.${fn} is not supported in workers`
|
|
|
|
});
|
2019-01-15 14:12:57 -05:00
|
|
|
});
|
2017-09-25 16:30:09 -07:00
|
|
|
|
|
|
|
assert.strictEqual('_startProfilerIdleNotifier' in process, false);
|
|
|
|
assert.strictEqual('_stopProfilerIdleNotifier' in process, false);
|
|
|
|
assert.strictEqual('_debugProcess' in process, false);
|
|
|
|
assert.strictEqual('_debugPause' in process, false);
|
|
|
|
assert.strictEqual('_debugEnd' in process, false);
|
|
|
|
|
|
|
|
parentPort.postMessage(true);
|
|
|
|
}
|