mirror of
https://github.com/nodejs/node.git
synced 2025-05-15 00:52:29 +00:00

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>
25 lines
631 B
JavaScript
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$/);
|