mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
2d2986ae72
* Make common.skip() exit. Also add common.printSkipMessage() for partial skips. * Don't make needless things before skip PR-URL: https://github.com/nodejs/node/pull/14021 Fixes: https://github.com/nodejs/node/issues/14016 Reviewed-By: Refael Ackermann <refack@gmail.com>
32 lines
845 B
JavaScript
32 lines
845 B
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
if (common.isOSX)
|
|
common.skip('because of 17894467 Apple bug');
|
|
|
|
const assert = require('assert');
|
|
const dgram = require('dgram');
|
|
|
|
const client = dgram.createSocket('udp4');
|
|
|
|
client.bind(0, common.mustCall(function() {
|
|
|
|
client.on('message', common.mustCall(callback));
|
|
|
|
const port = this.address().port;
|
|
const buf = Buffer.alloc(1);
|
|
|
|
const interval = setInterval(function() {
|
|
client.send(buf, 0, 0, port, '127.0.0.1', common.mustCall(callback));
|
|
}, 10);
|
|
|
|
function callback(firstArg) {
|
|
// If client.send() callback, firstArg should be null.
|
|
// If client.on('message') listener, firstArg should be a 0-length buffer.
|
|
if (firstArg instanceof Buffer) {
|
|
assert.strictEqual(firstArg.length, 0);
|
|
clearInterval(interval);
|
|
client.close();
|
|
}
|
|
}
|
|
}));
|