-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDBIterator.test.ts
413 lines (412 loc) · 14.7 KB
/
DBIterator.test.ts
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
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
import type { KeyPath } from '#types.js';
import os from 'os';
import path from 'path';
import fs from 'fs';
import nodeCrypto from 'crypto';
import nodeUtil from 'util';
import lexi from 'lexicographic-integer';
import Logger, { LogLevel, StreamHandler } from '@matrixai/logger';
import * as testsUtils from './utils.js';
import exampleDbWorker from '#exampleDbWorker.js';
import DB from '#DB.js';
import DBIterator from '#DBIterator.js';
import rocksdbP from '#native/rocksdbP.js';
describe(DBIterator.name, () => {
const logger = new Logger(`${DBIterator.name} test`, LogLevel.WARN, [
new StreamHandler(),
]);
const crypto = {
key: testsUtils.generateKeySync(256),
ops: exampleDbWorker,
};
let dataDir: string;
let db: DB;
beforeEach(async () => {
dataDir = await fs.promises.mkdtemp(
path.join(os.tmpdir(), 'db-iter-test-'),
);
const dbPath = `${dataDir}/db`;
db = await DB.createDB({ dbPath, crypto, logger });
});
afterEach(async () => {
await db.stop();
await fs.promises.rm(dataDir, {
force: true,
recursive: true,
});
});
test('iteration with limit', async () => {
await db.put(Buffer.from([0x01]), Buffer.alloc(0));
await db.put(Buffer.from([0x00, 0x00, 0x00]), Buffer.alloc(0));
await db.put(Buffer.from([0x00, 0x00]), Buffer.alloc(0));
await db.put(Buffer.from([]), Buffer.alloc(0));
let keyPaths: Array<KeyPath> = [];
for await (const [kP] of db.iterator([])) {
keyPaths.push(kP);
}
expect(keyPaths).toHaveLength(4);
keyPaths = [];
for await (const [kP] of db.iterator([], { limit: 1 })) {
keyPaths.push(kP);
}
expect(keyPaths).toHaveLength(1);
keyPaths = [];
for await (const [kP] of db.iterator([], { limit: 2 })) {
keyPaths.push(kP);
}
expect(keyPaths).toHaveLength(2);
// Infinity is not supported, it becomes 0
keyPaths = [];
for await (const [kP] of db.iterator([], { limit: Infinity })) {
keyPaths.push(kP);
}
expect(keyPaths).toHaveLength(0);
// Negative numbers becomes Infinity
keyPaths = [];
for await (const [kP] of db.iterator([], { limit: -1 })) {
keyPaths.push(kP);
}
expect(keyPaths).toHaveLength(4);
});
test('internal db lexicographic iteration order', async () => {
const dbPath = `${dataDir}/leveldb`;
const db = rocksdbP.dbInit();
await rocksdbP.dbOpen(db, dbPath, {});
await rocksdbP.dbPut(db, Buffer.from([0x01]), Buffer.alloc(0), {});
await rocksdbP.dbPut(
db,
Buffer.from([0x00, 0x00, 0x00]),
Buffer.alloc(0),
{},
);
await rocksdbP.dbPut(db, Buffer.from([0x00, 0x00]), Buffer.alloc(0), {});
await rocksdbP.dbPut(db, Buffer.from([]), Buffer.alloc(0), {});
const iterator = rocksdbP.iteratorInit(db, {
keyEncoding: 'buffer',
valueEncoding: 'buffer',
});
const [entries] = await rocksdbP.iteratorNextv(iterator, 4);
await rocksdbP.iteratorClose(iterator);
const keys = entries.map((entry) => entry[0]);
expect(keys).toEqual([
Buffer.from([]),
// Therefore `aa` is earlier than `aaa`
Buffer.from([0x00, 0x00]),
Buffer.from([0x00, 0x00, 0x00]),
// Therefore `aa` is earlier than `z`
Buffer.from([0x01]),
]);
await rocksdbP.dbClose(db);
});
test('lexicographic iteration order', async () => {
await db.put(Buffer.from([0x01]), Buffer.alloc(0));
await db.put(Buffer.from([0x00, 0x00, 0x00]), Buffer.alloc(0));
await db.put(Buffer.from([0x00, 0x00]), Buffer.alloc(0));
await db.put(Buffer.from([]), Buffer.alloc(0));
const keyPaths: Array<KeyPath> = [];
for await (const [kP] of db.iterator([], { values: false })) {
keyPaths.push(kP);
}
expect(keyPaths).toEqual([
// Therefore empty buffer sorts first
[Buffer.from([])],
// Therefore `aa` is earlier than `aaa`
[Buffer.from([0x00, 0x00])],
[Buffer.from([0x00, 0x00, 0x00])],
// Therefore `aa` is earlier than `z`
[Buffer.from([0x01])],
]);
// Check that this matches Buffer.compare order
const keyPaths_ = [...keyPaths];
keyPaths_.sort((kP1: Array<Buffer>, kP2: Array<Buffer>) => {
// Only concatenate the key paths
const k1 = Buffer.concat(kP1);
const k2 = Buffer.concat(kP2);
return Buffer.compare(k1, k2);
});
expect(keyPaths_).toEqual(keyPaths);
});
test('lexicographic iteration order fuzzing', async () => {
const keys: Array<Buffer> = Array.from({ length: 1000 }, () =>
nodeCrypto.randomBytes(testsUtils.getRandomInt(0, 101)),
);
for (const k of keys) {
await db.put(k, 'value');
}
const keyPaths: Array<KeyPath> = [];
for await (const [kP] of db.iterator([], { values: false })) {
keyPaths.push(kP);
}
// Check that this matches Buffer.compare order
const keyPaths_ = [...keyPaths];
keyPaths_.sort((kP1: Array<Buffer>, kP2: Array<Buffer>) => {
// Only concatenate the key paths
const k1 = Buffer.concat(kP1);
const k2 = Buffer.concat(kP2);
return Buffer.compare(k1, k2);
});
expect(keyPaths_).toEqual(keyPaths);
});
test('lexicographic integer iteration order', async () => {
// Using the lexicographic-integer encoding
// Sorted order should be [3, 4, 42, 100]
const keys = [100, 3, 4, 42];
for (const k of keys) {
await db.put(Buffer.from(lexi.pack(k)), 'value');
}
const keysIterated: Array<number> = [];
for await (const [kP] of db.iterator([], { values: false })) {
keysIterated.push(lexi.unpack([...kP[0]]));
}
expect(keys).not.toEqual(keysIterated);
// Numeric sort
expect(keys.sort((a, b) => a - b)).toEqual(keysIterated);
});
test('lexicographic level iteration order', async () => {
// With levels and empty keys, the sorting is more complicated
await db.put([Buffer.from([0x01])], Buffer.alloc(0));
await db.put(
[Buffer.from([0x00, 0x00]), Buffer.from([0x00, 0x00])],
Buffer.alloc(0),
);
await db.put(
[Buffer.from([0x00, 0x00, 0x00]), Buffer.from([0x00])],
Buffer.alloc(0),
);
await db.put(
[Buffer.from([0x00, 0x00]), Buffer.from([0x01])],
Buffer.alloc(0),
);
await db.put(
[Buffer.from([0x00, 0x00, 0x00]), Buffer.from([0x01])],
Buffer.alloc(0),
);
await db.put([Buffer.from([0x01]), Buffer.from([0x00])], Buffer.alloc(0));
await db.put([Buffer.from([0x00]), Buffer.from([0x00])], Buffer.alloc(0));
await db.put([Buffer.from([0x00, 0x00])], Buffer.alloc(0));
await db.put([Buffer.from([0x00, 0x00]), ''], Buffer.alloc(0));
await db.put([Buffer.from([0xff]), ''], Buffer.alloc(0));
await db.put([Buffer.from([0x00]), ''], Buffer.alloc(0));
await db.put([Buffer.from([])], Buffer.alloc(0));
await db.put([Buffer.from([]), Buffer.from([])], Buffer.alloc(0));
await db.put([Buffer.from([0x00])], Buffer.alloc(0));
await db.put(
[Buffer.from([0x00, 0x00]), Buffer.from([0xff]), Buffer.from([])],
Buffer.alloc(0),
);
await db.put(
[Buffer.from([0x00, 0x00]), Buffer.from([]), Buffer.from([])],
Buffer.alloc(0),
);
const keyPaths: Array<KeyPath> = [];
for await (const [kP] of db.iterator([], { values: false })) {
keyPaths.push(kP);
}
/**
* Suppose that:
*
* * `[]` is a key path of degree 0
* * `['a']` is a key path of degree 0
* * `['a', 'b']` is a key path of degree 1
*
* The sorting process goes through 3 steps in-order:
*
* 1. Level parts at each degree are sorted lexicographically
* 2. Key parts with the same level path are sorted lexicographically
* 3. Key parts with degree n are sorted in front of key parts with degree n - 1
*/
expect(keyPaths).toEqual([
/* Begin degree 1 */
[Buffer.from([]), Buffer.from([])],
[Buffer.from([0x00]), Buffer.from([])],
[Buffer.from([0x00]), Buffer.from([0x00])],
/* Begin degree 2 */
[Buffer.from([0x00, 0x00]), Buffer.from([]), Buffer.from([])],
[Buffer.from([0x00, 0x00]), Buffer.from([0xff]), Buffer.from([])],
/* End degree 2 */
[Buffer.from([0x00, 0x00]), Buffer.from([])],
[Buffer.from([0x00, 0x00]), Buffer.from([0x00, 0x00])],
[Buffer.from([0x00, 0x00]), Buffer.from([0x01])],
[Buffer.from([0x00, 0x00, 0x00]), Buffer.from([0x00])],
[Buffer.from([0x00, 0x00, 0x00]), Buffer.from([0x01])],
[Buffer.from([0x01]), Buffer.from([0x00])],
[Buffer.from([0xff]), Buffer.from([])],
/* End degree 1*/
/* Begin degree 0 */
[Buffer.from([])],
[Buffer.from([0x00])],
[Buffer.from([0x00, 0x00])],
[Buffer.from([0x01])],
/* End degree 0 */
]);
});
test('lexicographic level iteration order fuzzing', async () => {
const keyPathsInput: Array<KeyPath> = Array.from({ length: 5000 }, () =>
Array.from({ length: testsUtils.getRandomInt(0, 11) }, () =>
nodeCrypto.randomBytes(testsUtils.getRandomInt(0, 11)),
),
);
for (const kP of keyPathsInput) {
await db.put(kP, 'value');
}
const keyPathsOutput: Array<KeyPath> = [];
for await (const [kP] of db.iterator([], { values: false })) {
keyPathsOutput.push(kP);
}
// Copy the DB sorted key paths
const keyPathsOutput_ = [...keyPathsOutput];
// Shuffle the DB sorted key paths
testsUtils.arrayShuffle(keyPathsOutput_);
keyPathsOutput_.sort((kP1: Array<Buffer>, kP2: Array<Buffer>) => {
const lP1 = kP1.slice(0, kP1.length - 1);
const lP2 = kP2.slice(0, kP2.length - 1);
// Level parts at each degree are sorted lexicographically
for (let i = 0; i < Math.min(lP1.length, lP2.length); i++) {
const comp = Buffer.compare(lP1[i], lP2[i]);
if (comp !== 0) return comp;
// Continue to the next level part
}
// Key parts with the same level path are sorted lexicographically
if (
lP1.length === lP2.length &&
Buffer.concat(lP1).equals(Buffer.concat(lP2))
) {
return Buffer.compare(kP1[kP1.length - 1], kP2[kP2.length - 1]);
}
// Key parts with degree n are sorted in front of key parts with degree n -1
if (kP1.length > kP2.length) {
return -1;
} else if (kP2.length > kP1.length) {
return 1;
} else {
// This cannot happen
throw new Error();
}
});
for (let i = 0; i < keyPathsOutput_.length; i++) {
try {
expect(keyPathsOutput_[i]).toEqual(keyPathsOutput[i]);
} catch (e) {
// eslint-disable-next-line no-console
console.error(
'mismatch: %s vs %s',
nodeUtil.inspect({
sort: keyPathsOutput_[i],
sortBefore: keyPathsOutput_.slice(Math.max(0, i - 5), i),
sortAfter: keyPathsOutput_.slice(i + 1, i + 1 + 5),
}),
nodeUtil.inspect({
db: keyPathsOutput[i],
dbBefore: keyPathsOutput.slice(Math.max(0, i - 5), i),
dbAfter: keyPathsOutput.slice(i + 1, i + 1 + 5),
}),
);
throw e;
}
}
});
test('iterating sublevels', async () => {
await db.put('a', 'value0');
await db.put('b', 'value1');
await db.put(['level1', 'a'], 'value0');
await db.put(['level1', 'b'], 'value1');
await db.put(['level1', 'level2', 'a'], 'value0');
await db.put(['level1', 'level2', 'b'], 'value1');
let results: Array<[KeyPath, string]>;
results = [];
for await (const [kP, v] of db.iterator<string>([], {
keyAsBuffer: false,
valueAsBuffer: false,
})) {
results.push([kP, v]);
}
expect(results).toStrictEqual([
[['level1', 'level2', 'a'], 'value0'],
[['level1', 'level2', 'b'], 'value1'],
[['level1', 'a'], 'value0'],
[['level1', 'b'], 'value1'],
[['a'], 'value0'],
[['b'], 'value1'],
]);
results = [];
for await (const [kP, v] of db.iterator<string>(['level1'], {
keyAsBuffer: false,
valueAsBuffer: false,
})) {
results.push([kP, v]);
}
expect(results).toStrictEqual([
[['level2', 'a'], 'value0'],
[['level2', 'b'], 'value1'],
[['a'], 'value0'],
[['b'], 'value1'],
]);
});
test('iterating sublevels with range', async () => {
// Note that `'a'` is `0x61`
await db.put(['level', Buffer.from([0x30, 0x34]), 'a'], 'value');
await db.put(['level', Buffer.from([0x30, 0x35]), 'a', 'b'], 'value');
// Suppose we only wanted these 2 entries
await db.put(['level', Buffer.from([0x30, 0x35]), ''], 'value');
await db.put(['level', Buffer.from([0x30, 0x35]), 'a'], 'value');
// And none of these entries
await db.put(['level', Buffer.from([0x30, 0x36]), 'a', 'b'], 'value');
await db.put(['level', Buffer.from([0x30, 0x36]), 'a'], 'value');
await db.put(['level', Buffer.from([0x30, 0x34])], 'value');
let keyPaths: Array<KeyPath> = [];
// Here we are iterating until the sublevel of `0x30 0x35`
// We must use a key path for the `lte`
// It cannot just be `Buffer.from([0x30, 0x35])`
// Notice that this will not cover the key of `0x30 0x34`
// That's because of rule 3
// 3. Key parts with degree n are sorted in front of key parts with degree n - 1
for await (const [kP] of db.iterator(['level'], {
lte: [Buffer.from([0x30, 0x35]), ''],
values: false,
})) {
keyPaths.push(kP);
}
expect(keyPaths).toStrictEqual([
[Buffer.from([0x30, 0x34]), Buffer.from([0x61])],
[Buffer.from([0x30, 0x35]), Buffer.from([0x61]), Buffer.from([0x62])],
[Buffer.from([0x30, 0x35]), Buffer.from([])],
]);
// If we only wanted entries under the sublevel of `0x30 0x35`
// this would not work because of rule 3
// The deeper level is in front
keyPaths = [];
for await (const [kP] of db.iterator(['level'], {
gte: [Buffer.from([0x30, 0x35]), ''],
lt: [Buffer.from([0x30, 0x36]), ''],
})) {
keyPaths.push(kP);
}
expect(keyPaths).toStrictEqual([
[Buffer.from([0x30, 0x35]), Buffer.from([])],
[Buffer.from([0x30, 0x35]), Buffer.from([0x61])],
[Buffer.from([0x30, 0x36]), Buffer.from([0x61]), Buffer.from([0x62])],
]);
// To actually do it, we need to specify as part of the level path parameter
keyPaths = [];
for await (const [kP] of db.iterator([
'level',
Buffer.from([0x30, 0x35]),
])) {
keyPaths.push(kP);
}
expect(keyPaths).toStrictEqual([
[Buffer.from([0x61]), Buffer.from([0x62])],
[Buffer.from([])],
[Buffer.from([0x61])],
]);
// However the deeper level is still there
// But because of rule 3, we can do this instead
keyPaths = [];
for await (const [kP] of db.iterator(['level', Buffer.from([0x30, 0x35])], {
gte: '',
})) {
keyPaths.push(kP);
}
expect(keyPaths).toStrictEqual([[Buffer.from([])], [Buffer.from([0x61])]]);
});
});