Skip to content

Commit baec432

Browse files
cjihrigMylesBorins
authored andcommitted
test: add coverage for string array dgram send()
This commit adds code coverage for dgram's Socket#send() where the data is an array of strings. PR-URL: #11247 Reviewed-By: Yuta Hiroto <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Michael Dawson <[email protected]>
1 parent 1cd526c commit baec432

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
'use strict';
2+
const common = require('../common');
3+
const assert = require('assert');
4+
const dgram = require('dgram');
5+
const socket = dgram.createSocket('udp4');
6+
const data = ['foo', 'bar', 'baz'];
7+
8+
socket.on('message', common.mustCall((msg, rinfo) => {
9+
socket.close();
10+
assert.deepStrictEqual(msg.toString(), data.join(''));
11+
}));
12+
13+
socket.bind(() => socket.send(data, socket.address().port, 'localhost'));

0 commit comments

Comments
 (0)