deno.land / std@0.166.0 / node / _tools / test / parallel / test-buffer-includes.js

test-buffer-includes.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
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
// deno-fmt-ignore-file// deno-lint-ignore-file
// Copyright Joyent and Node contributors. All rights reserved. MIT license.// Taken from Node 16.13.0// This file is automatically generated by "node/_tools/setup.ts". Do not modify this file manually
'use strict';const common = require('../common');const assert = require('assert');
const b = Buffer.from('abcdef');const buf_a = Buffer.from('a');const buf_bc = Buffer.from('bc');const buf_f = Buffer.from('f');const buf_z = Buffer.from('z');const buf_empty = Buffer.from('');
assert(b.includes('a'));assert(!b.includes('a', 1));assert(!b.includes('a', -1));assert(!b.includes('a', -4));assert(b.includes('a', -b.length));assert(b.includes('a', NaN));assert(b.includes('a', -Infinity));assert(!b.includes('a', Infinity));assert(b.includes('bc'));assert(!b.includes('bc', 2));assert(!b.includes('bc', -1));assert(!b.includes('bc', -3));assert(b.includes('bc', -5));assert(b.includes('bc', NaN));assert(b.includes('bc', -Infinity));assert(!b.includes('bc', Infinity));assert(b.includes('f'), b.length - 1);assert(!b.includes('z'));assert(b.includes(''));assert(b.includes('', 1));assert(b.includes('', b.length + 1));assert(b.includes('', Infinity));assert(b.includes(buf_a));assert(!b.includes(buf_a, 1));assert(!b.includes(buf_a, -1));assert(!b.includes(buf_a, -4));assert(b.includes(buf_a, -b.length));assert(b.includes(buf_a, NaN));assert(b.includes(buf_a, -Infinity));assert(!b.includes(buf_a, Infinity));assert(b.includes(buf_bc));assert(!b.includes(buf_bc, 2));assert(!b.includes(buf_bc, -1));assert(!b.includes(buf_bc, -3));assert(b.includes(buf_bc, -5));assert(b.includes(buf_bc, NaN));assert(b.includes(buf_bc, -Infinity));assert(!b.includes(buf_bc, Infinity));assert(b.includes(buf_f), b.length - 1);assert(!b.includes(buf_z));assert(b.includes(buf_empty));assert(b.includes(buf_empty, 1));assert(b.includes(buf_empty, b.length + 1));assert(b.includes(buf_empty, Infinity));assert(b.includes(0x61));assert(!b.includes(0x61, 1));assert(!b.includes(0x61, -1));assert(!b.includes(0x61, -4));assert(b.includes(0x61, -b.length));assert(b.includes(0x61, NaN));assert(b.includes(0x61, -Infinity));assert(!b.includes(0x61, Infinity));assert(!b.includes(0x0));
// test offsetsassert(b.includes('d', 2));assert(b.includes('f', 5));assert(b.includes('f', -1));assert(!b.includes('f', 6));
assert(b.includes(Buffer.from('d'), 2));assert(b.includes(Buffer.from('f'), 5));assert(b.includes(Buffer.from('f'), -1));assert(!b.includes(Buffer.from('f'), 6));
// TODO(Soremwar)// Enable again once encoding is taking into account when evaluating indexOf// assert(!Buffer.from('ff').includes(Buffer.from('f'), 1, 'ucs2'));
// test hex encodingassert.strictEqual( Buffer.from(b.toString('hex'), 'hex') .includes('64', 0, 'hex'), true);assert.strictEqual( Buffer.from(b.toString('hex'), 'hex') .includes(Buffer.from('64', 'hex'), 0, 'hex'), true);
// Test base64 encodingassert.strictEqual( Buffer.from(b.toString('base64'), 'base64') .includes('ZA==', 0, 'base64'), true);assert.strictEqual( Buffer.from(b.toString('base64'), 'base64') .includes(Buffer.from('ZA==', 'base64'), 0, 'base64'), true);
// test ascii encodingassert.strictEqual( Buffer.from(b.toString('ascii'), 'ascii') .includes('d', 0, 'ascii'), true);assert.strictEqual( Buffer.from(b.toString('ascii'), 'ascii') .includes(Buffer.from('d', 'ascii'), 0, 'ascii'), true);
// Test latin1 encodingassert.strictEqual( Buffer.from(b.toString('latin1'), 'latin1') .includes('d', 0, 'latin1'), true);assert.strictEqual( Buffer.from(b.toString('latin1'), 'latin1') .includes(Buffer.from('d', 'latin1'), 0, 'latin1'), true);
// Test binary encodingassert.strictEqual( Buffer.from(b.toString('binary'), 'binary') .includes('d', 0, 'binary'), true);assert.strictEqual( Buffer.from(b.toString('binary'), 'binary') .includes(Buffer.from('d', 'binary'), 0, 'binary'), true);

