node-postgres/test/native/evented-api-tests.js

90 lines
2.6 KiB
JavaScript
Raw Normal View History

var helper = require(__dirname + "/../test-helper");
var Client = require(__dirname + "/../../lib/native").Client;
var conString = helper.connectionString();
test('connects', function() {
var client = new Client(conString);
client.connect();
test('good query', function() {
var query = client.query("SELECT 1 as num, 'HELLO' as str");
assert.emits(query, 'row', function(row) {
test('has integer data type', function() {
assert.strictEqual(row.num, 1);
})
test('has string data type', function() {
assert.strictEqual(row.str, "HELLO")
})
test('emits end AFTER row event', function() {
assert.emits(query, 'end');
test('error query', function() {
var query = client.query("LSKDJF");
assert.emits(query, 'error', function(err) {
assert.ok(err != null, "Should not have emitted null error");
client.end();
})
})
})
})
})
})
2011-02-25 11:33:54 +08:00
var setupClient = function() {
var client = new Client(conString);
client.connect();
2011-02-25 11:33:54 +08:00
client.query("CREATE TEMP TABLE boom(name varchar(10))");
client.query("INSERT INTO boom(name) VALUES('Aaron')");
client.query("INSERT INTO boom(name) VALUES('Brian')");
return client;
}
2011-02-25 11:33:54 +08:00
test('multiple results', function() {
test('queued queries', function() {
2011-02-25 11:33:54 +08:00
var client = setupClient();
var q = client.query("SELECT name FROM BOOM");
assert.emits(q, 'row', function(row) {
assert.equal(row.name, 'Aaron');
assert.emits(q, 'row', function(row) {
assert.equal(row.name, "Brian");
2011-02-24 12:41:54 +08:00
})
})
assert.emits(q, 'end', function() {
test('query with config', function() {
var q = client.query({text:'SELECT 1 as num'});
assert.emits(q, 'row', function(row) {
assert.strictEqual(row.num, 1);
assert.emits(q, 'end', function() {
client.end();
})
})
})
})
})
})
2011-02-25 11:33:54 +08:00
test('parameterized queries', function() {
test('with a single string param', function() {
var client = setupClient();
var q = client.query("SELECT * FROM boom WHERE name = $1", ['Aaron']);
2011-02-25 11:33:54 +08:00
assert.emits(q, 'row', function(row) {
assert.equal(row.name, 'Aaron');
2011-02-25 11:33:54 +08:00
})
assert.emits(q, 'end', function() {
client.end();
});
})
2011-02-25 11:33:54 +08:00
test('with object config for query', function() {
var client = setupClient();
var q = client.query({
text: "SELECT name FROM boom WHERE name = $1",
values: ['Brian']
});
assert.emits(q, 'row', function(row) {
assert.equal(row.name, 'Brian');
})
assert.emits(q, 'end', function() {
client.end();
})
})
})