deno.land / std@0.166.0 / node / _tools / test / parallel / test-dgram-send-bad-arguments.js

test-dgram-send-bad-arguments.js
نووسراو ببینە
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
// deno-fmt-ignore-file// deno-lint-ignore-file
// Copyright Joyent and Node contributors. All rights reserved. MIT license.// Taken from Node 18.12.0// This file is automatically generated by "node/_tools/setup.ts". Do not modify this file manually
// Copyright Joyent, Inc. and other Node contributors.//// Permission is hereby granted, free of charge, to any person obtaining a// copy of this software and associated documentation files (the// "Software"), to deal in the Software without restriction, including// without limitation the rights to use, copy, modify, merge, publish,// distribute, sublicense, and/or sell copies of the Software, and to permit// persons to whom the Software is furnished to do so, subject to the// following conditions://// The above copyright notice and this permission notice shall be included// in all copies or substantial portions of the Software.//// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE// USE OR OTHER DEALINGS IN THE SOFTWARE.
'use strict';const common = require('../common');const assert = require('assert');const dgram = require('dgram');
const buf = Buffer.from('test');const host = '127.0.0.1';const sock = dgram.createSocket('udp4');
function checkArgs(connected) { // First argument should be a buffer. assert.throws( () => { sock.send(); }, { code: 'ERR_INVALID_ARG_TYPE', name: 'TypeError', message: 'The "buffer" argument must be of type string or an instance ' + 'of Buffer, TypedArray, or DataView. Received undefined' } );
// send(buf, offset, length, port, host) if (connected) { assert.throws( () => { sock.send(buf, 1, 1, -1, host); }, { code: 'ERR_SOCKET_DGRAM_IS_CONNECTED', name: 'Error', message: 'Already connected' } );
assert.throws( () => { sock.send(buf, 1, 1, 0, host); }, { code: 'ERR_SOCKET_DGRAM_IS_CONNECTED', name: 'Error', message: 'Already connected' } );
assert.throws( () => { sock.send(buf, 1, 1, 65536, host); }, { code: 'ERR_SOCKET_DGRAM_IS_CONNECTED', name: 'Error', message: 'Already connected' } );
assert.throws( () => { sock.send(buf, 1234, '127.0.0.1', common.mustNotCall()); }, { code: 'ERR_SOCKET_DGRAM_IS_CONNECTED', name: 'Error', message: 'Already connected' } );
const longArray = [1, 2, 3, 4, 5, 6, 7, 8]; for (const input of ['hello', Buffer.from('hello'), Buffer.from('hello world').subarray(0, 5), Buffer.from('hello world').subarray(4, 9), Buffer.from('hello world').subarray(6), new Uint8Array([1, 2, 3, 4, 5]), new Uint8Array(longArray).subarray(0, 5), new Uint8Array(longArray).subarray(2, 7), new Uint8Array(longArray).subarray(3), new DataView(new ArrayBuffer(5), 0), new DataView(new ArrayBuffer(6), 1), new DataView(new ArrayBuffer(7), 1, 5)]) { assert.throws( () => { sock.send(input, 6, 0); }, { code: 'ERR_BUFFER_OUT_OF_BOUNDS', name: 'RangeError', message: '"offset" is outside of buffer bounds', } );
assert.throws( () => { sock.send(input, 0, 6); }, { code: 'ERR_BUFFER_OUT_OF_BOUNDS', name: 'RangeError', message: '"length" is outside of buffer bounds', } );
assert.throws( () => { sock.send(input, 3, 4); }, { code: 'ERR_BUFFER_OUT_OF_BOUNDS', name: 'RangeError', message: '"length" is outside of buffer bounds', } ); } } else { assert.throws(() => { sock.send(buf, 1, 1, -1, host); }, RangeError); assert.throws(() => { sock.send(buf, 1, 1, 0, host); }, RangeError); assert.throws(() => { sock.send(buf, 1, 1, 65536, host); }, RangeError); }
// send(buf, port, host) assert.throws( () => { sock.send(23, 12345, host); }, { code: 'ERR_INVALID_ARG_TYPE', name: 'TypeError', message: 'The "buffer" argument must be of type string or an instance ' + 'of Buffer, TypedArray, or DataView. Received type number (23)' } );
// send([buf1, ..], port, host) assert.throws( () => { sock.send([buf, 23], 12345, host); }, { code: 'ERR_INVALID_ARG_TYPE', name: 'TypeError', message: 'The "buffer list arguments" argument must be of type string ' + 'or an instance of Buffer, TypedArray, or DataView. ' + 'Received an instance of Array' } );}
checkArgs();sock.connect(12345, common.mustCall(() => { checkArgs(true); sock.close();}));
std

Version Info

Tagged at
a year ago