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.
68 lines
1.6 KiB
68 lines
1.6 KiB
'use strict';
|
|
|
|
require('../common');
|
|
const async_wrap = process.binding('async_wrap');
|
|
const assert = require('assert');
|
|
const crypto = require('crypto');
|
|
const domain = require('domain');
|
|
const spawn = require('child_process').spawn;
|
|
const callbacks = [ 'init', 'pre', 'post', 'destroy' ];
|
|
const toCall = process.argv[2];
|
|
var msgCalled = 0;
|
|
var msgReceived = 0;
|
|
|
|
function init() {
|
|
if (toCall === 'init')
|
|
throw new Error('init');
|
|
}
|
|
function pre() {
|
|
if (toCall === 'pre')
|
|
throw new Error('pre');
|
|
}
|
|
function post() {
|
|
if (toCall === 'post')
|
|
throw new Error('post');
|
|
}
|
|
function destroy() {
|
|
if (toCall === 'destroy')
|
|
throw new Error('destroy');
|
|
}
|
|
|
|
if (typeof process.argv[2] === 'string') {
|
|
async_wrap.setupHooks({ init, pre, post, destroy });
|
|
async_wrap.enable();
|
|
|
|
process.on('uncaughtException', () => assert.ok(0, 'UNREACHABLE'));
|
|
|
|
const d = domain.create();
|
|
d.on('error', () => assert.ok(0, 'UNREACHABLE'));
|
|
d.run(() => {
|
|
// Using randomBytes because timers are not yet supported.
|
|
crypto.randomBytes(0, () => { });
|
|
});
|
|
|
|
} else {
|
|
|
|
process.on('exit', (code) => {
|
|
assert.equal(msgCalled, callbacks.length);
|
|
assert.equal(msgCalled, msgReceived);
|
|
});
|
|
|
|
callbacks.forEach((item) => {
|
|
msgCalled++;
|
|
|
|
const child = spawn(process.execPath, [__filename, item]);
|
|
var errstring = '';
|
|
|
|
child.stderr.on('data', (data) => {
|
|
errstring += data.toString();
|
|
});
|
|
|
|
child.on('close', (code) => {
|
|
if (errstring.includes('Error: ' + item))
|
|
msgReceived++;
|
|
|
|
assert.equal(code, 1, `${item} closed with code ${code}`);
|
|
});
|
|
});
|
|
}
|
|
|