mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
cf46746b8a
PR-URL: https://github.com/nodejs/node/pull/45549 Reviewed-By: Daeyeon Jeong <daeyeon.dev@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Moshe Atlow <moshe@atlow.co.il> Reviewed-By: Darshan Sen <raisinten@gmail.com> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
40 lines
1000 B
JavaScript
40 lines
1000 B
JavaScript
'use strict';
|
|
|
|
const common = require('../common');
|
|
const initHooks = require('./init-hooks');
|
|
const verifyGraph = require('./verify-graph');
|
|
|
|
const net = require('net');
|
|
|
|
const tmpdir = require('../common/tmpdir');
|
|
tmpdir.refresh();
|
|
|
|
const hooks = initHooks();
|
|
hooks.enable();
|
|
|
|
const server = net.createServer((c) => {
|
|
c.end();
|
|
server.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: 'PIPESERVERWRAP', id: 'pipeserver:1', triggerAsyncId: null },
|
|
{ type: 'PIPEWRAP', id: 'pipe:1', triggerAsyncId: 'pipeserver:1' },
|
|
{ type: 'PIPECONNECTWRAP', id: 'pipeconnect:1',
|
|
triggerAsyncId: 'pipe:1' },
|
|
{ type: 'PIPEWRAP', id: 'pipe:2', triggerAsyncId: 'pipeserver:1' },
|
|
{ type: 'SHUTDOWNWRAP', id: 'shutdown:1', triggerAsyncId: 'pipe:2' } ],
|
|
);
|
|
}
|