Files
mongo/jstests/core/query/explain/explain_validation.js
Matthew Russotto 4263c2b947 SERVER-87563 Replace uses of magic number error code with symbolic IDLUnknownField error
GitOrigin-RevId: 77ab409bcaeaab2c3857dd5950fea22ec43c1a82
2024-04-23 23:32:40 +00:00

22 lines
796 B
JavaScript

/**
* Tests that an unknown field in the explain command will be rejected while generic command
* arguments will be permitted to pass validation.
*
* @tags: [
* assumes_read_concern_local,
* ]
*/
const testDB = db.getSiblingDB(jsTestName());
// Drop and recreate the test database and a test collection.
assert.commandWorked(testDB.dropDatabase());
assert.commandWorked(testDB.test.createIndex({a: 1}));
// Test that an unknown field is rejected during explain command parsing.
assert.commandFailedWithCode(testDB.runCommand({explain: {find: "test"}, unknownField: true}),
ErrorCodes.IDLUnknownField);
// Test that a generic argument will be accepted by command parsing.
assert.commandWorked(testDB.runCommand({explain: {find: "test"}, comment: true}));