node/test/parallel/test-dgram-close-during-bind.js
cjihrig 79e41cc7b0
dgram: hide underscored Socket properties
dgram sockets have a fair number of exposed private properties.
This commit hides them all behind a single symbol property.

PR-URL: https://github.com/nodejs/node/pull/21923
Reviewed-By: Anatoli Papirovski <apapirovski@mac.com>
Reviewed-By: Wyatt Preul <wpreul@gmail.com>
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
2018-07-28 00:35:08 -04:00

20 lines
634 B
JavaScript

// Flags: --expose-internals
'use strict';
const common = require('../common');
const dgram = require('dgram');
const { kStateSymbol } = require('internal/dgram');
const socket = dgram.createSocket('udp4');
const { handle } = socket[kStateSymbol];
const lookup = handle.lookup;
// Test the scenario where the socket is closed during a bind operation.
handle.bind = common.mustNotCall('bind() should not be called.');
handle.lookup = common.mustCall(function(address, callback) {
socket.close(common.mustCall(() => {
lookup.call(this, address, callback);
}));
});
socket.bind(common.mustNotCall('Socket should not bind.'));