// Load the test base const reload = require('require-reload')(require); reload.emptyCache(); const testBase = reload('../base'); const testRunner = testBase.promiseTestRunner; // Load the test config file let adapterName = 'pg'; const allConfig = testBase.config; const config = allConfig[adapterName]; // Set up the query builder object let nodeQuery = reload('../../lib/NodeQuery')(config); let qb = nodeQuery.getQuery(); let qb2 = null; describe('Pg adapter tests -', () => { beforeAll(done => { qb.queryFile(`${__dirname}/../sql/pgsql.sql`) .then(() => done()) .catch(e => done(e)); }); it('nodeQuery.getQuery = nodeQuery.init', () => { expect(nodeQuery.getQuery()) .toEqual(qb); }); it('Connecting with an object also works', () => { let config = allConfig[`${adapterName}-object`]; let nodeQuery = reload('../../lib/NodeQuery')(config); qb2 = nodeQuery.getQuery(); expect(qb2).toEqual(expect.anything()); }); it('Test Connection Error', done => { try { reload('../../lib/NodeQuery')({}); done(true); } catch (e) { expect(e).toEqual(expect.anything()); done(); } }); testRunner(qb); it('Promise - Select with function and argument in WHERE clause', async () => { let promise = await qb.select('id') .from('create_test') .where('id', 'CEILING(SQRT(88))') .get(); expect(promise).toEqual(expect.anything()); }); it('Promise - Test Truncate', async () => { let promise = await qb.truncate('create_test'); expect(promise).toEqual(expect.anything()); }); it('Promise - Test Insert Batch', async () => { let data = [ { id: 544, key: 3, val: Buffer.from('7') }, { id: 89, key: 34, val: Buffer.from('10 o\'clock') }, { id: 48, key: 403, val: Buffer.from('97') } ]; let promise = await qb.insertBatch('create_test', data); expect(promise).toEqual(expect.anything()); }); afterAll(() => { qb.end(); qb2.end(); }); });