deno.land / std@0.166.0 / node / _tools / test / parallel / test-fs-read-type.js

test-fs-read-type.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
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
// 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
'use strict';const common = require('../common');const fs = require('fs');const assert = require('assert');const fixtures = require('../common/fixtures');
const filepath = fixtures.path('x.txt');const fd = fs.openSync(filepath, 'r');const expected = 'xyz\n';

// Error must be thrown with stringassert.throws( () => fs.read(fd, expected.length, 0, 'utf-8', common.mustNotCall()), { code: 'ERR_INVALID_ARG_TYPE', name: 'TypeError', message: 'The "buffer" argument must be an instance of Buffer, ' + 'TypedArray, or DataView. Received type number (4)' });
[true, null, undefined, () => {}, {}].forEach((value) => { assert.throws(() => { fs.read(value, Buffer.allocUnsafe(expected.length), 0, expected.length, 0, common.mustNotCall()); }, { code: 'ERR_INVALID_ARG_TYPE', name: 'TypeError' });});
assert.throws(() => { fs.read(fd, Buffer.allocUnsafe(expected.length), -1, expected.length, 0, common.mustNotCall());}, { code: 'ERR_OUT_OF_RANGE', name: 'RangeError',});
assert.throws(() => { fs.read(fd, Buffer.allocUnsafe(expected.length), NaN, expected.length, 0, common.mustNotCall());}, { code: 'ERR_OUT_OF_RANGE', name: 'RangeError', message: 'The value of "offset" is out of range. It must be an integer. ' + 'Received NaN'});
assert.throws(() => { fs.read(fd, Buffer.allocUnsafe(expected.length), 0, -1, 0, common.mustNotCall());}, { code: 'ERR_OUT_OF_RANGE', name: 'RangeError', message: 'The value of "length" is out of range. ' + 'It must be >= 0. Received -1'});
[true, () => {}, {}, ''].forEach((value) => { assert.throws(() => { fs.read(fd, Buffer.allocUnsafe(expected.length), 0, expected.length, value, common.mustNotCall()); }, { code: 'ERR_INVALID_ARG_TYPE', name: 'TypeError' });});
[0.5, 2 ** 53, 2n ** 63n].forEach((value) => { assert.throws(() => { fs.read(fd, Buffer.allocUnsafe(expected.length), 0, expected.length, value, common.mustNotCall()); }, { code: 'ERR_OUT_OF_RANGE', name: 'RangeError' });});
fs.read(fd, Buffer.allocUnsafe(expected.length), 0, expected.length, 0n, common.mustSucceed());
fs.read(fd, Buffer.allocUnsafe(expected.length), 0, expected.length, 2n ** 53n - 1n, common.mustCall((err) => { if (err) { if (common.isIBMi) assert.strictEqual(err.code, 'EOVERFLOW'); else assert.strictEqual(err.code, 'EFBIG'); } }));
assert.throws( () => fs.readSync(fd, expected.length, 0, 'utf-8'), { code: 'ERR_INVALID_ARG_TYPE', name: 'TypeError', message: 'The "buffer" argument must be an instance of Buffer, ' + 'TypedArray, or DataView. Received type number (4)' });
[true, null, undefined, () => {}, {}].forEach((value) => { assert.throws(() => { fs.readSync(value, Buffer.allocUnsafe(expected.length), 0, expected.length, 0); }, { code: 'ERR_INVALID_ARG_TYPE', name: 'TypeError' });});
assert.throws(() => { fs.readSync(fd, Buffer.allocUnsafe(expected.length), -1, expected.length, 0);}, { code: 'ERR_OUT_OF_RANGE', name: 'RangeError',});
assert.throws(() => { fs.readSync(fd, Buffer.allocUnsafe(expected.length), NaN, expected.length, 0);}, { code: 'ERR_OUT_OF_RANGE', name: 'RangeError', message: 'The value of "offset" is out of range. It must be an integer. ' + 'Received NaN'});
assert.throws(() => { fs.readSync(fd, Buffer.allocUnsafe(expected.length), 0, -1, 0);}, { code: 'ERR_OUT_OF_RANGE', name: 'RangeError', message: 'The value of "length" is out of range. ' + 'It must be >= 0. Received -1'});
assert.throws(() => { fs.readSync(fd, Buffer.allocUnsafe(expected.length), 0, expected.length + 1, 0);}, { code: 'ERR_OUT_OF_RANGE', name: 'RangeError', message: 'The value of "length" is out of range. ' + 'It must be <= 4. Received 5'});
[true, () => {}, {}, ''].forEach((value) => { assert.throws(() => { fs.readSync(fd, Buffer.allocUnsafe(expected.length), 0, expected.length, value); }, { code: 'ERR_INVALID_ARG_TYPE', name: 'TypeError' });});
[0.5, 2 ** 53, 2n ** 63n].forEach((value) => { assert.throws(() => { fs.readSync(fd, Buffer.allocUnsafe(expected.length), 0, expected.length, value); }, { code: 'ERR_OUT_OF_RANGE', name: 'RangeError' });});
fs.readSync(fd, Buffer.allocUnsafe(expected.length), 0, expected.length, 0n);
try { fs.readSync(fd, Buffer.allocUnsafe(expected.length), 0, expected.length, 2n ** 53n - 1n);} catch (err) { // On systems where max file size is below 2^53-1, we'd expect a EFBIG error. // This is not using `assert.throws` because the above call should not raise // any error on systems that allows file of that size. if (err.code !== 'EFBIG' && !(common.isIBMi && err.code === 'EOVERFLOW')) throw err;}
std

Version Info

Tagged at
a year ago