node-postgres/test/integration/client/query-as-promise-tests.js
Brian C 2fd9c77085 Make Query & NativeQuery implement the promise interface (#1047)
* Make Query & NativeQuery implement the promise interface

* Fix test

* Use older node API for checking listener length

* Do not test for promises on node@v0.10.0
2016-06-10 17:18:19 -05:00

34 lines
824 B
JavaScript

var helper = require(__dirname + '/../test-helper');
var pg = helper.pg;
var semver = require('semver')
if (semver.lt(process.version, '0.12.0')) {
return console.log('promises are not supported in node < v0.10')
}
process.on('unhandledRejection', function(e) {
console.error(e, e.stack)
process.exit(1)
})
pg.connect(helper.config, assert.success(function(client, done) {
client.query('SELECT $1::text as name', ['foo'])
.then(function(result) {
assert.equal(result.rows[0].name, 'foo')
return client
})
.then(function(client) {
client.query('ALKJSDF')
.catch(function(e) {
assert(e instanceof Error)
})
})
client.query('SELECT 1 as num')
.then(function(result) {
assert.equal(result.rows[0].num, 1)
done()
pg.end()
})
}))