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

Commit d00b1ab

Browse files
Kevmbroadst
Kev
authored andcommitted
fix(uri_parser): add replSet to exemption list for number coercion
* fix(uri_parser) bypass number coercion for replicaSet values in connection string * fix (uri_parser) do not coerce replicaSet with leading number to number
1 parent 2fa2140 commit d00b1ab

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

lib/uri_parser.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ const BOOLEAN_OPTIONS = new Set([
175175
]);
176176

177177
// Known string options, only used to bypass Number coercion in `parseQueryStringItemValue`
178-
const STRING_OPTIONS = new Set(['authsource']);
178+
const STRING_OPTIONS = new Set(['authsource', 'replicaset']);
179179

180180
// Supported text representations of auth mechanisms
181181
// NOTE: this list exists in native already, if it is merged here we should deduplicate

test/tests/unit/connection_string_tests.js

+10
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,16 @@ describe('Connection String', function() {
119119
});
120120
});
121121

122+
it('should parse a replicaSet with a leading number', function(done) {
123+
parseConnectionString('mongodb://localhost/?replicaSet=123abc', (err, result) => {
124+
expect(err).to.not.exist;
125+
expect(result.options).to.have.property('replicaSet');
126+
expect(result.options.replicaSet).to.equal('123abc');
127+
128+
done();
129+
});
130+
});
131+
122132
describe('validation', function() {
123133
it('should validate compression options', function(done) {
124134
parseConnectionString('mongodb://localhost/?zlibCompressionLevel=15', err => {

0 commit comments

Comments
 (0)