UNPKG

abstract-nosql

Version:

An abstract prototype for nosql database with sync and streamable (LevelDOWN API)

201 lines (180 loc) 5.57 kB
var db , verifyNotFoundError = require('./util').verifyNotFoundError , isTypedArray = require('./util').isTypedArray 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)) }) } module.exports.args = function (test) { test('test batch() with missing `value`', function (t) { db.batch([{ type: 'put', key: 'foo1' }], function (err) { t.error(err) t.end() }) }) test('test batch() with null `value`', function (t) { db.batch([{ type: 'put', key: 'foo1', value: null }], function (err) { t.error(err) t.end() }) }) test('test batch() with missing `key`', function (t) { db.batch([{ type: 'put', value: 'foo1' }], function (err) { t.ok(err, 'got error') t.equal(err.message, 'key cannot be `null` or `undefined`', 'correct error message') t.end() }) }) test('test batch() with null `key`', function (t) { db.batch([{ type: 'put', key: null, value: 'foo1' }], function (err) { t.ok(err, 'got error') t.equal(err.message, 'key cannot be `null` or `undefined`', 'correct error message') t.end() }) }) test('test batch() with missing `key` and `value`', function (t) { db.batch([{ type: 'put' }], function (err) { t.ok(err, 'got error') t.equal(err.message, 'key cannot be `null` or `undefined`', 'correct error message') t.end() }) }) test('test batch() with missing array', function (t) { db.batch(function (err) { t.ok(err, 'got error') t.equal(err.message, 'batch(array) requires an array argument', 'correct error message') t.end() }) }) test('test batch() with undefined array', function (t) { db.batch(void 0, function (err) { t.ok(err, 'got error') t.equal(err.message, 'batch(array) requires an array argument', 'correct error message') t.end() }) }) test('test batch() with null array', function (t) { db.batch(null, function (err) { t.ok(err, 'got error') t.equal(err.message, 'batch(array) requires an array argument', 'correct error message') t.end() }) }) test('test batch() with null options', function (t) { db.batch([], null, function (err) { t.error(err) t.end() }) }) } module.exports.batch = function (test) { test('test batch() with empty array', function (t) { db.batch([], function (err) { t.error(err) t.end() }) }) test('test simple batch()', function (t) { db.batch([{ type: 'put', key: 'foo', value: 'bar' }], function (err) { t.error(err) db.get('foo', function (err, result) { t.error(err) /* var result if (isTypedArray(value)) { result = String.fromCharCode.apply(null, new Uint16Array(value)) } else { t.ok(typeof Buffer != 'undefined' && value instanceof Buffer) result = value.toString() }*/ t.equal(result, 'bar') t.end() }) }) }) test('test multiple batch()', function (t) { db.batch([ { type: 'put', key: 'foobatch1', value: 'bar1' } , { type: 'put', key: 'foobatch2', value: 'bar2' } , { type: 'put', key: 'foobatch3', value: 'bar3' } , { type: 'del', key: 'foobatch2' } ], function (err) { t.error(err) var r = 0 , done = function () { if (++r == 3) t.end() } db.get('foobatch1', function (err, result) { t.error(err) /* var result if (isTypedArray(value)) { result = String.fromCharCode.apply(null, new Uint16Array(value)) } else { t.ok(typeof Buffer != 'undefined' && value instanceof Buffer) result = value.toString() }*/ t.equal(result, 'bar1') done() }) db.get('foobatch2', function (err, value) { t.ok(err, 'entry not found') t.ok(typeof value == 'undefined', 'value is undefined') t.ok(verifyNotFoundError(err), 'NotFound error') done() }) db.get('foobatch3', function (err, result) { t.error(err) t.equal(result, 'bar3') done() }) }) }) } module.exports.atomic = function (test) { test('test multiple batch()', function (t) { t.plan(3) db.batch([ { type: 'put', key: 'foobah1', value: 'bar1' } , { type: 'put', value: 'bar2' } , { type: 'put', key: 'foobah3', value: 'bar3' } ], function (err) { t.ok(err, 'should error') db.get('foobah1', function (err) { t.ok(err, 'should not be found') }) db.get('foobah3', function (err) { t.ok(err, 'should not be found') }) }) }) } module.exports.tearDown = function (test, testCommon) { test('tearDown', function (t) { db.close(testCommon.tearDown.bind(null, t)) }) } module.exports.sync = function (test) { test('sync', function (t) { if (db._batchSync) { delete db.__proto__._batch } t.end() }) } module.exports.all = function (NoSqlDatabase, test, testCommon) { module.exports.setUp(NoSqlDatabase, test, testCommon) module.exports.args(test) module.exports.batch(test) module.exports.atomic(test) if (NoSqlDatabase.prototype._batchSync) { module.exports.sync(test) module.exports.batch(test) module.exports.atomic(test) } module.exports.tearDown(test, testCommon) }