mirror of
https://github.com/nodejs/node.git
synced 2024-11-30 07:27:22 +01:00
04b4d15b39
Many of the tests use variables to track when callback functions are invoked or events are emitted. These variables are then asserted on process exit. This commit replaces this pattern in straightforward cases with common.mustCall(). This makes the tests easier to reason about, leads to a net reduction in lines of code, and uncovered a few bugs in tests. This commit also replaces some callbacks that should never be called with common.fail(). PR-URL: https://github.com/nodejs/node/pull/7753 Reviewed-By: Wyatt Preul <wpreul@gmail.com> Reviewed-By: Minwoo Jung <jmwsoft@gmail.com> Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
26 lines
670 B
JavaScript
26 lines
670 B
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
var dgram = require('dgram');
|
|
|
|
var source = dgram.createSocket('udp4');
|
|
var target = dgram.createSocket('udp4');
|
|
var messages = 0;
|
|
|
|
target.on('message', common.mustCall(function(buf) {
|
|
if (buf.toString() === 'abc') ++messages;
|
|
if (buf.toString() === 'def') ++messages;
|
|
if (messages === 2) {
|
|
source.close();
|
|
target.close();
|
|
}
|
|
}, 2));
|
|
|
|
target.on('listening', function() {
|
|
// Second .send() call should not throw a bind error.
|
|
const port = this.address().port;
|
|
source.send(Buffer.from('abc'), 0, 3, port, '127.0.0.1');
|
|
source.send(Buffer.from('def'), 0, 3, port, '127.0.0.1');
|
|
});
|
|
|
|
target.bind(0);
|