2015-12-07 12:03:42 -05:00
|
|
|
'use strict';
|
|
|
|
|
|
|
|
let configFile = (process.env.CI) ? '../config-travis.json' : '../config.json';
|
|
|
|
|
|
|
|
// 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-03-11 10:41:04 -05:00
|
|
|
const expect = testBase.expect;
|
|
|
|
const promiseTestRunner = testBase.promiseTestRunner;
|
|
|
|
const testRunner = testBase.testRunner;
|
2015-12-07 12:03:42 -05:00
|
|
|
|
|
|
|
// Load the test config file
|
|
|
|
let adapterName = 'pg';
|
2016-03-11 16:32:38 -05:00
|
|
|
let allConfig = reload(configFile);
|
|
|
|
let 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;
|
|
|
|
});
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------
|
|
|
|
// Callback Tests
|
|
|
|
//--------------------------------------------------------------------------
|
2016-01-26 19:29:12 -05:00
|
|
|
testRunner(qb, (err, done) => {
|
2015-12-07 12:03:42 -05:00
|
|
|
expect(err).is.not.ok;
|
2016-03-11 16:32:38 -05:00
|
|
|
return done(err);
|
2015-12-07 12:03:42 -05:00
|
|
|
});
|
2016-01-26 19:29:12 -05:00
|
|
|
test('Callback - Select with function and argument in WHERE clause', done => {
|
|
|
|
qb.select('id')
|
|
|
|
.from('create_test')
|
|
|
|
.where('id', 'CEILING(SQRT(88))')
|
|
|
|
.get((err, rows) => {
|
2016-03-11 16:32:38 -05:00
|
|
|
expect(rows).is.ok;
|
2015-12-07 14:33:48 -05:00
|
|
|
expect(err).is.not.ok;
|
2016-03-11 16:32:38 -05:00
|
|
|
return done(err);
|
2015-12-07 14:33:48 -05:00
|
|
|
});
|
2015-12-07 12:03:42 -05:00
|
|
|
});
|
2016-03-11 16:32:38 -05:00
|
|
|
test('Callback - Test Insert Batch', done => {
|
|
|
|
let data = [
|
|
|
|
{
|
|
|
|
id: 5441,
|
|
|
|
key: 3,
|
|
|
|
val: new Buffer('7'),
|
|
|
|
}, {
|
|
|
|
id: 891,
|
|
|
|
key: 34,
|
|
|
|
val: new Buffer('10 o\'clock'),
|
|
|
|
}, {
|
|
|
|
id: 481,
|
|
|
|
key: 403,
|
|
|
|
val: new Buffer('97'),
|
|
|
|
},
|
|
|
|
];
|
2016-01-26 19:29:12 -05:00
|
|
|
|
2016-03-11 16:32:38 -05:00
|
|
|
qb.insertBatch('create_test', data, (err, res) => {
|
|
|
|
expect(err).is.not.ok;
|
|
|
|
return done(err);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------
|
|
|
|
// Promise Tests
|
|
|
|
//--------------------------------------------------------------------------
|
2016-01-26 19:29:12 -05:00
|
|
|
promiseTestRunner(qb);
|
|
|
|
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
|
|
|
});
|
|
|
|
test('Promise - Test Insert Batch', () => {
|
|
|
|
let data = [
|
|
|
|
{
|
|
|
|
id: 544,
|
|
|
|
key: 3,
|
|
|
|
val: new Buffer('7'),
|
|
|
|
}, {
|
|
|
|
id: 89,
|
|
|
|
key: 34,
|
|
|
|
val: new Buffer('10 o\'clock'),
|
|
|
|
}, {
|
|
|
|
id: 48,
|
|
|
|
key: 403,
|
|
|
|
val: new Buffer('97'),
|
|
|
|
},
|
|
|
|
];
|
|
|
|
|
|
|
|
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();
|
|
|
|
});
|
2015-12-07 12:03:42 -05:00
|
|
|
});
|