mirror of
https://github.com/brianc/node-postgres.git
synced 2026-01-18 15:55:05 +00:00
41 lines
1.1 KiB
JavaScript
41 lines
1.1 KiB
JavaScript
'use strict'
|
|
const helper = require('./test-helper')
|
|
const Connection = require('../../../lib/connection')
|
|
const Client = require('../../../lib/client')
|
|
const assert = require('assert')
|
|
const suite = new helper.Suite()
|
|
|
|
suite.test('emits end when not in query', function () {
|
|
const stream = new (require('events').EventEmitter)()
|
|
stream.setNoDelay = () => {}
|
|
stream.connect = function () {
|
|
// NOOP
|
|
}
|
|
stream.write = function () {
|
|
// NOOP
|
|
}
|
|
|
|
const client = new Client({ connection: new Connection({ stream: stream }) })
|
|
client.connect(
|
|
assert.calls(function () {
|
|
client.query(
|
|
'SELECT NOW()',
|
|
assert.calls(function (err, result) {
|
|
assert(err)
|
|
})
|
|
)
|
|
})
|
|
)
|
|
assert.emits(client, 'error')
|
|
assert.emits(client, 'end')
|
|
client.connection.emit('connect')
|
|
process.nextTick(function () {
|
|
client.connection.emit('readyForQuery')
|
|
assert.equal(client.queryQueue.length, 0)
|
|
assert(client.activeQuery, 'client should have issued query')
|
|
process.nextTick(function () {
|
|
stream.emit('close')
|
|
})
|
|
})
|
|
})
|