Skip to content
This repository was archived by the owner on Feb 4, 2022. It is now read-only.

Commit 6d6d19a

Browse files
Jessica Lordmbroadst
Jessica Lord
authored andcommitted
fix(sdam): more explicit wire protocol error message
NODE-1186
1 parent de62615 commit 6d6d19a

File tree

2 files changed

+52
-8
lines changed

2 files changed

+52
-8
lines changed

lib/topologies/server.js

+12-1
Original file line numberDiff line numberDiff line change
@@ -363,7 +363,18 @@ var eventHandler = function(self, event) {
363363

364364
if (!isSupportedServer(result.result)) {
365365
self.destroy();
366-
return self.emit('error', new MongoError('unsupported server version'), self);
366+
const latestSupportedVersion = '2.6';
367+
const message =
368+
'Server at ' +
369+
self.s.options.host +
370+
':' +
371+
self.s.options.port +
372+
' reports wire version ' +
373+
(result.result.maxWireVersion || 0) +
374+
', but this version of Node.js Driver requires at least 2 (MongoDB' +
375+
latestSupportedVersion +
376+
').';
377+
return self.emit('error', new MongoError(message), self);
367378
}
368379

369380
// Determine whether the server is instructing us to use a compressor

test/tests/functional/server_tests.js

+40-7
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
'use strict';
22

3-
var expect = require('chai').expect,
4-
f = require('util').format,
5-
locateAuthMethod = require('./shared').locateAuthMethod,
6-
executeCommand = require('./shared').executeCommand,
7-
Server = require('../../../lib/topologies/server'),
8-
Bson = require('bson'),
9-
Connection = require('../../../lib/connection/connection');
3+
const expect = require('chai').expect;
4+
const f = require('util').format;
5+
const locateAuthMethod = require('./shared').locateAuthMethod;
6+
const executeCommand = require('./shared').executeCommand;
7+
const Server = require('../../../lib/topologies/server');
8+
const Bson = require('bson');
9+
const Connection = require('../../../lib/connection/connection');
10+
const mock = require('../../mock');
1011

1112
describe('Server tests', function() {
1213
it('should correctly connect server to single instance', {
@@ -1043,4 +1044,36 @@ describe('Server tests', function() {
10431044
}
10441045
}
10451046
);
1047+
1048+
describe('Unsupported wire protocols', function() {
1049+
let server;
1050+
beforeEach(() => mock.createServer().then(_server => (server = _server)));
1051+
afterEach(() => mock.cleanup());
1052+
1053+
it('errors when unsupported wire protocol is returned from isMaster', {
1054+
metadata: { requires: { topology: ['single'] } },
1055+
1056+
test: function(done) {
1057+
server.setMessageHandler(request => {
1058+
request.reply({ ok: 1 });
1059+
});
1060+
1061+
const client = new Server(server.address());
1062+
client.on('error', error => {
1063+
let err;
1064+
try {
1065+
expect(error).to.be.an.instanceOf(Error);
1066+
expect(error.message).to.have.string('but this version of Node.js Driver requires');
1067+
} catch (e) {
1068+
err = e;
1069+
}
1070+
done(err);
1071+
});
1072+
client.on('connect', () => {
1073+
done(new Error('This should not connect'));
1074+
});
1075+
client.connect();
1076+
}
1077+
});
1078+
});
10461079
});

0 commit comments

Comments
 (0)