test: cover dgram socket close during bind case

This commit tests the scenario where a dgram socket closes
during a call to Socket#bind().

PR-URL: https://github.com/nodejs/node/pull/11383
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Michaël Zasso <targos@protonmail.com>
This commit is contained in:
cjihrig 2017-02-14 14:07:39 -05:00
parent 642eec162d
commit a196895ecc

View File

@ -0,0 +1,16 @@
'use strict';
const common = require('../common');
const dgram = require('dgram');
const socket = dgram.createSocket('udp4');
const lookup = socket._handle.lookup;
// Test the scenario where the socket is closed during a bind operation.
socket._handle.bind = common.mustNotCall('bind() should not be called.');
socket._handle.lookup = common.mustCall(function(address, callback) {
socket.close(common.mustCall(() => {
lookup.call(this, address, callback);
}));
});
socket.bind(common.mustNotCall('Socket should not bind.'));