-
-
Notifications
You must be signed in to change notification settings - Fork 54
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove fast-future (Level/leveldown#638)
- Loading branch information
Showing
4 changed files
with
131 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,124 @@ | ||
'use strict' | ||
|
||
const test = require('tape') | ||
const testCommon = require('./common') | ||
const sourceData = [] | ||
|
||
// For this test the number of records in the db must be a multiple of | ||
// the hardcoded fast-future limit (1000) or a cache size limit in C++. | ||
for (let i = 0; i < 1e4; i++) { | ||
sourceData.push({ | ||
type: 'put', | ||
key: i.toString(), | ||
value: '' | ||
}) | ||
} | ||
|
||
test('setUp', testCommon.setUp) | ||
|
||
test('iterator does not starve event loop', function (t) { | ||
t.plan(6) | ||
|
||
const db = testCommon.factory() | ||
|
||
db.open(function (err) { | ||
t.ifError(err, 'no open error') | ||
|
||
// Insert test data | ||
db.batch(sourceData.slice(), function (err) { | ||
t.ifError(err, 'no batch error') | ||
|
||
// Set a high highWaterMark to fill up the cache entirely | ||
const it = db.iterator({ highWaterMark: Math.pow(1024, 3) }) | ||
|
||
let breaths = 0 | ||
let entries = 0 | ||
let scheduled = false | ||
|
||
// Iterate continuously while also scheduling work with setImmediate(), | ||
// which should be given a chance to run because we limit the tick depth. | ||
const next = function () { | ||
it.next(function (err, key, value) { | ||
if (err || (key === undefined && value === undefined)) { | ||
t.ifError(err, 'no next error') | ||
t.is(entries, sourceData.length, 'got all data') | ||
t.is(breaths, sourceData.length / 1000, 'breathed while iterating') | ||
|
||
return db.close(function (err) { | ||
t.ifError(err, 'no close error') | ||
}) | ||
} | ||
|
||
entries++ | ||
|
||
if (!scheduled) { | ||
scheduled = true | ||
setImmediate(function () { | ||
breaths++ | ||
scheduled = false | ||
}) | ||
} | ||
|
||
next() | ||
}) | ||
} | ||
|
||
next() | ||
}) | ||
}) | ||
}) | ||
|
||
test('iterator with seeks does not starve event loop', function (t) { | ||
t.plan(6) | ||
|
||
const db = testCommon.factory() | ||
|
||
db.open(function (err) { | ||
t.ifError(err, 'no open error') | ||
|
||
db.batch(sourceData.slice(), function (err) { | ||
t.ifError(err, 'no batch error') | ||
|
||
const it = db.iterator({ highWaterMark: Math.pow(1024, 3), limit: sourceData.length }) | ||
|
||
let breaths = 0 | ||
let entries = 0 | ||
let scheduled = false | ||
|
||
const next = function () { | ||
it.next(function (err, key, value) { | ||
if (err || (key === undefined && value === undefined)) { | ||
t.ifError(err, 'no next error') | ||
t.is(entries, sourceData.length, 'got all data') | ||
t.is(breaths, sourceData.length, 'breathed while iterating') | ||
|
||
return db.close(function (err) { | ||
t.ifError(err, 'no close error') | ||
}) | ||
} | ||
|
||
entries++ | ||
|
||
if (!scheduled) { | ||
// Seeking clears the cache, which should only have a positive | ||
// effect because it means the cache must be refilled, which | ||
// again gives us time to breathe. This is a smoke test, really. | ||
it.seek(sourceData[0].key) | ||
|
||
scheduled = true | ||
setImmediate(function () { | ||
breaths++ | ||
scheduled = false | ||
}) | ||
} | ||
|
||
next() | ||
}) | ||
} | ||
|
||
next() | ||
}) | ||
}) | ||
}) | ||
|
||
test('tearDown', testCommon.tearDown) |