// test ucs2 encodinglet twoByteString = Buffer.from('\u039a\u0391\u03a3\u03a3\u0395', 'ucs2');
assert(twoByteString.includes('\u0395', 4, 'ucs2'));assert(twoByteString.includes('\u03a3', -4, 'ucs2'));assert(twoByteString.includes('\u03a3', -6, 'ucs2'));assert(twoByteString.includes( Buffer.from('\u03a3', 'ucs2'), -6, 'ucs2'));assert(!twoByteString.includes('\u03a3', -2, 'ucs2'));
const mixedByteStringUcs2 = Buffer.from('\u039a\u0391abc\u03a3\u03a3\u0395', 'ucs2');assert(mixedByteStringUcs2.includes('bc', 0, 'ucs2'));assert(mixedByteStringUcs2.includes('\u03a3', 0, 'ucs2'));assert(!mixedByteStringUcs2.includes('\u0396', 0, 'ucs2'));
assert.ok( mixedByteStringUcs2.includes(Buffer.from('bc', 'ucs2'), 0, 'ucs2'));assert.ok( mixedByteStringUcs2.includes(Buffer.from('\u03a3', 'ucs2'), 0, 'ucs2'));assert.ok( !mixedByteStringUcs2.includes(Buffer.from('\u0396', 'ucs2'), 0, 'ucs2'));
twoByteString = Buffer.from('\u039a\u0391\u03a3\u03a3\u0395', 'ucs2');
// Test single char patternassert(twoByteString.includes('\u039a', 0, 'ucs2'));assert(twoByteString.includes('\u0391', 0, 'ucs2'), 'Alpha');assert(twoByteString.includes('\u03a3', 0, 'ucs2'), 'First Sigma');assert(twoByteString.includes('\u03a3', 6, 'ucs2'), 'Second Sigma');assert(twoByteString.includes('\u0395', 0, 'ucs2'), 'Epsilon');assert(!twoByteString.includes('\u0392', 0, 'ucs2'), 'Not beta');
// Test multi-char patternassert(twoByteString.includes('\u039a\u0391', 0, 'ucs2'), 'Lambda Alpha');assert(twoByteString.includes('\u0391\u03a3', 0, 'ucs2'), 'Alpha Sigma');assert(twoByteString.includes('\u03a3\u03a3', 0, 'ucs2'), 'Sigma Sigma');assert(twoByteString.includes('\u03a3\u0395', 0, 'ucs2'), 'Sigma Epsilon');
const mixedByteStringUtf8 = Buffer.from('\u039a\u0391abc\u03a3\u03a3\u0395');assert(mixedByteStringUtf8.includes('bc'));assert(mixedByteStringUtf8.includes('bc', 5));assert(mixedByteStringUtf8.includes('bc', -8));assert(mixedByteStringUtf8.includes('\u03a3'));assert(!mixedByteStringUtf8.includes('\u0396'));

