|
| 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