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

Commit fcff104

Browse files
authored
fix(uri-parser): Incorrect parsing of arrays
Arrays passed in to the uri string by repeating fields are now parsed correctly. Fixes NODE-1605
1 parent c93aac1 commit fcff104

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

lib/uri_parser.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ function parseSrvConnectionString(uri, options, callback) {
137137
function parseQueryStringItemValue(value) {
138138
if (Array.isArray(value)) {
139139
// deduplicate and simplify arrays
140-
value = value.filter((value, idx) => value.indexOf(value) === idx);
140+
value = value.filter((v, idx) => value.indexOf(v) === idx);
141141
if (value.length === 1) value = value[0];
142142
} else if (value.indexOf(':') > 0) {
143143
value = value.split(',').reduce((result, pair) => {

test/tests/unit/connection_string_spec_tests.js

+8
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,14 @@ describe('Connection String (spec)', function() {
3232
});
3333
});
3434

35+
it('should correctly parse arrays', function(done) {
36+
parseConnectionString('mongodb://hostname?foo=bar&foo=baz', function(err, result) {
37+
expect(err).to.not.exist;
38+
expect(result.options.foo).to.deep.equal(['bar', 'baz']);
39+
done();
40+
});
41+
});
42+
3543
const testFiles = fs
3644
.readdirSync(f('%s/../spec/connection-string', __dirname))
3745
.filter(x => x.indexOf('.json') !== -1)

0 commit comments

Comments
 (0)