Skip to content

Commit a866ec9

Browse files
authored
Use connection.enqueue in fetchDbConnectInfo (#106)
1 parent c28c5a7 commit a866ec9

File tree

2 files changed

+10
-21
lines changed

2 files changed

+10
-21
lines changed

lib/protocol/Connection.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -531,7 +531,7 @@ Connection.prototype.rollback = function rollback(options, cb) {
531531
};
532532

533533
Connection.prototype.fetchDbConnectInfo = function (options, cb) {
534-
this.send(request.dbConnectInfo(options), function (err, reply) {
534+
this.enqueue(request.dbConnectInfo(options), function(err, reply) {
535535
if (err) {
536536
return cb(err);
537537
}

test/lib.Connection.js

+9-20
Original file line numberDiff line numberDiff line change
@@ -392,9 +392,11 @@ describe('Lib', function () {
392392
var DATA = require('./mock/data/dbConnectInfo');
393393

394394
function prepareConnection(segmentData) {
395-
var connection = createConnection();
396-
397-
connection.send = function (msg, cb) {
395+
var connection = createConnection();
396+
connection._socket = {
397+
readyState: 'open'
398+
};
399+
connection.send = function (msg, cb) {
398400
var segment = new lib.reply.Segment(segmentData.kind, segmentData.functionCode);
399401
var part = segmentData.parts[0];
400402
segment.push(new lib.reply.Part(part.kind, part.attributes, part.argumentCount, part.buffer));
@@ -404,39 +406,26 @@ describe('Lib', function () {
404406
return connection;
405407
}
406408

407-
it('should fetch DB_CONNECT_INFO (not connected)', function (done) {
409+
it('should fetch DB_CONNECT_INFO with an error', function (done) {
408410
var connection = prepareConnection(DATA.NOT_CONNECTED);
411+
connection._socket = undefined;
409412

410413
connection.fetchDbConnectInfo({}, function (err, info) {
411-
info.isConnected.should.equal(false);
412-
info.host.should.equal('12.34.56.123');
413-
info.port.should.equal(31144);
414+
err.code.should.equal('EHDBCLOSE')
414415
done();
415416
});
416417
});
417418

418419
it('should fetch DB_CONNECT_INFO (connected)', function (done) {
419420
var connection = prepareConnection(DATA.CONNECTED);
420-
421+
connection._queue.resume();
421422
connection.fetchDbConnectInfo({}, function (err, info) {
422423
info.isConnected.should.equal(true);
423424
(!!info.host).should.be.not.ok;
424425
(!!info.port).should.be.not.ok;
425426
done();
426427
});
427428
});
428-
429-
it('fetch DB_CONNECT_INFO with an error', function (done) {
430-
var connection = createConnection();
431-
connection.send = function (msg, cb) {
432-
cb(new Error('Request was not successful'));
433-
};
434-
435-
connection.fetchDbConnectInfo({}, function (err) {
436-
err.message.should.equal('Request was not successful');
437-
done();
438-
});
439-
});
440429
});
441430

442431
it('should connect to the database', function (done) {

0 commit comments

Comments
 (0)