mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
892 B
38 lines
892 B
8 years ago
|
'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', triggerId: null },
|
||
|
{ type: 'PIPEWRAP', id: 'pipe:2', triggerId: 'pipe:1' },
|
||
|
{ type: 'PIPECONNECTWRAP', id: 'pipeconnect:1', triggerId: 'pipe:2' },
|
||
|
{ type: 'PIPEWRAP', id: 'pipe:3', triggerId: 'pipe:1' },
|
||
|
{ type: 'SHUTDOWNWRAP', id: 'shutdown:1', triggerId: 'pipe:3' } ]
|
||
|
);
|
||
|
}
|