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
|
|
|
|
let adapterName = 'pg';
|
2016-03-16 08:51:05 -04:00
|
|
|
const allConfig = testBase.config;
|
|
|
|
const config = allConfig[adapterName];
|
2015-12-07 12:03:42 -05:00
|
|
|
|
|
|
|
// Set up the query builder object
|
2016-03-11 10:41:04 -05:00
|
|
|
let nodeQuery = reload('../../lib/NodeQuery')(config);
|
|
|
|
let qb = nodeQuery.getQuery();
|
2016-03-11 16:32:38 -05:00
|
|
|
let qb2 = null;
|
2015-12-07 12:03:42 -05:00
|
|
|
|
2016-01-26 19:29:12 -05:00
|
|
|
suite('Pg adapter tests -', () => {
|
|
|
|
test('nodeQuery.getQuery = nodeQuery.init', () => {
|
|
|
|
expect(nodeQuery.getQuery())
|
|
|
|
.to.be.deep.equal(qb);
|
|
|
|
});
|
|
|
|
|
2016-03-11 16:32:38 -05:00
|
|
|
test('Connecting with an object also works', () => {
|
|
|
|
let config = allConfig[`${adapterName}-object`];
|
|
|
|
let nodeQuery = reload('../../lib/NodeQuery')(config);
|
|
|
|
qb2 = nodeQuery.getQuery();
|
|
|
|
|
|
|
|
return expect(qb2).to.be.ok;
|
|
|
|
});
|
|
|
|
|
2016-09-14 16:50:32 -04:00
|
|
|
test('Test Connection Error', done => {
|
|
|
|
try {
|
|
|
|
reload('../../lib/NodeQuery')({});
|
|
|
|
done(true);
|
|
|
|
} catch (e) {
|
|
|
|
expect(e).to.be.ok;
|
|
|
|
expect(e).is.an('Error');
|
|
|
|
done();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2016-11-10 22:10:45 -05:00
|
|
|
testRunner(qb);
|
2016-01-26 19:29:12 -05:00
|
|
|
test('Promise - Select with function and argument in WHERE clause', () => {
|
|
|
|
let promise = qb.select('id')
|
|
|
|
.from('create_test')
|
|
|
|
.where('id', 'CEILING(SQRT(88))')
|
|
|
|
.get();
|
|
|
|
|
2016-03-11 16:32:38 -05:00
|
|
|
return expect(promise).to.be.fulfilled;
|
2016-01-26 19:29:12 -05:00
|
|
|
});
|
2016-09-14 16:50:32 -04:00
|
|
|
test('Promise - Test Truncate', () => {
|
|
|
|
let promise = qb.truncate('create_test');
|
|
|
|
return expect(promise).to.be.fulfilled;
|
|
|
|
});
|
2016-01-26 19:29:12 -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-01-26 19:29:12 -05:00
|
|
|
}, {
|
|
|
|
id: 89,
|
|
|
|
key: 34,
|
2016-11-10 22:10:45 -05:00
|
|
|
val: Buffer.from('10 o\'clock')
|
2016-01-26 19:29:12 -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-01-26 19:29:12 -05:00
|
|
|
];
|
|
|
|
|
|
|
|
let promise = qb.insertBatch('create_test', data);
|
|
|
|
return expect(promise).to.be.fulfilled;
|
2015-12-07 12:03:42 -05:00
|
|
|
});
|
2016-03-11 16:32:38 -05:00
|
|
|
suiteTeardown(() => {
|
|
|
|
qb.end();
|
|
|
|
qb2.end();
|
|
|
|
});
|
2016-09-14 16:50:32 -04:00
|
|
|
});
|