-
Notifications
You must be signed in to change notification settings - Fork 5.6k
/
Copy pathchange_stream_query_settings_reject.js
31 lines (28 loc) · 1.26 KB
/
change_stream_query_settings_reject.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
// Tests setting query settings `reject` flag fails only the relevant changeStream query.
// @tags: [
// requires_fcv_81,
// assumes_read_preference_unchanged,
// assumes_read_concern_unchanged,
// change_stream_does_not_expect_txns,
// uses_change_streams,
// directly_against_shardsvrs_incompatible,
// simulate_atlas_proxy_incompatible,
// does_not_support_stepdowns,
// # Modifies the pipeline so PQS won't match
// do_not_run_in_whole_cluster_passthrough,
// do_not_run_in_whole_db_passthrough,
// ]
//
import {assertDropAndRecreateCollection} from "jstests/libs/collection_drop_recreate.js";
import {QuerySettingsUtils} from "jstests/libs/query/query_settings_utils.js";
const coll = assertDropAndRecreateCollection(db, jsTestName());
const qsutils = new QuerySettingsUtils(db, coll.getName());
qsutils.removeAllQuerySettings();
qsutils.assertRejection({
query: qsutils.makeAggregateQueryInstance(
{pipeline: [{$changeStream: {}}, {$match: {operationType: "insert"}}]}),
queryPrime: qsutils.makeAggregateQueryInstance(
{pipeline: [{$changeStream: {}}, {$match: {operationType: "delete"}}]}),
unrelatedQuery: qsutils.makeAggregateQueryInstance(
{pipeline: [{$changeStream: {}}, {$match: {"fullDocument.string": "value"}}]}),
});