node/test/parallel/test-dgram-sendto.js
abouthiroppy 320108c7b9 test: add dgram.Socket.prototype.sendto's test
Refs: 09ebdf1400/lib/dgram.js (L234)
PR-URL: https://github.com/nodejs/node/pull/10901
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Rich Trott <rtrott@gmail.com>
2017-01-24 09:29:39 +01:00

25 lines
631 B
JavaScript

'use strict';
require('../common');
const assert = require('assert');
const dgram = require('dgram');
const socket = dgram.createSocket('udp4');
const errorMessage =
/^Error: Send takes "offset" and "length" as args 2 and 3$/;
assert.throws(() => {
socket.sendto();
}, errorMessage);
assert.throws(() => {
socket.sendto('buffer', 1, 'offset', 'port', 'address', 'cb');
}, errorMessage);
assert.throws(() => {
socket.sendto('buffer', 'offset', 1, 'port', 'address', 'cb');
}, errorMessage);
assert.throws(() => {
socket.sendto('buffer', 1, 1, 10, false, 'cb');
}, /^Error: udp4 sockets must send to port, address$/);