node-query/test/adapters/pg_test.js

65 lines
1.5 KiB
JavaScript
Raw Normal View History

2015-12-07 12:03:42 -05:00
// Load the test base
const reload = require('require-reload')(require);
reload.emptyCache();
const testBase = reload('../base');
const testRunner = testBase.promiseTestRunner;
2015-12-07 12:03:42 -05:00
// Load the test config file
let adapterName = 'pg';
const allConfig = testBase.config;
const config = allConfig[adapterName];
2015-12-07 12:03:42 -05:00
// Set up the query builder object
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
2017-02-28 15:47:29 -05:00
describe('Pg adapter tests -', () => {
beforeAll(done => {
qb.queryFile(`${__dirname}/../sql/pgsql.sql`)
.then(() => done())
.catch(e => done(e));
});
2017-02-28 15:47:29 -05:00
it('nodeQuery.getQuery = nodeQuery.init', () => {
expect(nodeQuery.getQuery())
.toEqual(qb);
});
2017-02-28 15:47:29 -05:00
it('Connecting with an object also works', () => {
2016-03-11 16:32:38 -05:00
let config = allConfig[`${adapterName}-object`];
let nodeQuery = reload('../../lib/NodeQuery')(config);
qb2 = nodeQuery.getQuery();
expect(qb2).toEqual(expect.anything());
2016-03-11 16:32:38 -05:00
});
2017-02-28 15:47:29 -05:00
it('Test Connection Error', done => {
try {
reload('../../lib/NodeQuery')({});
done(true);
} catch (e) {
expect(e).toEqual(expect.anything());
done();
}
});
testRunner(qb);
it('Select with function and argument in WHERE clause', async () => {
const promise = await qb.select('id')
.from('create_test')
.where('id', 'CEILING(SQRT(88))')
.get();
expect(promise).toEqual(expect.anything());
});
it('Test Truncate', async () => {
const promise = await qb.truncate('create_test');
expect(promise).toEqual(expect.anything());
2015-12-07 12:03:42 -05:00
});
2017-02-28 15:47:29 -05:00
afterAll(() => {
2016-03-11 16:32:38 -05:00
qb.end();
qb2.end();
});
});