mirror of
https://github.com/brianc/node-postgres.git
synced 2026-02-01 16:47:23 +00:00
* Initial work * Make progress on custom pool * Make all original tests pass * Fix test race * Fix test when DNS is missing * Test more error conditions * Add test for byop * Add BYOP tests for errors * Add test for idle client error expunging * Fix typo * Replace var with const/let * Remove var usage * Fix linting * Work on connection timeout * Work on error condition tests * Remove logging * Add connection timeout * Add idle timeout * Test for returning to client to pool after error fixes #48 * Add idleTimeout support to native client * Add pg as peer dependency fixes #45 * Rename properties * Fix lint * use strict * Add draining to pool.end * Ensure ending pools drain properly * Remove yarn.lock * Remove object-assign * Remove node 8 * Remove closure for waiter construction * Ensure client.connect is never sync * Fix lint * Change to es6 class * Code cleanup & lint fixes
37 lines
1.1 KiB
JavaScript
37 lines
1.1 KiB
JavaScript
'use strict'
|
|
const co = require('co')
|
|
const expect = require('expect.js')
|
|
|
|
const describe = require('mocha').describe
|
|
const it = require('mocha').it
|
|
const BluebirdPromise = require('bluebird')
|
|
|
|
const Pool = require('../')
|
|
|
|
const checkType = promise => {
|
|
expect(promise).to.be.a(BluebirdPromise)
|
|
return promise.catch(e => undefined)
|
|
}
|
|
|
|
describe('Bring your own promise', function () {
|
|
it('uses supplied promise for operations', co.wrap(function * () {
|
|
const pool = new Pool({ Promise: BluebirdPromise })
|
|
const client1 = yield checkType(pool.connect())
|
|
client1.release()
|
|
yield checkType(pool.query('SELECT NOW()'))
|
|
const client2 = yield checkType(pool.connect())
|
|
// TODO - make sure pg supports BYOP as well
|
|
client2.release()
|
|
yield checkType(pool.end())
|
|
}))
|
|
|
|
it('uses promises in errors', co.wrap(function * () {
|
|
const pool = new Pool({ Promise: BluebirdPromise, port: 48484 })
|
|
yield checkType(pool.connect())
|
|
yield checkType(pool.end())
|
|
yield checkType(pool.connect())
|
|
yield checkType(pool.query())
|
|
yield checkType(pool.end())
|
|
}))
|
|
})
|