node/test/parallel/test-dgram-udp6-send-default-host.js
Jeremiah Senkpiel 52bae222a3 test: abstract skip functionality to common
The tap skipping output is so prevalent yet obscure in nature that we
ought to move it into it's own function in test/common.js

PR-URL: https://github.com/nodejs/node/pull/6697
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Santiago Gimeno <santiago.gimeno@gmail.com>
Reviewed-By: Fedor Indutny <fedor.indutny@gmail.com>
2016-05-12 16:43:35 -04:00

42 lines
1.0 KiB
JavaScript

'use strict';
const common = require('../common');
const assert = require('assert');
const dgram = require('dgram');
if (!common.hasIPv6) {
common.skip('no IPv6 support');
return;
}
const client = dgram.createSocket('udp6');
const toSend = [Buffer.alloc(256, 'x'),
Buffer.alloc(256, 'y'),
Buffer.alloc(256, 'z'),
'hello'];
const received = [];
client.on('listening', common.mustCall(() => {
client.send(toSend[0], 0, toSend[0].length, common.PORT);
client.send(toSend[1], common.PORT);
client.send([toSend[2]], common.PORT);
client.send(toSend[3], 0, toSend[3].length, common.PORT);
}));
client.on('message', common.mustCall((buf, info) => {
received.push(buf.toString());
if (received.length === toSend.length) {
// The replies may arrive out of order -> sort them before checking.
received.sort();
const expected = toSend.map(String).sort();
assert.deepStrictEqual(received, expected);
client.close();
}
}, toSend.length));
client.bind(common.PORT);