mirror of
https://github.com/nodejs/node.git
synced 2025-04-30 23:56:58 +00:00

Async wrap providers tested: - crypto.randomBytes - crypto.pbkdf2 - fs event wrap - fsreqwrap access - fsreqwrap readFile - getaddrinforeq wrap - getnameinforeq wrap - pipe connect wrap - query wrap - pipewrap - processwrap - shutdown wrap - tcpwrap - udpwrap - send wrap - detailed signal wrap - statwatcher - timerwrap via setTimeout - timerwrap via setInterval - for Immediate - http parser request - http parser response - connection via ssl server - tls wrap - write wrap - ttywrap via readstream - ttywrap via wriream - zctx via zlib binding deflate Embedder API: - async-event tests - one test looks at the happy paths - another ensures that in cases of events emitted in an order that doesn't make sense, the order is enforced by async hooks throwing a meaningful error - embedder enforcement tests are split up since async hook stack corruption now the process - therefore we launch a child and check for error output of the offending code Additional tests: - tests that show that we can enable/disable hooks inside their lifetime events - tests that verify the graph of resources triggering the creation of other resources Test Helpers: - init-hooks: - returns one collector instance - when created an async hook is created and the lifetime events are registered to call the appropriate collector functions - the collector also exposes `enable` and `disable` functions which call through to the async hook - hook checks: - checks invocations of life time hooks against the actual invocations that were collected - in some cases like `destroy` a min/max range of invocations can be supplied since in these cases the exact number is non-deterministic - verify graph: - verifies the triggerIds of specific async resources are as expected, i.e. the creation of resources was triggered by the resource we expect - includes a printGraph function to generate easily readable test input for verify graph - both functions prune TickObjects to create less brittle and easier to understand tests PR-URL: https://github.com/nodejs/node/pull/12892 Ref: https://github.com/nodejs/node/pull/11883 Ref: https://github.com/nodejs/node/pull/8531 Reviewed-By: Andreas Madsen <amwebdk@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Sam Roberts <vieuxtech@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Refael Ackermann <refack@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
92 lines
2.8 KiB
JavaScript
92 lines
2.8 KiB
JavaScript
'use strict';
|
|
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
const initHooks = require('./init-hooks');
|
|
const { checkInvocations } = require('./hook-checks');
|
|
const exec = require('child_process').exec;
|
|
|
|
const hooks = initHooks();
|
|
|
|
hooks.enable();
|
|
process.on('SIGUSR2', common.mustCall(onsigusr2, 2));
|
|
|
|
const as = hooks.activitiesOfTypes('SIGNALWRAP');
|
|
assert.strictEqual(as.length, 1,
|
|
'one signal wrap when SIGUSR2 handler is set up');
|
|
const signal1 = as[0];
|
|
assert.strictEqual(signal1.type, 'SIGNALWRAP', 'signal wrap');
|
|
assert.strictEqual(typeof signal1.uid, 'number', 'uid is a number');
|
|
assert.strictEqual(typeof signal1.triggerId, 'number', 'triggerId is a number');
|
|
checkInvocations(signal1, { init: 1 }, 'when SIGUSR2 handler is set up');
|
|
|
|
let count = 0;
|
|
exec('kill -USR2 ' + process.pid);
|
|
|
|
let signal2;
|
|
|
|
function onsigusr2() {
|
|
count++;
|
|
|
|
if (count === 1) {
|
|
// first invocation
|
|
checkInvocations(
|
|
signal1, { init: 1, before: 1 },
|
|
' signal1: when first SIGUSR2 handler is called for the first time');
|
|
|
|
// trigger same signal handler again
|
|
exec('kill -USR2 ' + process.pid);
|
|
} else {
|
|
// second invocation
|
|
checkInvocations(
|
|
signal1, { init: 1, before: 2, after: 1 },
|
|
'signal1: when first SIGUSR2 handler is called for the second time');
|
|
|
|
// install another signal handler
|
|
process.removeAllListeners('SIGUSR2');
|
|
process.on('SIGUSR2', common.mustCall(onsigusr2Again));
|
|
|
|
const as = hooks.activitiesOfTypes('SIGNALWRAP');
|
|
assert.strictEqual(
|
|
as.length, 2,
|
|
'two signal wraps when second SIGUSR2 handler is set up');
|
|
signal2 = as[1];
|
|
assert.strictEqual(signal2.type, 'SIGNALWRAP', 'signal wrap');
|
|
assert.strictEqual(typeof signal2.uid, 'number', 'uid is a number');
|
|
assert.strictEqual(typeof signal2.triggerId, 'number',
|
|
'triggerId is a number');
|
|
|
|
checkInvocations(
|
|
signal1, { init: 1, before: 2, after: 1 },
|
|
'signal1: when second SIGUSR2 handler is set up');
|
|
checkInvocations(
|
|
signal2, { init: 1 },
|
|
'signal2: when second SIGUSR2 handler is setup');
|
|
|
|
exec('kill -USR2 ' + process.pid);
|
|
}
|
|
}
|
|
|
|
function onsigusr2Again() {
|
|
checkInvocations(
|
|
signal1, { init: 1, before: 2, after: 2, destroy: 1 },
|
|
'signal1: when second SIGUSR2 handler is called');
|
|
checkInvocations(
|
|
signal2, { init: 1, before: 1 },
|
|
'signal2: when second SIGUSR2 handler is called');
|
|
}
|
|
|
|
process.on('exit', onexit);
|
|
|
|
function onexit() {
|
|
hooks.disable();
|
|
hooks.sanityCheck('SIGNALWRAP');
|
|
checkInvocations(
|
|
signal1, { init: 1, before: 2, after: 2, destroy: 1 },
|
|
'signal1: when second SIGUSR2 process exits');
|
|
// second signal not destroyed yet since its event listener is still active
|
|
checkInvocations(
|
|
signal2, { init: 1, before: 1, after: 1 },
|
|
'signal2: when second SIGUSR2 process exits');
|
|
}
|