-
Notifications
You must be signed in to change notification settings - Fork 5.6k
/
Copy pathddl_view_events.js
327 lines (277 loc) · 11.8 KB
/
ddl_view_events.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
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
/**
* Test that change streams returns DDL operation on views.
*
* @tags: [
* requires_fcv_60,
* # TODO (SERVER-89668): Remove tag. Currently incompatible due to change
* # events containing the recordIdsReplicated:true option, which
* # this test dislikes.
* exclude_when_record_ids_replicated
* ]
*/
import {assertDropCollection} from "jstests/libs/collection_drop_recreate.js";
import {
assertChangeStreamEventEq,
canonicalizeEventForTesting,
ChangeStreamTest
} from "jstests/libs/query/change_stream_util.js";
const testDB = db.getSiblingDB(jsTestName());
const dbName = testDB.getName();
const viewPipeline = [{$match: {a: 2}}, {$project: {a: 1}}];
function runViewEventAndResumeTest(showSystemEvents) {
jsTest.log("runViewEventAndResumeTest(showSystemEvents=" + showSystemEvents + ")");
// Drop all the namespaces accessed in the test.
assertDropCollection(testDB, "base");
assertDropCollection(testDB, "view");
assertDropCollection(testDB, "viewOnView");
// Drop also the database itself (to drop system collections)
assert.commandWorked(testDB.dropDatabase());
// Insert some data on the base collection so that the passthrough suites would finishing
// setting up the collections, and does not generate unexpected operations during the test.
assert.commandWorked(testDB.createCollection("base"));
assert.commandWorked(testDB["base"].insert({_id: 1}));
let cursor = testDB.aggregate(
[{$changeStream: {showExpandedEvents: true, showSystemEvents: showSystemEvents}}]);
assert.commandWorked(testDB.createView("view", "base", viewPipeline));
assert.soon(() => cursor.hasNext());
let event = cursor.next();
if (showSystemEvents) {
// Creating the first view of the database also creates `system.views`.
assert(event.clusterTime, event);
assert(event.wallTime, event);
assertChangeStreamEventEq(event, {
operationType: "create",
ns: {db: dbName, coll: "system.views"},
nsType: "collection",
});
assert.soon(() => cursor.hasNext());
event = cursor.next();
}
assert(event.clusterTime, event);
assert(event.wallTime, event);
assertChangeStreamEventEq(event, {
operationType: "create",
ns: {db: dbName, coll: "view"},
operationDescription: {viewOn: "base", pipeline: viewPipeline},
nsType: "view",
});
// Ensure that we can resume the change stream using a resuming token from the create view
// event.
cursor = testDB.aggregate([{
$changeStream:
{resumeAfter: event._id, showExpandedEvents: true, showSystemEvents: showSystemEvents}
}]);
assert.commandWorked(testDB.createView("viewOnView", "view", viewPipeline));
assert.soon(() => cursor.hasNext());
const events = [];
const createEvent = cursor.next();
events.push(createEvent);
assertChangeStreamEventEq(createEvent, {
operationType: "create",
ns: {db: dbName, coll: "viewOnView"},
operationDescription: {viewOn: "view", pipeline: viewPipeline},
nsType: "view",
});
// Test 'collMod' command on views.
const updatedViewPipeline = [{$match: {a: 1}}, {$project: {a: 1}}];
assert.commandWorked(
testDB.runCommand({collMod: "viewOnView", viewOn: "view", pipeline: updatedViewPipeline}));
assert.soon(() => cursor.hasNext());
const modifyEvent = cursor.next();
events.push(modifyEvent);
assertChangeStreamEventEq(modifyEvent, {
operationType: "modify",
ns: {db: dbName, coll: "viewOnView"},
operationDescription: {viewOn: "view", pipeline: updatedViewPipeline}
});
// Test 'drop' events.
assertDropCollection(testDB, "view");
assert.soon(() => cursor.hasNext());
const dropEvent = cursor.next();
events.push(dropEvent);
assertChangeStreamEventEq(dropEvent, {operationType: "drop", ns: {db: dbName, coll: "view"}});
assertDropCollection(testDB, "viewOnView");
assert.soon(() => cursor.hasNext());
const dropEventView = cursor.next();
events.push(dropEventView);
assertChangeStreamEventEq(dropEventView,
{operationType: "drop", ns: {db: dbName, coll: "viewOnView"}});
// Test view change stream events on a timeseries collection.
assert.commandWorked(
testDB.createCollection("timeseries_coll", {timeseries: {timeField: "time"}}));
if (showSystemEvents) {
// Also expect the creation of the buckets collection.
assert.soon(() => cursor.hasNext());
const createBucketsEvent = cursor.next();
events.push(createBucketsEvent);
assertChangeStreamEventEq(createBucketsEvent, {
operationType: "create",
ns: {db: dbName, coll: "system.buckets.timeseries_coll"},
nsType: "collection",
});
}
assert.soon(() => cursor.hasNext());
const createTimeseriesEvent = cursor.next();
events.push(createTimeseriesEvent);
assertChangeStreamEventEq(createTimeseriesEvent, {
operationType: "create",
ns: {db: dbName, coll: "timeseries_coll"},
operationDescription: {
viewOn: "system.buckets.timeseries_coll",
pipeline: [{$_internalUnpackBucket: {timeField: "time", bucketMaxSpanSeconds: 3600}}],
},
nsType: "timeseries",
});
assert.commandWorked(
testDB.runCommand({collMod: "timeseries_coll", timeseries: {granularity: 'minutes'}}));
assert.soon(() => cursor.hasNext());
let modifyTimeseriesEvent = cursor.next();
events.push(modifyTimeseriesEvent);
// In some suites, the timeseries is sharded, so expect createIndexes and shardCollection
if (showSystemEvents && modifyTimeseriesEvent.operationType == "createIndexes") {
const createIndexesEvent = modifyTimeseriesEvent;
assert.soon(() => cursor.hasNext());
const shardCollectionEvent = cursor.next();
events.push(shardCollectionEvent);
assert.soon(() => cursor.hasNext());
modifyTimeseriesEvent = cursor.next();
events.push(modifyTimeseriesEvent);
assertChangeStreamEventEq(createIndexesEvent, {
operationType: "createIndexes",
ns: {db: dbName, coll: "system.buckets.timeseries_coll"}
});
assertChangeStreamEventEq(shardCollectionEvent, {
operationType: "shardCollection",
ns: {db: dbName, coll: "system.buckets.timeseries_coll"}
});
}
assertChangeStreamEventEq(modifyTimeseriesEvent, {
operationType: "modify",
ns: {db: dbName, coll: "timeseries_coll"},
operationDescription: {
viewOn: "system.buckets.timeseries_coll",
pipeline: [{$_internalUnpackBucket: {timeField: "time", bucketMaxSpanSeconds: 86400}}]
}
});
if (showSystemEvents) {
// Modifying the timeseries also generates an update of the buckets collection.
assert.soon(() => cursor.hasNext());
const modifyBucketsEvent = cursor.next();
events.push(modifyBucketsEvent);
assertChangeStreamEventEq(
modifyBucketsEvent,
{operationType: "modify", ns: {db: dbName, coll: "system.buckets.timeseries_coll"}},
(event, expected) => {
event = canonicalizeEventForTesting(event, expected);
delete event.stateBeforeChange;
return event;
});
}
assertDropCollection(testDB, "timeseries_coll");
assert.soon(() => cursor.hasNext());
const dropTimeseriesEvent = cursor.next();
events.push(dropTimeseriesEvent);
assertChangeStreamEventEq(dropTimeseriesEvent, {
operationType: "drop",
ns: {db: dbName, coll: "timeseries_coll"},
});
if (showSystemEvents) {
// Also expect the drop of the buckets collection.
assert.soon(() => cursor.hasNext());
const dropBucketsEvent = cursor.next();
events.push(dropBucketsEvent);
assertChangeStreamEventEq(dropBucketsEvent, {
operationType: "drop",
ns: {db: dbName, coll: "system.buckets.timeseries_coll"},
});
// Test that dropping system.views generates an event under `showSystemEvents`.
assertDropCollection(testDB, "system.views");
assert.soon(() => cursor.hasNext());
const dropSystemViewsEvent = cursor.next();
events.push(dropSystemViewsEvent);
assertChangeStreamEventEq(dropSystemViewsEvent, {
operationType: "drop",
ns: {db: dbName, coll: "system.views"},
});
}
// Generate a dummy event so that we can test all events for resumability.
assert.commandWorked(testDB.createView("dummyView", "view", viewPipeline));
assert.soon(() => cursor.hasNext());
const dummyEvent = cursor.next();
events.push(dummyEvent);
assertDropCollection(testDB, "dummyView");
assert.soon(() => cursor.hasNext());
// Test that for all the commands we can resume the change stream using a resume token.
for (let idx = 0; idx < events.length - 1; idx++) {
const event = events[idx];
const subsequent = events[idx + 1];
const newCursor = testDB.aggregate([{
$changeStream: {
resumeAfter: event._id,
showExpandedEvents: true,
showSystemEvents: showSystemEvents
}
}]);
assert.soon(() => newCursor.hasNext());
assertChangeStreamEventEq(newCursor.next(), subsequent);
}
}
runViewEventAndResumeTest(false /* showSystemEvents */);
runViewEventAndResumeTest(true /* showSystemEvents */);
const cst = new ChangeStreamTest(testDB);
// Cannot start a change stream on a view namespace.
assert.commandWorked(testDB.createView("view", "base", viewPipeline));
assert.soon(() => {
try {
cst.startWatchingChanges({
pipeline: [{$changeStream: {showExpandedEvents: true}}],
collection: "view",
doNotModifyInPassthroughs: true
});
} catch (e) {
assert.commandFailedWithCode(e, ErrorCodes.CommandNotSupportedOnView);
return true;
}
return false;
});
// Creating a collection level change stream before creating a view with the same name, does not
// produce any view related events.
assertDropCollection(testDB, "view");
let cursor = cst.startWatchingChanges({
pipeline: [{$changeStream: {showExpandedEvents: true}}],
collection: "view",
doNotModifyInPassthroughs: true
});
// Create a view, then drop it and create a normal collection with the same name.
assert.commandWorked(testDB.createView("view", "base", viewPipeline));
assertDropCollection(testDB, "view");
assert.commandWorked(testDB.createCollection("view"));
// Confirm that the stream only sees the normal collection creation, not the view events.
let event = cst.getNextChanges(cursor, 1)[0];
assert(event.collectionUUID, event);
assertChangeStreamEventEq(event, {
operationType: "create",
ns: {db: dbName, coll: "view"},
operationDescription: {idIndex: {v: 2, key: {_id: 1}, name: "_id_"}},
nsType: "collection",
});
// Change stream on a single collection does not produce view events.
assertDropCollection(testDB, "view");
cursor = cst.startWatchingChanges({
pipeline: [{$changeStream: {showExpandedEvents: true}}],
collection: "base",
doNotModifyInPassthroughs: true
});
// Verify that the view related operations are ignored, and only the event for insert on the base
// collection is returned.
assert.commandWorked(testDB.createView("view", "base", viewPipeline));
assertDropCollection(testDB, "view");
assert.commandWorked(testDB["base"].insert({_id: 0}));
event = cst.getNextChanges(cursor, 1)[0];
assert(event.collectionUUID, event);
assertChangeStreamEventEq(event, {
operationType: "insert",
ns: {db: dbName, coll: "base"},
fullDocument: {_id: 0},
documentKey: {_id: 0}
});