mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
de762b71f2
currentId is renamed to executionAsyncId triggerId is renamed to triggerAsyncId AsyncResource.triggerId is renamed to AsyncResource.triggerAsyncId AsyncHooksGetCurrentId is renamed to AsyncHooksGetExecutionAsyncId AsyncHooksGetTriggerId is renamed to AsyncHooksGetTriggerAsyncId PR-URL: https://github.com/nodejs/node/pull/13490 Reviewed-By: Refael Ackermann <refack@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Trevor Norris <trev.norris@gmail.com>
39 lines
925 B
JavaScript
39 lines
925 B
JavaScript
'use strict';
|
|
|
|
const common = require('../common');
|
|
const initHooks = require('./init-hooks');
|
|
const verifyGraph = require('./verify-graph');
|
|
|
|
const net = require('net');
|
|
|
|
common.refreshTmpDir();
|
|
|
|
const hooks = initHooks();
|
|
hooks.enable();
|
|
|
|
net.createServer(function(c) {
|
|
c.end();
|
|
this.close();
|
|
}).listen(common.PIPE, common.mustCall(onlisten));
|
|
|
|
function onlisten() {
|
|
net.connect(common.PIPE, common.mustCall(onconnect));
|
|
}
|
|
|
|
function onconnect() {}
|
|
|
|
process.on('exit', onexit);
|
|
|
|
function onexit() {
|
|
hooks.disable();
|
|
verifyGraph(
|
|
hooks,
|
|
[ { type: 'PIPEWRAP', id: 'pipe:1', triggerAsyncId: null },
|
|
{ type: 'PIPEWRAP', id: 'pipe:2', triggerAsyncId: 'pipe:1' },
|
|
{ type: 'PIPECONNECTWRAP', id: 'pipeconnect:1',
|
|
triggerAsyncId: 'pipe:2' },
|
|
{ type: 'PIPEWRAP', id: 'pipe:3', triggerAsyncId: 'pipe:1' },
|
|
{ type: 'SHUTDOWNWRAP', id: 'shutdown:1', triggerAsyncId: 'pipe:3' } ]
|
|
);
|
|
}
|