// Test complex string includes algorithms. Only trigger for long strings.// Long string that isn't a simple repeat of a shorter string.let longString = 'A';for (let i = 66; i < 76; i++) { // from 'B' to 'K' longString = longString + String.fromCharCode(i) + longString;}
const longBufferString = Buffer.from(longString);
// Pattern of 15 chars, repeated every 16 chars in longlet pattern = 'ABACABADABACABA';for (let i = 0; i < longBufferString.length - pattern.length; i += 7) { const includes = longBufferString.includes(pattern, i); assert(includes, `Long ABACABA...-string at index ${i}`);}assert(longBufferString.includes('AJABACA'), 'Long AJABACA, First J');assert(longBufferString.includes('AJABACA', 511), 'Long AJABACA, Second J');
pattern = 'JABACABADABACABA';assert(longBufferString.includes(pattern), 'Long JABACABA..., First J');assert(longBufferString.includes(pattern, 512), 'Long JABACABA..., Second J');
// Search for a non-ASCII string in a pure ASCII string.const asciiString = Buffer.from( 'arglebargleglopglyfarglebargleglopglyfarglebargleglopglyf');assert(!asciiString.includes('\x2061'));assert(asciiString.includes('leb', 0));
// Search in string containing many non-ASCII chars.const allCodePoints = [];for (let i = 0; i < 65534; i++) allCodePoints[i] = i;const allCharsString = String.fromCharCode.apply(String, allCodePoints) + String.fromCharCode(65534, 65535);const allCharsBufferUtf8 = Buffer.from(allCharsString);const allCharsBufferUcs2 = Buffer.from(allCharsString, 'ucs2');
// Search for string long enough to trigger complex search with ASCII pattern// and UC16 subject.assert(!allCharsBufferUtf8.includes('notfound'));assert(!allCharsBufferUcs2.includes('notfound'));
// Find substrings in Utf8.let lengths = [1, 3, 15]; // Single char, simple and complex.let indices = [0x5, 0x60, 0x400, 0x680, 0x7ee, 0xFF02, 0x16610, 0x2f77b];for (let lengthIndex = 0; lengthIndex < lengths.length; lengthIndex++) { for (let i = 0; i < indices.length; i++) { const index = indices[i]; let length = lengths[lengthIndex];
if (index + length > 0x7F) { length = 2 * length; }
if (index + length > 0x7FF) { length = 3 * length; }
if (index + length > 0xFFFF) { length = 4 * length; }
const patternBufferUtf8 = allCharsBufferUtf8.slice(index, index + length); assert(index, allCharsBufferUtf8.includes(patternBufferUtf8));
const patternStringUtf8 = patternBufferUtf8.toString(); assert(index, allCharsBufferUtf8.includes(patternStringUtf8)); }}
// Find substrings in Usc2.lengths = [2, 4, 16]; // Single char, simple and complex.indices = [0x5, 0x65, 0x105, 0x205, 0x285, 0x2005, 0x2085, 0xfff0];for (let lengthIndex = 0; lengthIndex < lengths.length; lengthIndex++) { for (let i = 0; i < indices.length; i++) { const index = indices[i] * 2; const length = lengths[lengthIndex];
const patternBufferUcs2 = allCharsBufferUcs2.slice(index, index + length); assert.ok( allCharsBufferUcs2.includes(patternBufferUcs2, 0, 'ucs2'));
const patternStringUcs2 = patternBufferUcs2.toString('ucs2'); assert.ok( allCharsBufferUcs2.includes(patternStringUcs2, 0, 'ucs2')); }}
[ () => { }, {}, [],].forEach((val) => { assert.throws( () => b.includes(val), { code: 'ERR_INVALID_ARG_TYPE', name: 'TypeError', message: 'The "value" argument must be one of type number or string ' + 'or an instance of Buffer or Uint8Array.' + common.invalidArgTypeHelper(val) } );});
// Test truncation of Number arguments to uint8// TODO(Soremwar)// Enable once multi byte number search is available// {// const buf = Buffer.from('this is a test');// assert.ok(buf.includes(0x6973));// assert.ok(buf.includes(0x697320));// assert.ok(buf.includes(0x69732069));// assert.ok(buf.includes(0x697374657374));// assert.ok(buf.includes(0x69737374));// assert.ok(buf.includes(0x69737465));// assert.ok(buf.includes(0x69737465));// assert.ok(buf.includes(-140));// assert.ok(buf.includes(-152));// assert.ok(!buf.includes(0xff));// assert.ok(!buf.includes(0xffff));// }
std

Version Info

Tagged at
a year ago