1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
|
/**
* 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 the 'exchange' parameter cannot be specified in a command sent to mongoS.
assert.commandFailedWithCode(mongosDB.runCommand({
aggregate: mongosColl.getName(),
pipeline: [],
cursor: {},
exchange: {policy: 'roundrobin', consumers: NumberInt(2)}
}),
51028);
// 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,
exchange: {policy: 'roundrobin', consumers: NumberInt(2)}
}),
51028);
// Test that the command fails when all internal parameters but exchange have been specified.
assert.commandFailedWithCode(mongosDB.runCommand({
aggregate: mongosColl.getName(),
pipeline: [],
cursor: {},
needsMerge: true,
fromMongos: true
}),
51089);
st.stop();
})();
|