Files
mongo/jstests/core/client_metadata_ismaster.js
2019-07-27 11:02:23 -04:00

12 lines
435 B
JavaScript

// Test that verifies client metadata behavior for isMaster
(function() {
"use strict";
// Verify that a isMaster request fails if it contains client metadata, and it is not first.
// The shell sends isMaster on the first connection
var result = db.runCommand({"isMaster": 1, "client": {"application": "foobar"}});
assert.commandFailed(result);
assert.eq(result.code, ErrorCodes.ClientMetadataCannotBeMutated, tojson(result));
})();