mirror of
https://github.com/nodejs/node.git
synced 2025-05-02 17:01:08 +00:00

Covert lib/dgram.js over to using lib/internal/errors.js for generating Errors. See [using-internal-errors.md](https://github.com/nodejs/node/blob/master/doc/guides/using-internal-errors.md) for more details. I have not addressed the cases that use errnoException() and exceptionWithHostPort() helper methods as changing these would require fixing the tests across all of the different files that use them. In addition, these helpers already add a `code` to the Error and we'll have to discuss how that interacts with the `code` used by lib/internal/errors.js. I believe we should convert all users of errnoException and exceptionWithHostPort in a PR dedicated to that conversion. PR-URL: https://github.com/nodejs/node/pull/12926 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Franziska Hinkelmann <franziska.hinkelmann@gmail.com> Reviewed-By: Ruben Bridgewater <ruben.bridgewater@fintura.de>
49 lines
1.2 KiB
JavaScript
49 lines
1.2 KiB
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
const dgram = require('dgram');
|
|
const socket = dgram.createSocket('udp4');
|
|
|
|
const errorMessageOffset =
|
|
/^The "offset" argument must be of type number$/;
|
|
|
|
assert.throws(() => {
|
|
socket.sendto();
|
|
}, common.expectsError({
|
|
code: 'ERR_INVALID_ARG_TYPE',
|
|
type: TypeError,
|
|
message: errorMessageOffset
|
|
}));
|
|
|
|
assert.throws(() => {
|
|
socket.sendto('buffer', 1, 'offset', 'port', 'address', 'cb');
|
|
}, common.expectsError({
|
|
code: 'ERR_INVALID_ARG_TYPE',
|
|
type: TypeError,
|
|
message: /^The "length" argument must be of type number$/
|
|
}));
|
|
|
|
assert.throws(() => {
|
|
socket.sendto('buffer', 'offset', 1, 'port', 'address', 'cb');
|
|
}, common.expectsError({
|
|
code: 'ERR_INVALID_ARG_TYPE',
|
|
type: TypeError,
|
|
message: errorMessageOffset
|
|
}));
|
|
|
|
assert.throws(() => {
|
|
socket.sendto('buffer', 1, 1, 10, false, 'cb');
|
|
}, common.expectsError({
|
|
code: 'ERR_INVALID_ARG_TYPE',
|
|
type: TypeError,
|
|
message: /^The "address" argument must be of type string$/
|
|
}));
|
|
|
|
assert.throws(() => {
|
|
socket.sendto('buffer', 1, 1, false, 'address', 'cb');
|
|
}, common.expectsError({
|
|
code: 'ERR_INVALID_ARG_TYPE',
|
|
type: TypeError,
|
|
message: /^The "port" argument must be of type number$/
|
|
}));
|