merged master
This commit is contained in:
commit
bbe704b8db
1
lib/.#client.js
Symbolic link
1
lib/.#client.js
Symbolic link
@ -0,0 +1 @@
|
|||||||
|
bmc@explodemy.com.14585:1298675411
|
@ -23,9 +23,12 @@ var Client = function(config) {
|
|||||||
this.password = config.password || defaults.password;
|
this.password = config.password || defaults.password;
|
||||||
this.encoding = 'utf8';
|
this.encoding = 'utf8';
|
||||||
var self = this;
|
var self = this;
|
||||||
|
<<<<<<< HEAD
|
||||||
this.connection.on('notification', function(msg) {
|
this.connection.on('notification', function(msg) {
|
||||||
self.emit('notification', msg);
|
self.emit('notification', msg);
|
||||||
})
|
})
|
||||||
|
=======
|
||||||
|
>>>>>>> master
|
||||||
};
|
};
|
||||||
|
|
||||||
sys.inherits(Client, EventEmitter);
|
sys.inherits(Client, EventEmitter);
|
||||||
@ -89,6 +92,11 @@ p.connect = function() {
|
|||||||
});
|
});
|
||||||
|
|
||||||
self.emit('connect');
|
self.emit('connect');
|
||||||
|
|
||||||
|
con.on('notification', function(msg) {
|
||||||
|
self.emit('notification', msg);
|
||||||
|
})
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
||||||
con.on('readyForQuery', function() {
|
con.on('readyForQuery', function() {
|
||||||
@ -112,6 +120,11 @@ p.connect = function() {
|
|||||||
self.activeQuery = null;
|
self.activeQuery = null;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
con.on('notice', function(msg) {
|
||||||
|
self.emit('notice', msg);
|
||||||
|
})
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
p._pulseQueryQueue = function() {
|
p._pulseQueryQueue = function() {
|
||||||
|
26
test/integration/client/notice-tests.js
Normal file
26
test/integration/client/notice-tests.js
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
var helper = require(__dirname + '/test-helper');
|
||||||
|
test('emits notice message', function() {
|
||||||
|
var client = helper.client();
|
||||||
|
client.query('create temp table boom(id serial, size integer)');
|
||||||
|
assert.emits(client, 'notice', function(notice) {
|
||||||
|
assert.ok(notice != null);
|
||||||
|
client.end();
|
||||||
|
});
|
||||||
|
})
|
||||||
|
|
||||||
|
test('emits notify message', function() {
|
||||||
|
var client = helper.client();
|
||||||
|
client.query('LISTEN boom', assert.calls(function() {
|
||||||
|
var otherClient = helper.client();
|
||||||
|
otherClient.query('LISTEN boom', assert.calls(function() {
|
||||||
|
client.query('NOTIFY boom');
|
||||||
|
assert.emits(client, 'notification', function(msg) {
|
||||||
|
client.end()
|
||||||
|
});
|
||||||
|
assert.emits(otherClient, 'notification', function(msg) {
|
||||||
|
otherClient.end();
|
||||||
|
});
|
||||||
|
}));
|
||||||
|
}));
|
||||||
|
})
|
||||||
|
|
Loading…
Reference in New Issue
Block a user