Skip to content

Commit

Permalink
test: add test against unsupported worker features
Browse files Browse the repository at this point in the history
Refs: ayojs/ayo#113
Reviewed-By: Anna Henningsen <anna@addaleax.net>
  • Loading branch information
TimothyGu authored and addaleax committed May 22, 2018
1 parent 338fbec commit f5dd795
Showing 1 changed file with 41 additions and 0 deletions.
41 changes: 41 additions & 0 deletions test/parallel/test-worker-unsupported-things.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
// Flags: --experimental-worker
'use strict';
const common = require('../common');
const assert = require('assert');
const { Worker, isMainThread, postMessage } = require('worker');

if (isMainThread) {
const w = new Worker(__filename);
w.on('message', common.mustCall((message) => {
assert.strictEqual(message, true);
}));
} else {
{
const before = process.title;
process.title += ' in worker';
assert.strictEqual(process.title, before);
}

{
const before = process.debugPort;
process.debugPort++;
assert.strictEqual(process.debugPort, before);
}

assert.strictEqual('abort' in process, false);
assert.strictEqual('chdir' in process, false);
assert.strictEqual('setuid' in process, false);
assert.strictEqual('seteuid' in process, false);
assert.strictEqual('setgid' in process, false);
assert.strictEqual('setegid' in process, false);
assert.strictEqual('setgroups' in process, false);
assert.strictEqual('initgroups' in process, false);

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);

postMessage(true);
}

0 comments on commit f5dd795

Please sign in to comment.