abstract-nosql
Version:
An abstract prototype for nosql database with sync and streamable (LevelDOWN API)
178 lines (150 loc) • 5.71 kB
JavaScript
/**** SETUP & UTILITY STUFF ****/
var db
, testBuffer
, test
, verifyNotFoundError = require('./util').verifyNotFoundError
function makeGetDelErrorTests (type, key, expectedError) {
test('test get() with ' + type + ' causes error', function (t) {
db.get(key, function (err) {
t.ok(err, 'has error')
t.ok(err instanceof Error)
t.ok(err.message.match(expectedError), 'correct error message')
t.end()
})
})
test('test del() with ' + type + ' causes error', function (t) {
db.del(key, function (err) {
t.ok(err, 'has error')
t.ok(err instanceof Error)
t.ok(err.message.match(expectedError), 'correct error message')
t.end()
})
})
}
function makePutErrorTest (type, key, value, expectedError) {
test('test put() with ' + type + ' causes error', function (t) {
db.put(key, value, function (err) {
t.ok(err, 'has error')
t.ok(err instanceof Error)
t.ok(err.message.match(expectedError), 'correct error message')
t.end()
})
})
}
function makePutGetDelSuccessfulTest (type, key, value, expectedResult) {
var hasExpectedResult = arguments.length == 4
test('test put()/get()/del() with ' + type, function (t) {
db.put(key, value, function (err) {
t.error(err)
db.get(key, function (err, _value) {
t.error(err, 'no error, has key/value for `' + type + '`')
//t.ok(Buffer.isBuffer(_value), 'is a Buffer')
var result = _value
if (hasExpectedResult) {
t.ok(result === expectedResult, 'got `' + expectedResult + '`')
} else {
if (result != null)
result = _value.toString()
if (value != null)
value = value.toString()
t.equals(result, value)
}
db.del(key, function (err) {
t.error(err, 'no error, deleted key/value for `' + type + '`')
db.get(key, function (err, value) {
t.ok(err, 'entry propertly deleted')
t.ok(verifyNotFoundError(err), 'should have correct error message')
t.ok(typeof value == 'undefined', 'value is undefined')
t.end()
})
})
})
})
})
}
function makeErrorKeyTest (type, key, expectedError) {
makeGetDelErrorTests(type, key, expectedError)
makePutErrorTest(type, key, 'foo', expectedError)
}
/**** SETUP ENVIRONMENT ****/
module.exports.setUp = function (NoSqlDatabase, test, testCommon) {
test('setUp common', testCommon.setUp)
test('setUp db', function (t) {
db = NoSqlDatabase(testCommon.location())
db.open(t.end.bind(t))
})
}
/**** TEST ERROR KEYS ****/
module.exports.errorKeys = function (testFunc, BufferType) {
if (!BufferType)
BufferType = Buffer
test = testFunc
makeErrorKeyTest('null key', null, /key cannot be `null` or `undefined`/)
makeErrorKeyTest('undefined key', undefined, /key cannot be `null` or `undefined`/)
makeErrorKeyTest('empty String key', '', /key cannot be an empty String/)
makeErrorKeyTest('empty Buffer key', new BufferType(0), /key cannot be an empty \w*Buffer/)
makeErrorKeyTest('empty Array key', [], /key cannot be an empty String/)
}
/**** TEST NON-ERROR KEYS ****/
module.exports.nonErrorKeys = function (testFunc) {
// valid falsey keys
test = testFunc
makePutGetDelSuccessfulTest('`false` key', false, 'foo false')
makePutGetDelSuccessfulTest('`0` key', 0, 'foo 0')
makePutGetDelSuccessfulTest('`NaN` key', NaN, 'foo NaN')
// standard String key
makePutGetDelSuccessfulTest(
'long String key'
, 'some long string that I\'m using as a key for this unit test, cross your fingers dude, we\'re going in!'
, 'foo'
)
if (!process.browser) {
// Buffer key
makePutGetDelSuccessfulTest('Buffer key', testBuffer, 'foo')
}
// non-empty Array as a value
makePutGetDelSuccessfulTest('Array value', 'foo', [1,2,3,4])
}
/**** TEST ERROR VALUES ****/
module.exports.errorValues = function () {
}
module.exports.nonErrorValues = function (testFunc, BufferType) {
if (!BufferType) BufferType = Buffer
// valid falsey values
test = testFunc
makePutGetDelSuccessfulTest('`false` value', 'foo false', false)
makePutGetDelSuccessfulTest('`0` value', 'foo 0', 0)
makePutGetDelSuccessfulTest('`NaN` value', 'foo NaN', NaN)
// all of the following result in an empty-string value:
makePutGetDelSuccessfulTest('`null` value', 'foo null', null, '')
makePutGetDelSuccessfulTest('`undefined` value', 'foo undefined', undefined, '')
makePutGetDelSuccessfulTest('empty String value', 'foo', '', '')
makePutGetDelSuccessfulTest('empty Buffer value', 'foo', new BufferType(0), '')
makePutGetDelSuccessfulTest('empty Array value', 'foo', [], '')
// standard String value
makePutGetDelSuccessfulTest(
'long String value'
, 'foo'
, 'some long string that I\'m using as a key for this unit test, cross your fingers dude, we\'re going in!'
)
// standard Buffer value
makePutGetDelSuccessfulTest('Buffer value', 'foo', testBuffer)
// non-empty Array as a key
makePutGetDelSuccessfulTest('Array key', [1,2,3,4], 'foo')
}
/**** CLEANUP ENVIRONMENT ****/
module.exports.tearDown = function (test, testCommon) {
test('tearDown', function (t) {
db.close(testCommon.tearDown.bind(null, t))
})
}
module.exports.all = function (NoSqlDatabase, testFunc, testCommon, buffer, BufferType) {
testBuffer = buffer
test = testFunc
module.exports.setUp(NoSqlDatabase, test, testCommon)
module.exports.errorKeys(test, BufferType)
module.exports.nonErrorKeys(test)
module.exports.errorValues(test, BufferType)
module.exports.nonErrorKeys(test)
module.exports.tearDown(test, testCommon)
}