Files
mongo/jstests/core/write/bulk/bulk_write.js
seanzimm 65b881d228 SERVER-52419 Enable feature flag for bulkWrite (#18965)
GitOrigin-RevId: fbb748674d551c1d1745955f081445c1f28bfd51
2024-02-20 19:05:27 +00:00

87 lines
2.4 KiB
JavaScript

/**
* Tests bulk write command for valid input.
*
* @tags: [
* # The test runs commands that are not allowed with security token: bulkWrite.
* not_allowed_with_signed_security_token,
* command_not_supported_in_serverless,
* requires_fcv_80
* ]
*/
var coll = db.getCollection("coll");
var coll1 = db.getCollection("coll1");
coll.drop();
coll1.drop();
// Make sure a properly formed request has successful result
assert.commandWorked(db.adminCommand(
{bulkWrite: 1, ops: [{insert: 0, document: {skey: "MongoDB"}}], nsInfo: [{ns: "test.coll"}]}));
assert.eq(coll.find().itcount(), 1);
assert.eq(coll1.find().itcount(), 0);
coll.drop();
// Make sure optional fields are accepted
var res = db.adminCommand({
bulkWrite: 1,
ops: [{insert: 0, document: {skey: "MongoDB"}}],
nsInfo: [{ns: "test.coll"}],
cursor: {batchSize: 1024},
bypassDocumentValidation: true,
ordered: false
});
assert.commandWorked(res);
assert.eq(res.nErrors, 0, "bulkWrite command response: " + tojson(res));
assert.eq(coll.find().itcount(), 1);
assert.eq(coll1.find().itcount(), 0);
coll.drop();
// Make sure ops and nsInfo can take arrays properly
res = db.adminCommand({
bulkWrite: 1,
ops: [{insert: 1, document: {skey: "MongoDB"}}, {insert: 0, document: {skey: "MongoDB"}}],
nsInfo: [{ns: "test.coll"}, {ns: "test.coll1"}]
});
assert.commandWorked(res);
assert.eq(res.nErrors, 0, "bulkWrite command response: " + tojson(res));
assert.eq(coll.find().itcount(), 1);
assert.eq(coll1.find().itcount(), 1);
coll.drop();
coll1.drop();
// Test 2 inserts into the same namespace
res = db.adminCommand({
bulkWrite: 1,
ops: [{insert: 0, document: {skey: "MongoDB"}}, {insert: 0, document: {skey: "MongoDB"}}],
nsInfo: [{ns: "test.coll"}]
});
assert.commandWorked(res);
assert.eq(res.nErrors, 0, "bulkWrite command response: " + tojson(res));
assert.eq(coll.find().itcount(), 2);
assert.eq(coll1.find().itcount(), 0);
coll.drop();
// Test BypassDocumentValidator
assert.commandWorked(coll.insert({_id: 1}));
assert.commandWorked(db.runCommand({collMod: "coll", validator: {a: {$exists: true}}}));
res = db.adminCommand({
bulkWrite: 1,
ops: [{insert: 0, document: {_id: 3, skey: "MongoDB"}}],
nsInfo: [{ns: "test.coll"}],
bypassDocumentValidation: true,
});
assert.commandWorked(res);
assert.eq(res.nErrors, 0, "bulkWrite command response: " + tojson(res));
assert.eq(1, coll.count({_id: 3}));
coll.drop();