node-postgres/test/native/stress-tests.js
Brian C 8798e50ad3 Re-enable eslint with standard format (#1367)
* Work on converting lib to standard

* Finish updating lib

* Finish linting lib

* Format test files

* Add .eslintrc with standard format

* Supply full path to eslint bin

* Move lint command to package.json

* Add eslint as dev dependency
2017-07-15 12:05:58 -05:00

52 lines
1.2 KiB
JavaScript

'use strict'
var helper = require(__dirname + '/../test-helper')
var Client = require(__dirname + '/../../lib/native')
var Query = Client.Query
test('many rows', function () {
var client = new Client(helper.config)
client.connect()
var q = client.query(new Query('SELECT * FROM person'))
var rows = []
q.on('row', function (row) {
rows.push(row)
})
assert.emits(q, 'end', function () {
client.end()
assert.lengthIs(rows, 26)
})
})
test('many queries', function () {
var client = new Client(helper.config)
client.connect()
var count = 0
var expected = 100
for (var i = 0; i < expected; i++) {
var q = client.query(new Query('SELECT * FROM person'))
assert.emits(q, 'end', function () {
count++
})
}
assert.emits(client, 'drain', function () {
client.end()
assert.equal(count, expected)
})
})
test('many clients', function () {
var clients = []
for (var i = 0; i < 10; i++) {
clients.push(new Client(helper.config))
}
clients.forEach(function (client) {
client.connect()
for (var i = 0; i < 20; i++) {
client.query('SELECT * FROM person')
}
assert.emits(client, 'drain', function () {
client.end()
})
})
})