mirror of
https://github.com/brianc/node-postgres.git
synced 2025-12-08 20:16:25 +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
31 lines
837 B
JavaScript
31 lines
837 B
JavaScript
const expect = require('expect.js')
|
|
const describe = require('mocha').describe
|
|
const it = require('mocha').it
|
|
const Pool = require('../')
|
|
|
|
describe('Connection strings', function () {
|
|
it('pool delegates connectionString property to client', function (done) {
|
|
const connectionString = 'postgres://foo:bar@baz:1234/xur'
|
|
|
|
const pool = new Pool({
|
|
// use a fake client so we can check we're passed the connectionString
|
|
Client: function (args) {
|
|
expect(args.connectionString).to.equal(connectionString)
|
|
return {
|
|
connect: function (cb) {
|
|
cb(new Error('testing'))
|
|
},
|
|
on: function () { }
|
|
}
|
|
},
|
|
connectionString: connectionString
|
|
})
|
|
|
|
pool.connect(function (err, client) {
|
|
expect(err).to.not.be(undefined)
|
|
done()
|
|
})
|
|
})
|
|
})
|
|
|