2016-11-22 17:13:44 +01:00
|
|
|
'use strict';
|
|
|
|
|
|
|
|
const common = require('../common');
|
|
|
|
const assert = require('assert');
|
|
|
|
const initHooks = require('./init-hooks');
|
|
|
|
const { checkInvocations } = require('./hook-checks');
|
|
|
|
const dgram = require('dgram');
|
|
|
|
|
|
|
|
const hooks = initHooks();
|
|
|
|
|
|
|
|
hooks.enable();
|
|
|
|
let send;
|
|
|
|
|
|
|
|
const sock = dgram
|
|
|
|
.createSocket('udp4')
|
|
|
|
.on('listening', common.mustCall(onlistening))
|
|
|
|
.bind();
|
|
|
|
|
|
|
|
function onlistening() {
|
|
|
|
sock.send(
|
2018-02-24 17:52:14 +01:00
|
|
|
Buffer.alloc(2), 0, 2, sock.address().port,
|
2016-11-22 17:13:44 +01:00
|
|
|
undefined, common.mustCall(onsent));
|
|
|
|
|
2017-06-16 17:49:20 +02:00
|
|
|
// init not called synchronously because dns lookup always wraps
|
2016-11-22 17:13:44 +01:00
|
|
|
// callback in a next tick even if no lookup is needed
|
|
|
|
// TODO (trevnorris) submit patch to fix creation of tick objects and instead
|
|
|
|
// create the send wrap synchronously.
|
2017-05-26 17:53:06 +02:00
|
|
|
assert.strictEqual(hooks.activitiesOfTypes('UDPSENDWRAP').length, 0);
|
2016-11-22 17:13:44 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
function onsent() {
|
|
|
|
const as = hooks.activitiesOfTypes('UDPSENDWRAP');
|
|
|
|
send = as[0];
|
|
|
|
|
2017-05-26 17:53:06 +02:00
|
|
|
assert.strictEqual(as.length, 1);
|
|
|
|
assert.strictEqual(send.type, 'UDPSENDWRAP');
|
|
|
|
assert.strictEqual(typeof send.uid, 'number');
|
2017-06-14 12:39:53 +02:00
|
|
|
assert.strictEqual(typeof send.triggerAsyncId, 'number');
|
2016-11-22 17:13:44 +01:00
|
|
|
checkInvocations(send, { init: 1, before: 1 }, 'when message sent');
|
|
|
|
|
|
|
|
sock.close(common.mustCall(onsockClosed));
|
|
|
|
}
|
|
|
|
|
|
|
|
function onsockClosed() {
|
|
|
|
checkInvocations(send, { init: 1, before: 1, after: 1 }, 'when sock closed');
|
|
|
|
}
|
|
|
|
|
|
|
|
process.on('exit', onexit);
|
|
|
|
|
|
|
|
function onexit() {
|
|
|
|
hooks.disable();
|
|
|
|
hooks.sanityCheck('UDPSENDWRAP');
|
|
|
|
checkInvocations(send, { init: 1, before: 1, after: 1, destroy: 1 },
|
|
|
|
'when process exits');
|
|
|
|
}
|