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

Commit a81678b

Browse files
author
Sophie Saskin
authoredJun 14, 2018
fix(wireprotocol): only send bypassDocumentValidation if true
The bypassDocumentValidation key will only be set if it explicitly receives a true, otherwise it remains undefined. Fixes NODE-1492
1 parent 6fec2ce commit a81678b

File tree

4 files changed

+50
-2
lines changed

4 files changed

+50
-2
lines changed
 

‎lib/wireprotocol/2_6_support.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ var executeWrite = function(pool, bson, type, opsField, ns, ops, options, callba
4343
}
4444

4545
// Do we have bypassDocumentValidation set, then enable it on the write command
46-
if (typeof options.bypassDocumentValidation === 'boolean') {
46+
if (options.bypassDocumentValidation === true) {
4747
writeCommand.bypassDocumentValidation = options.bypassDocumentValidation;
4848
}
4949

‎lib/wireprotocol/3_2_support.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ var executeWrite = function(pool, bson, type, opsField, ns, ops, options, callba
101101
}
102102

103103
// Do we have bypassDocumentValidation set, then enable it on the write command
104-
if (typeof options.bypassDocumentValidation === 'boolean') {
104+
if (options.bypassDocumentValidation === true) {
105105
writeCommand.bypassDocumentValidation = options.bypassDocumentValidation;
106106
}
107107

‎package.json

+1
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@
3434
"mongodb-mock-server": "^1.0.0",
3535
"mongodb-test-runner": "^1.1.18",
3636
"prettier": "~1.12.0",
37+
"sinon": "^6.0.0",
3738
"snappy": "^6.0.1"
3839
},
3940
"peerOptionalDependencies": {

‎test/tests/unit/wire_protocol_test.js

+47
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
'use strict';
2+
3+
const chai = require('chai');
4+
const expect = chai.expect;
5+
const bson = require('bson');
6+
const sinon = require('sinon');
7+
const Pool = require('../../../lib/connection/pool.js');
8+
const wireProtocol2_6 = require('../../../lib/wireprotocol/2_6_support.js');
9+
const wireProtocol3_2 = require('../../../lib/wireprotocol/3_2_support.js');
10+
11+
describe('WireProtocol', function() {
12+
it('2.6 should only set bypassDocumentValidation to true if explicitly set by user to true', function() {
13+
testPoolWrite(true, new wireProtocol2_6(), true);
14+
});
15+
16+
it('2.6 should not set bypassDocumentValidation to anything if not explicitly set by user to true', function() {
17+
testPoolWrite(false, new wireProtocol2_6(), undefined);
18+
});
19+
20+
it('3.2 should only set bypassDocumentValidation to true if explicitly set by user to true', function() {
21+
testPoolWrite(true, new wireProtocol3_2(), true);
22+
});
23+
24+
it('3.2 should not set bypassDocumentValidation to anything if not explicitly set by user to true', function() {
25+
testPoolWrite(false, new wireProtocol3_2(), undefined);
26+
});
27+
28+
function testPoolWrite(bypassDocumentValidation, wireProtocol, expected) {
29+
const pool = sinon.createStubInstance(Pool);
30+
const isMaster = {};
31+
const ns = 'fake.namespace';
32+
const ops = [{ a: 1 }, { b: 2 }];
33+
const options = { bypassDocumentValidation: bypassDocumentValidation };
34+
35+
wireProtocol.insert(pool, isMaster, ns, bson, ops, options, () => {});
36+
37+
if (expected) {
38+
expect(pool.write.lastCall.args[0])
39+
.to.have.nested.property('query.bypassDocumentValidation')
40+
.that.equals(expected);
41+
} else {
42+
expect(pool.write.lastCall.args[0]).to.not.have.nested.property(
43+
'query.bypassDocumentValidation'
44+
);
45+
}
46+
}
47+
});

0 commit comments

Comments
 (0)
This repository has been archived.