This repository has been archived by the owner on Dec 2, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathtest.js
484 lines (377 loc) · 10.9 KB
/
test.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
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
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
'use strict'
const test = require('tape')
const suite = require('abstract-leveldown/test')
const concat = require('level-concat-iterator')
const memdown = require('.')
const ltgt = require('ltgt')
const { Buffer } = require('buffer')
const noop = function () { }
const testCommon = suite.common({
test: test,
factory: function () {
return memdown()
},
// Opt-in to new tests
clear: true,
getMany: true,
// Opt-out of unsupported features
createIfMissing: false,
errorIfExists: false
})
// Test abstract-leveldown compliance
suite(testCommon)
// Additional tests for this implementation
test('unsorted entry, sorted iterator', function (t) {
const db = testCommon.factory()
db.open(function (err) {
t.ifError(err, 'no open error')
db.put('f', 'F', noop)
db.put('a', 'A', noop)
db.put('c', 'C', noop)
db.put('e', 'E', noop)
db.batch(
[
{ type: 'put', key: 'd', value: 'D' },
{ type: 'put', key: 'b', value: 'B' },
{ type: 'put', key: 'g', value: 'G' }
],
noop
)
concat(
db.iterator({ keyAsBuffer: false, valueAsBuffer: false }),
function (err, data) {
t.notOk(err, 'no error')
t.equal(data.length, 7, 'correct number of entries')
const expected = [
{ key: 'a', value: 'A' },
{ key: 'b', value: 'B' },
{ key: 'c', value: 'C' },
{ key: 'd', value: 'D' },
{ key: 'e', value: 'E' },
{ key: 'f', value: 'F' },
{ key: 'g', value: 'G' }
]
t.deepEqual(data, expected)
t.end()
}
)
})
})
test('reading while putting', function (t) {
const db = testCommon.factory()
db.open(function (err) {
t.ifError(err, 'no open error')
db.put('f', 'F', noop)
db.put('c', 'C', noop)
db.put('e', 'E', noop)
const iterator = db.iterator({ keyAsBuffer: false, valueAsBuffer: false })
iterator.next(function (err, key, value) {
t.ifError(err, 'no next error')
t.equal(key, 'c')
t.equal(value, 'C')
db.put('a', 'A', noop)
iterator.next(function (err, key, value) {
t.ifError(err, 'no next error')
t.equal(key, 'e')
t.equal(value, 'E')
t.end()
})
})
})
})
test('reading while deleting', function (t) {
const db = testCommon.factory()
db.open(function (err) {
t.ifError(err, 'no open error')
db.put('f', 'F', noop)
db.put('a', 'A', noop)
db.put('c', 'C', noop)
db.put('e', 'E', noop)
const iterator = db.iterator({ keyAsBuffer: false, valueAsBuffer: false })
iterator.next(function (err, key, value) {
t.ifError(err, 'no next error')
t.equal(key, 'a')
t.equal(value, 'A')
db.del('a', noop)
iterator.next(function (err, key, value) {
t.ifError(err, 'no next error')
t.equal(key, 'c')
t.equal(value, 'C')
t.end()
})
})
})
})
test('reverse ranges', function (t) {
const db = testCommon.factory()
db.open(function (err) {
t.ifError(err, 'no open error')
db.put('a', 'A', noop)
db.put('c', 'C', noop)
const iterator = db.iterator({
keyAsBuffer: false,
valueAsBuffer: false,
lte: 'b',
reverse: true
})
iterator.next(function (err, key, value) {
t.ifError(err, 'no next error')
t.equal(key, 'a')
t.equal(value, 'A')
t.end()
})
})
})
test('delete while iterating', function (t) {
const db = testCommon.factory()
db.open(function (err) {
t.ifError(err, 'no open error')
db.put('a', 'A', noop)
db.put('b', 'B', noop)
db.put('c', 'C', noop)
const iterator = db.iterator({
keyAsBuffer: false,
valueAsBuffer: false,
gte: 'a'
})
iterator.next(function (err, key, value) {
t.ifError(err, 'no next error')
t.equal(key, 'a')
t.equal(value, 'A')
db.del('b', function (err) {
t.notOk(err, 'no error')
iterator.next(function (err, key, value) {
t.notOk(err, 'no error')
t.equals(key, 'b')
t.equal(value, 'B')
t.end()
})
})
})
})
})
test('iterator with byte range', function (t) {
const db = testCommon.factory()
db.open(function (err) {
t.ifError(err, 'no open error')
db.put(Buffer.from('a0', 'hex'), 'A', function (err) {
t.ifError(err)
const iterator = db.iterator({ valueAsBuffer: false, lt: Buffer.from('ff', 'hex') })
iterator.next(function (err, key, value) {
t.notOk(err, 'no error')
t.equal(key.toString('hex'), 'a0')
t.equal(value, 'A')
t.end()
})
})
})
})
test('iterator does not clone buffers', function (t) {
t.plan(4)
const db = testCommon.factory()
const buf = Buffer.from('a')
db.open(function (err) {
t.ifError(err, 'no open error')
db.put(buf, buf, noop)
concat(db.iterator(), function (err, entries) {
t.ifError(err, 'no iterator error')
t.ok(entries[0].key === buf, 'key is same buffer')
t.ok(entries[0].value === buf, 'value is same buffer')
})
})
})
test('iterator stringifies buffer input', function (t) {
t.plan(4)
const db = testCommon.factory()
db.open(function (err) {
t.ifError(err, 'no open error')
db.put(1, 2, noop)
concat(db.iterator(), function (err, entries) {
t.ifError(err, 'no iterator error')
t.same(entries[0].key, Buffer.from('1'), 'key is stringified')
t.same(entries[0].value, Buffer.from('2'), 'value is stringified')
})
})
})
test('backing rbtree is buffer-aware', function (t) {
const db = testCommon.factory()
db.open(function (err) {
t.ifError(err, 'no open error')
const one = Buffer.from('80', 'hex')
const two = Buffer.from('c0', 'hex')
t.ok(two.toString() === one.toString(), 'would be equal when not buffer-aware')
t.ok(ltgt.compare(two, one) > 0, 'but greater when buffer-aware')
db.put(one, 'one', function (err) {
t.notOk(err, 'no error')
db.get(one, { asBuffer: false }, function (err, value) {
t.notOk(err, 'no error')
t.equal(value, 'one', 'value one ok')
db.put(two, 'two', function (err) {
t.notOk(err, 'no error')
db.get(one, { asBuffer: false }, function (err, value) {
t.notOk(err, 'no error')
t.equal(value, 'one', 'value one is the same')
t.end()
})
})
})
})
})
})
test('empty value in batch', function (t) {
t.plan(6)
const db = testCommon.factory()
db.open(function (err) {
t.ifError(err, 'no open error')
db.batch([
{
type: 'put',
key: 'empty-string',
value: ''
},
{
type: 'put',
key: 'empty-buffer',
value: Buffer.alloc(0)
}
], function (err) {
t.ifError(err, 'no error')
db.get('empty-string', function (err, val) {
t.ifError(err, 'no error')
t.same(val, Buffer.alloc(0), 'empty string')
})
db.get('empty-buffer', function (err, val) {
t.ifError(err, 'no error')
t.same(val, Buffer.alloc(0), 'empty buffer')
})
})
})
})
test('empty buffer key in batch', function (t) {
const db = testCommon.factory()
db.open(function (err) {
t.ifError(err, 'no open error')
db.batch([{
type: 'put',
key: Buffer.alloc(0),
value: ''
}], function (err) {
t.ok(err, 'got an error')
t.end()
})
})
})
test('buffer key in batch', function (t) {
const db = testCommon.factory()
db.open(function (err) {
t.ifError(err, 'no open error')
db.batch([{
type: 'put',
key: Buffer.from('foo', 'utf8'),
value: 'val1'
}], function (err) {
t.ifError(err, 'no error')
db.get(Buffer.from('foo', 'utf8'), { asBuffer: false }, function (err, val) {
t.ifError(err, 'no error')
t.same(val, 'val1')
t.end()
})
})
})
})
test('put multiple times', function (t) {
t.plan(5)
const db = testCommon.factory()
db.open(function (err) {
t.ifError(err, 'no open error')
db.put('key', 'val', function (err) {
t.ifError(err, 'no error')
db.put('key', 'val2', function (err) {
t.ifError(err, 'no error')
db.get('key', { asBuffer: false }, function (err, val) {
t.ifError(err, 'no error')
t.same(val, 'val2')
})
})
})
})
})
test('put as string, get as buffer and vice versa', function (t) {
t.plan(7)
const db = testCommon.factory()
db.open(function (err) {
t.ifError(err, 'no open error')
db.put('a', 'a', function (err) {
t.ifError(err, 'no put error')
db.get(Buffer.from('a'), { asBuffer: true }, function (err, value) {
t.ifError(err, 'no get error')
t.same(value, Buffer.from('a'), 'got value')
})
})
db.put(Buffer.from('b'), Buffer.from('b'), function (err) {
t.ifError(err, 'no put error')
db.get('b', { asBuffer: false }, function (err, value) {
t.ifError(err, 'no get error')
t.is(value, 'b', 'got value')
})
})
})
})
test('put as string, iterate as buffer', function (t) {
t.plan(4)
const db = testCommon.factory()
db.open(function (err) {
t.ifError(err, 'no open error')
db.put('a', 'a', function (err) {
t.ifError(err, 'no put error')
concat(db.iterator({ keyAsBuffer: true, valueAsBuffer: true }), function (err, entries) {
t.ifError(err, 'no concat error')
t.same(entries, [{ key: Buffer.from('a'), value: Buffer.from('a') }])
})
})
})
})
test('put as buffer, iterate as string', function (t) {
t.plan(4)
const db = testCommon.factory()
db.open(function (err) {
t.ifError(err, 'no open error')
db.put(Buffer.from('a'), Buffer.from('a'), function (err) {
t.ifError(err, 'no put error')
concat(db.iterator({ keyAsBuffer: false, valueAsBuffer: false }), function (err, entries) {
t.ifError(err, 'no concat error')
t.same(entries, [{ key: 'a', value: 'a' }])
})
})
})
})
test('number keys', function (t) {
t.plan(5)
const db = testCommon.factory()
const numbers = [-Infinity, 0, 12, 2, +Infinity]
const strings = numbers.map(String)
const buffers = numbers.map(stringBuffer)
db.open(function (err) {
t.ifError(err, 'no open error')
db.batch(numbers.map(putKey), noop)
const iterator1 = db.iterator({ keyAsBuffer: false })
const iterator2 = db.iterator({ keyAsBuffer: true })
concat(iterator1, function (err, entries) {
t.ifError(err, 'no iterator error')
t.same(entries.map(getKey), strings, 'sorts lexicographically')
})
concat(iterator2, function (err, entries) {
t.ifError(err, 'no iterator error')
t.same(entries.map(getKey), buffers, 'buffer input is stringified')
})
})
})
function stringBuffer (value) {
return Buffer.from(String(value))
}
function putKey (key) {
return { type: 'put', key: key, value: 'value' }
}
function getKey (entry) {
return entry.key
}