mirror of
https://github.com/brianc/node-postgres.git
synced 2026-01-18 15:55:05 +00:00
Added integration test for overriding type parsers on a per-client basis.
This commit is contained in:
parent
e2ea482f9b
commit
5fff5fc61f
34
test/integration/client/type-parser-override-tests.js
Normal file
34
test/integration/client/type-parser-override-tests.js
Normal file
@ -0,0 +1,34 @@
|
||||
var helper = require(__dirname + '/test-helper');
|
||||
|
||||
function testTypeParser(client, expectedResult, done) {
|
||||
var boolValue = true;
|
||||
client.query('CREATE TEMP TABLE parserOverrideTest(id bool)');
|
||||
client.query('INSERT INTO parserOverrideTest(id) VALUES ($1)', [boolValue]);
|
||||
client.query('SELECT * FROM parserOverrideTest', assert.success(function(result) {
|
||||
assert.equal(result.rows[0].id, expectedResult);
|
||||
helper.pg.end();
|
||||
done();
|
||||
}));
|
||||
}
|
||||
|
||||
helper.pg.connect(helper.config, assert.success(function(client1, done1) {
|
||||
helper.pg.connect(helper.config, assert.success(function(client2, done2) {
|
||||
var boolTypeOID = 16;
|
||||
client1.setTypeParser(boolTypeOID, function(){
|
||||
return 'first client';
|
||||
});
|
||||
client2.setTypeParser(boolTypeOID, function(){
|
||||
return 'second client';
|
||||
});
|
||||
|
||||
client1.setTypeParser(boolTypeOID, 'binary', function(){
|
||||
return 'first client binary';
|
||||
});
|
||||
client2.setTypeParser(boolTypeOID, 'binary', function(){
|
||||
return 'second client binary';
|
||||
});
|
||||
|
||||
testTypeParser(client1, 'first client', done1);
|
||||
testTypeParser(client2, 'second client', done2);
|
||||
}));
|
||||
}));
|
||||
Loading…
x
Reference in New Issue
Block a user