mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
229dca3dee
Enable running tests inside workers by passing `--worker` to `tools/test.py`. A number of tests are marked as skipped, or have been slightly altered to fit the different environment. PR-URL: https://github.com/nodejs/node/pull/20876 Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Shingo Inoue <leko.noor@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Tiancheng "Timothy" Gu <timothygu99@gmail.com> Reviewed-By: John-David Dalton <john.david.dalton@gmail.com> Reviewed-By: Gus Caplan <me@gus.host>
57 lines
1.8 KiB
JavaScript
57 lines
1.8 KiB
JavaScript
'use strict';
|
|
// Flags: --expose-internals
|
|
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
const spawnSync = require('child_process').spawnSync;
|
|
const async_hooks = require('internal/async_hooks');
|
|
const initHooks = require('./init-hooks');
|
|
|
|
if (!common.isMainThread)
|
|
common.skip('Worker bootstrapping works differently -> different async IDs');
|
|
|
|
switch (process.argv[2]) {
|
|
case 'test_invalid_async_id':
|
|
async_hooks.emitBefore(-2, 1);
|
|
return;
|
|
case 'test_invalid_trigger_id':
|
|
async_hooks.emitBefore(1, -2);
|
|
return;
|
|
}
|
|
assert.ok(!process.argv[2]);
|
|
|
|
|
|
const c1 = spawnSync(process.execPath, [
|
|
'--expose-internals', __filename, 'test_invalid_async_id'
|
|
]);
|
|
assert.strictEqual(
|
|
c1.stderr.toString().split(/[\r\n]+/g)[0],
|
|
'RangeError [ERR_INVALID_ASYNC_ID]: Invalid asyncId value: -2');
|
|
assert.strictEqual(c1.status, 1);
|
|
|
|
const c2 = spawnSync(process.execPath, [
|
|
'--expose-internals', __filename, 'test_invalid_trigger_id'
|
|
]);
|
|
assert.strictEqual(
|
|
c2.stderr.toString().split(/[\r\n]+/g)[0],
|
|
'RangeError [ERR_INVALID_ASYNC_ID]: Invalid triggerAsyncId value: -2');
|
|
assert.strictEqual(c2.status, 1);
|
|
|
|
const expectedId = async_hooks.newAsyncId();
|
|
const expectedTriggerId = async_hooks.newAsyncId();
|
|
const expectedType = 'test_emit_before_after_type';
|
|
|
|
// Verify that if there is no registered hook, then nothing will happen.
|
|
async_hooks.emitBefore(expectedId, expectedTriggerId);
|
|
async_hooks.emitAfter(expectedId);
|
|
|
|
initHooks({
|
|
onbefore: common.mustCall((id) => assert.strictEqual(id, expectedId)),
|
|
onafter: common.mustCall((id) => assert.strictEqual(id, expectedId)),
|
|
allowNoInit: true
|
|
}).enable();
|
|
|
|
async_hooks.emitInit(expectedId, expectedType, expectedTriggerId);
|
|
async_hooks.emitBefore(expectedId, expectedTriggerId);
|
|
async_hooks.emitAfter(expectedId);
|