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.
37 lines
932 B
37 lines
932 B
'use strict';
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
const dgram = require('dgram');
|
|
const mockError = new Error('mock DNS error');
|
|
|
|
function getSocket(callback) {
|
|
const socket = dgram.createSocket('udp4');
|
|
|
|
socket.on('message', common.mustNotCall('Should not receive any messages.'));
|
|
socket.bind(common.mustCall(() => {
|
|
socket._handle.lookup = function(address, callback) {
|
|
process.nextTick(callback, mockError);
|
|
};
|
|
|
|
callback(socket);
|
|
}));
|
|
return socket;
|
|
}
|
|
|
|
getSocket((socket) => {
|
|
socket.on('error', common.mustCall((err) => {
|
|
socket.close();
|
|
assert.strictEqual(err, mockError);
|
|
}));
|
|
|
|
socket.send('foo', socket.address().port, 'localhost');
|
|
});
|
|
|
|
getSocket((socket) => {
|
|
const callback = common.mustCall((err) => {
|
|
socket.close();
|
|
assert.strictEqual(err, mockError);
|
|
});
|
|
|
|
socket.send('foo', socket.address().port, 'localhost', callback);
|
|
});
|
|
|