forked from mongodb/mongo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvalidate_commands_after_coll_drop.js
283 lines (255 loc) · 8.18 KB
/
validate_commands_after_coll_drop.js
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
/**
* Test that executing commands after collection.drop() returns the expected results.
*
* @tags: [
* # This test uses getNext explicitly, so is sensitive to cases where it is retried and/or run on
* # a secondary mongod
* assumes_standalone_mongod,
* does_not_support_stepdowns,
* requires_non_retryable_writes,
* # Those are required for testing mapReduce
* not_allowed_with_signed_security_token,
* requires_scripting
* ]
*/
import {getWinningPlanFromExplain, isEofPlan} from "jstests/libs/query/analyze_plan.js";
const docs = [{a: 1}, {a: 2}, {a: 2}, {a: 3}];
const dbName = "validate_commands_after_coll_drop_db";
const collName = "validate_commands_after_coll_drop_db";
const mongo = db.getMongo();
/* The individual flavors of drop that we will be testing. */
const dropOperations = [
{
dropCommand: (function(db) {
assert.commandWorked(db.runCommand({drop: collName}));
})
},
{
dropsDatabase: true,
dropCommand: (function() {
assert.commandWorked(mongo.getDB(dbName).dropDatabase());
})
}
];
/*
* Individual items from this array correspond to distinct commands whose operation after
* collection.drop() will be tested. The beforeDrop() function takes database and collection as
* arguments and returns an object, such as a cursor, that is then passed as the third argument of
* afterDrop().
*/
const commandValidatorsAfterCollDrop = [
{
afterDrop: (function(_, coll, __) {
return coll.aggregate(
{$match: {a: 2}},
)
.toArray()
.length == 0;
})
},
{
afterDrop: (function(_, coll, __) {
return coll.count({a: 2}) == 0;
})
},
{
afterDrop: (function(_, coll, __) {
return coll.countDocuments({a: 2}) == 0;
})
},
{
afterDrop: (function(_, coll, __) {
return coll.deleteOne({a: 3}).deletedCount == 0;
})
},
{
afterDrop: (function(_, coll, __) {
return coll.deleteMany({a: 3}).deletedCount == 0;
})
},
{
afterDrop: (function(_, coll, __) {
return coll.distinct("a").length == 0;
})
},
{
afterDrop: (function(_, coll, __) {
return coll.estimatedDocumentCount() == 0;
})
},
{
afterDrop: (function(_, coll, __) {
return coll.find({a: 2}).toArray().length == 0;
})
},
// We also test find() with no condition in case it is handled differently.
{
afterDrop: (function(_, coll, __) {
return coll.find().toArray().length == 0;
})
},
// Test creating the cursor before the drop() with the default batch size.
// No error expected since the entire result is populated prior to the drop().
{
beforeDrop: (function(_, coll) {
return coll.find({a: 2});
}),
afterDrop: (function(_, __, cur) {
return cur.toArray().length == 0;
})
},
// Test a cursor with a batchSize of 1. The getMore after the drop will error out.
{
beforeDrop: (function(_, coll, __) {
const cur = coll.find({a: 2}).batchSize(1);
cur.next();
return cur;
}),
afterDrop: (function(db, _, cur) {
assert.commandFailedWithCode(
db.runCommand("getMore", {getMore: cur._cursor._cursorid, collection: collName}),
ErrorCodes.QueryPlanKilled);
return true;
})
},
{
afterDrop: (function(_, coll, __) {
return coll.find({a: 2}).batchSize(0).toArray().length == 0;
})
},
{
afterDrop: (function(_, coll, __) {
return coll.find({a: 2}).batchSize(1).toArray().length == 0;
})
},
{
afterDrop: (function(_, coll, __) {
return coll.find().limit(1).toArray().length == 0;
})
},
{
afterDrop: (function(_, coll, __) {
return coll.find().skip(1).toArray().length == 0;
})
},
{
afterDrop: (function(_, coll, __) {
return coll.find().sort({"a": 1}).toArray().length == 0;
})
},
{
afterDrop: (function(_, coll, __) {
return coll.find().sort({"a": -1}).toArray().length == 0;
})
},
{
afterDrop: (function(_, coll, __) {
return coll.findAndModify({query: {a: 2}, update: {$inc: {a: 1}}, upsert: true}) ==
null;
})
},
{
afterDrop: (function(_, coll, __) {
return coll.findOne({a: 2}) == null;
})
},
{
afterDrop: (function(_, coll, __) {
return coll.findOneAndDelete({a: 2}) == null;
})
},
{
// We skip this test if we are using dropDatabase() as there will be no database to write
// the ouput mapReduce collection to.
requiresUndroppedDatabase: true,
afterDrop: (function(db, coll) {
coll.mapReduce(
function() {
emit(this.a);
},
function(a) {
return Array.sum(a);
},
{out: "validate_commands_after_drop_map_reduce1"});
return db.validate_commands_after_drop_map_reduce1.find().toArray().length == 0;
})
},
{
afterDrop: (function(_, coll, __) {
return coll.replaceOne({a: 3}, {a: 5}).matchedCount == 0;
})
},
{
afterDrop: (function(_, coll, __) {
return coll.update({a: 3}, {$set: {b: 3}}).nMatched == 0;
})
},
{
afterDrop: (function(_, coll, __) {
return coll.updateOne({a: 3}, {$set: {b: 3}}).matchedCount == 0;
})
},
{
afterDrop: (function(_, coll, __) {
return coll.updateMany({a: 3}, {$set: {b: 3}}).matchedCount == 0;
})
},
//
// The following operations continue to return after collection.drop():
//
{
afterDrop: (function(_, coll) {
const explain = assert.commandWorked(coll.find().explain());
let winningPlan = getWinningPlanFromExplain(explain);
assert(isEofPlan(db, winningPlan));
return explain != null;
})
},
/*
* Calling mapReduce() before the drop(). The complete result can still be retrieved after the
* drop(). We skip this test if we are using dropDatabase() as there will be no database to
* write the ouput mapReduce collection to.
*/
{
requiresUndroppedDatabase: true,
beforeDrop: (function(_, coll) {
coll.mapReduce(
function() {
emit(this._id, this.a);
},
function(key, values) {
return Array.sum(values);
},
{out: "validate_commands_after_drop_map_reduce2"});
}),
afterDrop: (function(db, _, __) {
return db.validate_commands_after_drop_map_reduce2.find()
.batchSize(0)
.toArray()
.length > 0;
})
},
{
afterDrop: (function(_, coll) {
return Object.keys(coll.stats()).length > 0;
})
},
];
for (const dropOperation of dropOperations) {
for (const validator of commandValidatorsAfterCollDrop) {
assert.commandWorked(mongo.getDB(dbName).dropDatabase());
const db = mongo.getDB(dbName);
const coll = db.getCollection(collName);
assert.commandWorked(coll.insertMany(docs));
const cur = validator.beforeDrop ? validator.beforeDrop(db, coll) : null;
// Note that most Validators have no beforeDrop, so they run entirely on a non-existent
// collection.
dropOperation.dropCommand(db);
if (dropOperation.dropsDatabase && validator.requiresUndroppedDatabase) {
continue;
}
assert(validator.afterDrop(db, coll, cur),
`Unexpected result from afterDrop: ${validator.afterDrop}, dropCommand: ${
dropOperation.dropCommand};`);
}
}