summaryrefslogtreecommitdiff
path: root/jstests/sharding
diff options
context:
space:
mode:
authorAnton Korshunov <anton.korshunov@mongodb.com>2019-02-19 10:54:29 +0000
committerAnton Korshunov <anton.korshunov@mongodb.com>2019-03-07 20:55:59 +0000
commitf2b20e43b4abd5dace54432676c539efb187b020 (patch)
treeb09c0b15e816f3a46331c6f689528c7849eac067 /jstests/sharding
parent9a7b62f9de5450fb06c9f0f280c12078b087ab33 (diff)
downloadmongo-f2b20e43b4abd5dace54432676c539efb187b020.tar.gz
SERVER-39650 Ensure internal options cannot be specified in a raw aggregate command sent to mongos
(cherry picked from commit 3b4c635f2a3a65a8804232c80a48cdefa3c26b65)
Diffstat (limited to 'jstests/sharding')
-rw-r--r--jstests/sharding/aggregation_internal_parameters.js97
1 files changed, 97 insertions, 0 deletions
diff --git a/jstests/sharding/aggregation_internal_parameters.js b/jstests/sharding/aggregation_internal_parameters.js
new file mode 100644
index 00000000000..7ac3943c901
--- /dev/null
+++ b/jstests/sharding/aggregation_internal_parameters.js
@@ -0,0 +1,97 @@
+/**
+ * Tests that mongoS rejects 'aggregate' commands which explicitly set any of the
+ * parameters that mongoS uses internally when communicating with the shards.
+ */
+(function() {
+ "use strict";
+
+ const st = new ShardingTest({shards: 2, rs: {nodes: 1, enableMajorityReadConcern: ''}});
+
+ const mongosDB = st.s0.getDB(jsTestName());
+ const mongosColl = mongosDB[jsTestName()];
+
+ assert.commandWorked(mongosDB.dropDatabase());
+
+ // Enable sharding on the test DB and ensure its primary is st.shard0.shardName.
+ assert.commandWorked(mongosDB.adminCommand({enableSharding: mongosDB.getName()}));
+ st.ensurePrimaryShard(mongosDB.getName(), st.rs0.getURL());
+
+ // Test that command succeeds when no internal options have been specified.
+ assert.commandWorked(
+ mongosDB.runCommand({aggregate: mongosColl.getName(), pipeline: [], cursor: {}}));
+
+ // Test that the command fails if we have 'needsMerge: false' without 'fromMongos'.
+ assert.commandFailedWithCode(
+ mongosDB.runCommand(
+ {aggregate: mongosColl.getName(), pipeline: [], cursor: {}, needsMerge: false}),
+ ErrorCodes.FailedToParse);
+
+ // Test that the command fails if we have 'needsMerge: true' without 'fromMongos'.
+ assert.commandFailedWithCode(
+ mongosDB.runCommand(
+ {aggregate: mongosColl.getName(), pipeline: [], cursor: {}, needsMerge: true}),
+ ErrorCodes.FailedToParse);
+
+ // Test that 'fromMongos: true' cannot be specified in a command sent to mongoS.
+ assert.commandFailedWithCode(
+ mongosDB.runCommand(
+ {aggregate: mongosColl.getName(), pipeline: [], cursor: {}, fromMongos: true}),
+ 51089);
+
+ // Test that 'fromMongos: false' can be specified in a command sent to mongoS.
+ assert.commandWorked(mongosDB.runCommand(
+ {aggregate: mongosColl.getName(), pipeline: [], cursor: {}, fromMongos: false}));
+
+ // Test that the command fails if we have 'needsMerge: true' with 'fromMongos: false'.
+ assert.commandFailedWithCode(mongosDB.runCommand({
+ aggregate: mongosColl.getName(),
+ pipeline: [],
+ cursor: {},
+ needsMerge: true,
+ fromMongos: false
+ }),
+ 51089);
+
+ // Test that the command fails if we have 'needsMerge: true' with 'fromMongos: true'.
+ assert.commandFailedWithCode(mongosDB.runCommand({
+ aggregate: mongosColl.getName(),
+ pipeline: [],
+ cursor: {},
+ needsMerge: true,
+ fromMongos: true
+ }),
+ 51089);
+
+ // Test that 'needsMerge: false' can be specified in a command sent to mongoS along with
+ // 'fromMongos: false'.
+ assert.commandWorked(mongosDB.runCommand({
+ aggregate: mongosColl.getName(),
+ pipeline: [],
+ cursor: {},
+ needsMerge: false,
+ fromMongos: false
+ }));
+
+ // Test that 'mergeByPBRT: true' cannot be specified in a command sent to mongoS.
+ assert.commandFailedWithCode(
+ mongosDB.runCommand(
+ {aggregate: mongosColl.getName(), pipeline: [], cursor: {}, mergeByPBRT: true}),
+ 51089);
+
+ // Test that 'mergeByPBRT: false' can be specified in a command sent to mongoS.
+ assert.commandWorked(mongosDB.runCommand(
+ {aggregate: mongosColl.getName(), pipeline: [], cursor: {}, mergeByPBRT: false}));
+
+ // Test that the command fails when all internal parameters have been specified.
+ assert.commandFailedWithCode(mongosDB.runCommand({
+ aggregate: mongosColl.getName(),
+ pipeline: [],
+ cursor: {},
+ needsMerge: true,
+ fromMongos: true,
+ mergeByPBRT: true
+ }),
+ 51089);
+
+ st.stop();
+})();