The JavaScript Database, for Node.js, nw.js, electron and the browser
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nedb/test/executor.test.js

227 lines
7.3 KiB

/* eslint-env mocha */
import fs from 'node:fs'
import { callbackify } from 'node:util'
import chai from 'chai'
import { waterfall } from './utils.test.js'
import Datastore from '../src/datastore.js'
import Persistence from '../src/persistence.js'
const testDb = 'workspace/test.db'
const { assert } = chai
chai.should()
11 years ago
// Test that even if a callback throws an exception, the next DB operations will still be executed
// We prevent Mocha from catching the exception we throw on purpose by remembering all current handlers, remove them and register them back after test ends
function testThrowInCallback (d, done) {
const currentUncaughtExceptionHandlers = process.listeners('uncaughtException')
const currentUnhandledRejectionHandlers = process.listeners('unhandledRejection')
9 years ago
process.removeAllListeners('uncaughtException')
process.removeAllListeners('unhandledRejection')
11 years ago
// eslint-disable-next-line n/handle-callback-err
11 years ago
process.on('uncaughtException', function (err) {
// Do nothing with the error which is only there to test we stay on track
})
11 years ago
process.on('unhandledRejection', function MINE (ex) {
// Do nothing with the error which is only there to test we stay on track
})
// eslint-disable-next-line n/handle-callback-err
9 years ago
d.find({}, function (err) {
11 years ago
process.nextTick(function () {
// eslint-disable-next-line n/handle-callback-err
11 years ago
d.insert({ bar: 1 }, function (err) {
process.removeAllListeners('uncaughtException')
process.removeAllListeners('unhandledRejection')
for (let i = 0; i < currentUncaughtExceptionHandlers.length; i += 1) {
process.on('uncaughtException', currentUncaughtExceptionHandlers[i])
11 years ago
}
for (let i = 0; i < currentUnhandledRejectionHandlers.length; i += 1) {
process.on('unhandledRejection', currentUnhandledRejectionHandlers[i])
}
9 years ago
done()
})
})
9 years ago
throw new Error('Some error')
})
11 years ago
}
// Test that if the callback is falsy, the next DB operations will still be executed
function testFalsyCallback (d, done) {
d.insert({ a: 1 }, null)
process.nextTick(function () {
d.update({ a: 1 }, { a: 2 }, {}, null)
process.nextTick(function () {
d.update({ a: 2 }, { a: 1 }, null)
process.nextTick(function () {
d.remove({ a: 2 }, {}, null)
process.nextTick(function () {
d.remove({ a: 2 }, null)
process.nextTick(function () {
d.find({}, done)
})
})
})
})
})
}
11 years ago
11 years ago
// Test that operations are executed in the right order
// We prevent Mocha from catching the exception we throw on purpose by remembering all current handlers, remove them and register them back after test ends
function testRightOrder (d, done) {
const currentUncaughtExceptionHandlers = process.listeners('uncaughtException')
process.removeAllListeners('uncaughtException')
11 years ago
// eslint-disable-next-line n/handle-callback-err
11 years ago
process.on('uncaughtException', function (err) {
// Do nothing with the error which is only there to test we stay on track
})
11 years ago
// eslint-disable-next-line n/handle-callback-err
d.find({}, function (err, docs) {
docs.length.should.equal(0)
9 years ago
d.insert({ a: 1 }, function () {
d.update({ a: 1 }, { a: 2 }, {}, function () {
// eslint-disable-next-line n/handle-callback-err
d.find({}, function (err, docs) {
docs[0].a.should.equal(2)
9 years ago
process.nextTick(function () {
d.update({ a: 2 }, { a: 3 }, {}, function () {
// eslint-disable-next-line n/handle-callback-err
d.find({}, function (err, docs) {
docs[0].a.should.equal(3)
process.removeAllListeners('uncaughtException')
for (let i = 0; i < currentUncaughtExceptionHandlers.length; i += 1) {
process.on('uncaughtException', currentUncaughtExceptionHandlers[i])
9 years ago
}
done()
})
})
})
9 years ago
throw new Error('Some error')
})
})
})
})
9 years ago
}
// Note: The following test does not have any assertion because it
// is meant to address the deprecation warning:
// (node) warning: Recursive process.nextTick detected. This will break in the next version of node. Please use setImmediate for recursive deferral.
// see
const testEventLoopStarvation = function (d, done) {
const times = 1001
let i = 0
while (i < times) {
i++
// eslint-disable-next-line n/handle-callback-err
d.find({ bogus: 'search' }, function (err, docs) {
})
}
done()
}
// Test that operations are executed in the right order even with no callback
function testExecutorWorksWithoutCallback (d, done) {
d.insert({ a: 1 })
d.insert({ a: 2 }, false)
// eslint-disable-next-line n/handle-callback-err
d.find({}, function (err, docs) {
docs.length.should.equal(2)
done()
})
}
11 years ago
9 years ago
describe('Executor', function () {
describe('With persistent database', function () {
let d
11 years ago
beforeEach(function (done) {
d = new Datastore({ filename: testDb })
d.filename.should.equal(testDb)
d.inMemoryOnly.should.equal(false)
11 years ago
waterfall([
11 years ago
function (cb) {
callbackify((filename) => Persistence.ensureParentDirectoryExistsAsync(filename))(testDb, function () {
fs.access(testDb, fs.constants.F_OK, function (err) {
if (!err) {
fs.unlink(testDb, cb)
} else { return cb() }
})
})
},
function (cb) {
11 years ago
d.loadDatabase(function (err) {
assert.isNull(err)
d.getAllData().length.should.equal(0)
return cb()
})
11 years ago
}
], done)
})
it('A throw in a callback doesnt prevent execution of next operations', function (done) {
testThrowInCallback(d, done)
})
it('A falsy callback doesnt prevent execution of next operations', function (done) {
testFalsyCallback(d, done)
})
it('Operations are executed in the right order', function (done) {
testRightOrder(d, done)
})
it('Does not starve event loop and raise warning when more than 1000 callbacks are in queue', function (done) {
testEventLoopStarvation(d, done)
})
11 years ago
it('Works in the right order even with no supplied callback', function (done) {
testExecutorWorksWithoutCallback(d, done)
})
}) // ==== End of 'With persistent database' ====
11 years ago
describe('With non persistent database', function () {
let d
11 years ago
beforeEach(function (done) {
d = new Datastore({ inMemoryOnly: true })
d.inMemoryOnly.should.equal(true)
11 years ago
11 years ago
d.loadDatabase(function (err) {
assert.isNull(err)
d.getAllData().length.should.equal(0)
return done()
})
})
it('A throw in a callback doesnt prevent execution of next operations', function (done) {
testThrowInCallback(d, done)
})
it('A falsy callback doesnt prevent execution of next operations', function (done) {
testFalsyCallback(d, done)
})
it('Operations are executed in the right order', function (done) {
testRightOrder(d, done)
})
it('Works in the right order even with no supplied callback', function (done) {
testExecutorWorksWithoutCallback(d, done)
})
}) // ==== End of 'With non persistent database' ====
})