2016-09-14 16:50:32 -04:00
|
|
|
/* eslint-env node, mocha */
|
2015-12-07 12:03:42 -05:00
|
|
|
'use strict';
|
|
|
|
|
|
|
|
// Load the test base
|
2016-01-26 19:29:12 -05:00
|
|
|
const reload = require('require-reload')(require);
|
|
|
|
reload.emptyCache();
|
|
|
|
const testBase = reload('../base');
|
2016-09-14 16:50:32 -04:00
|
|
|
const expect = testBase.expect;
|
2016-11-10 22:10:45 -05:00
|
|
|
const testRunner = testBase.promiseTestRunner;
|
2015-12-07 12:03:42 -05:00
|
|
|
|
|
|
|
// Load the test config file
|
2016-03-16 08:51:05 -04:00
|
|
|
const config = testBase.config;
|
2015-12-07 12:03:42 -05:00
|
|
|
|
2016-03-11 10:41:04 -05:00
|
|
|
// Set up the query builder object
|
|
|
|
let nodeQuery = require('../../lib/NodeQuery')(config.dblite);
|
|
|
|
let qb = nodeQuery.getQuery();
|
2015-12-07 12:03:42 -05:00
|
|
|
|
2016-03-11 10:41:04 -05:00
|
|
|
suite('Dblite adapter tests -', () => {
|
|
|
|
suiteSetup(done => {
|
|
|
|
// Set up the sqlite database
|
2016-11-18 21:59:22 -05:00
|
|
|
const createTest = 'CREATE TABLE IF NOT EXISTS "create_test" ("id" INTEGER PRIMARY KEY, "key" TEXT, "val" TEXT);';
|
|
|
|
const createJoin = 'CREATE TABLE IF NOT EXISTS "create_join" ("id" INTEGER PRIMARY KEY, "key" TEXT, "val" TEXT);';
|
|
|
|
|
|
|
|
qb.query(createTest)
|
|
|
|
.then(() => qb.query(createJoin))
|
|
|
|
.then(() => {
|
|
|
|
return done();
|
|
|
|
});
|
2016-03-11 10:41:04 -05:00
|
|
|
});
|
2016-01-26 19:29:12 -05:00
|
|
|
|
2016-11-10 22:10:45 -05:00
|
|
|
testRunner(qb);
|
2016-03-11 10:41:04 -05:00
|
|
|
test('Promise - Select with function and argument in WHERE clause', () => {
|
|
|
|
let promise = qb.select('id')
|
|
|
|
.from('create_test')
|
|
|
|
.where('id', 'ABS(-88)')
|
|
|
|
.get();
|
2016-01-26 19:29:12 -05:00
|
|
|
|
2016-03-11 10:41:04 -05:00
|
|
|
expect(promise).to.be.fulfilled;
|
2015-12-07 12:03:42 -05:00
|
|
|
});
|
2016-03-11 16:32:38 -05:00
|
|
|
test('Promise - Test Insert Batch', () => {
|
|
|
|
let data = [
|
|
|
|
{
|
|
|
|
id: 544,
|
|
|
|
key: 3,
|
2016-11-10 22:10:45 -05:00
|
|
|
val: Buffer.from('7')
|
2016-03-11 16:32:38 -05:00
|
|
|
}, {
|
|
|
|
id: 89,
|
|
|
|
key: 34,
|
2016-11-10 22:10:45 -05:00
|
|
|
val: Buffer.from('10 o\'clock')
|
2016-03-11 16:32:38 -05:00
|
|
|
}, {
|
|
|
|
id: 48,
|
|
|
|
key: 403,
|
2016-11-10 22:10:45 -05:00
|
|
|
val: Buffer.from('97')
|
2016-09-14 16:50:32 -04:00
|
|
|
}
|
2016-03-11 16:32:38 -05:00
|
|
|
];
|
|
|
|
|
2016-11-10 22:10:45 -05:00
|
|
|
let promise = qb.insertBatch('create_test', data);
|
2016-03-11 16:32:38 -05:00
|
|
|
expect(promise).to.be.fulfilled;
|
|
|
|
});
|
|
|
|
suiteTeardown(() => {
|
|
|
|
qb.end();
|
|
|
|
});
|
2016-03-11 10:41:04 -05:00
|
|
|
});
|