mirror of
https://github.com/nodejs/node.git
synced 2025-05-06 11:29:26 +00:00

Use the common.isWindows, common.isFreeBSD and common.isSunOS where possible. Add common.isOSX and common.isLinux. Fix `test-fs-read-file-sync-hostname` as in its current form was not being run anywhere. PR-URL: https://github.com/nodejs/node/pull/7845 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: James M Snell <jasnell@gmail.com>
30 lines
686 B
JavaScript
30 lines
686 B
JavaScript
'use strict';
|
|
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
const dgram = require('dgram');
|
|
|
|
if (common.isOSX) {
|
|
common.skip('because of 17894467 Apple bug');
|
|
return;
|
|
}
|
|
|
|
const client = dgram.createSocket('udp4');
|
|
|
|
const timer = setTimeout(function() {
|
|
throw new Error('Timeout');
|
|
}, common.platformTimeout(200));
|
|
|
|
client.on('message', common.mustCall(function onMessage(buf, info) {
|
|
const expected = Buffer.alloc(0);
|
|
assert.ok(buf.equals(expected), 'message was received correctly');
|
|
clearTimeout(timer);
|
|
client.close();
|
|
}));
|
|
|
|
client.on('listening', function() {
|
|
client.send([], this.address().port, common.localhostIPv4);
|
|
});
|
|
|
|
client.bind(0);
|