mirror of
https://github.com/brianc/node-postgres.git
synced 2026-01-18 15:55:05 +00:00
* Remove assert from globals * Remove Client from globals * Remove global test function * Remove MemoryStream from globals * Require assert in SASL integration tests * Attempt to use a postgres with ssl? * Use latest image * Remove connection tests - they test internals that are better covered by testint the client
39 lines
991 B
JavaScript
39 lines
991 B
JavaScript
'use strict'
|
|
var util = require('util')
|
|
var helper = require('./test-helper')
|
|
const assert = require('assert')
|
|
const suite = new helper.Suite()
|
|
|
|
var Client = helper.Client
|
|
|
|
var conInfo = helper.config
|
|
|
|
suite.test('returns results as array', function () {
|
|
var client = new Client(conInfo)
|
|
var checkRow = function (row) {
|
|
assert(util.isArray(row), 'row should be an array')
|
|
assert.equal(row.length, 4)
|
|
assert.equal(row[0].getFullYear(), new Date().getFullYear())
|
|
assert.strictEqual(row[1], 1)
|
|
assert.strictEqual(row[2], 'hai')
|
|
assert.strictEqual(row[3], null)
|
|
}
|
|
client.connect(
|
|
assert.success(function () {
|
|
var config = {
|
|
text: 'SELECT NOW(), 1::int, $1::text, null',
|
|
values: ['hai'],
|
|
rowMode: 'array',
|
|
}
|
|
client.query(
|
|
config,
|
|
assert.success(function (result) {
|
|
assert.equal(result.rows.length, 1)
|
|
checkRow(result.rows[0])
|
|
client.end()
|
|
})
|
|
)
|
|
})
|
|
)
|
|
})
|