1183 lines
28 KiB
JSON
1183 lines
28 KiB
JSON
{
|
|
"description": "CRUD Api Version 1",
|
|
"schemaVersion": "1.4",
|
|
"runOnRequirements": [
|
|
{
|
|
"minServerVersion": "4.9"
|
|
}
|
|
],
|
|
"createEntities": [
|
|
{
|
|
"client": {
|
|
"id": "client",
|
|
"observeEvents": [
|
|
"commandStartedEvent"
|
|
],
|
|
"serverApi": {
|
|
"version": "1",
|
|
"deprecationErrors": true
|
|
}
|
|
}
|
|
},
|
|
{
|
|
"database": {
|
|
"id": "database",
|
|
"client": "client",
|
|
"databaseName": "versioned-api-tests"
|
|
}
|
|
},
|
|
{
|
|
"database": {
|
|
"id": "adminDatabase",
|
|
"client": "client",
|
|
"databaseName": "admin"
|
|
}
|
|
},
|
|
{
|
|
"collection": {
|
|
"id": "collection",
|
|
"database": "database",
|
|
"collectionName": "test"
|
|
}
|
|
}
|
|
],
|
|
"_yamlAnchors": {
|
|
"versions": [
|
|
{
|
|
"apiVersion": "1",
|
|
"apiStrict": {
|
|
"$$unsetOrMatches": false
|
|
},
|
|
"apiDeprecationErrors": true
|
|
}
|
|
],
|
|
"namespace": "versioned-api-tests.test"
|
|
},
|
|
"initialData": [
|
|
{
|
|
"collectionName": "test",
|
|
"databaseName": "versioned-api-tests",
|
|
"documents": [
|
|
{
|
|
"_id": 1,
|
|
"x": 11
|
|
},
|
|
{
|
|
"_id": 2,
|
|
"x": 22
|
|
},
|
|
{
|
|
"_id": 3,
|
|
"x": 33
|
|
},
|
|
{
|
|
"_id": 4,
|
|
"x": 44
|
|
},
|
|
{
|
|
"_id": 5,
|
|
"x": 55
|
|
}
|
|
]
|
|
}
|
|
],
|
|
"tests": [
|
|
{
|
|
"description": "aggregate on collection appends declared API version",
|
|
"operations": [
|
|
{
|
|
"name": "aggregate",
|
|
"object": "collection",
|
|
"arguments": {
|
|
"pipeline": [
|
|
{
|
|
"$sort": {
|
|
"x": 1
|
|
}
|
|
},
|
|
{
|
|
"$match": {
|
|
"_id": {
|
|
"$gt": 1
|
|
}
|
|
}
|
|
}
|
|
]
|
|
}
|
|
}
|
|
],
|
|
"expectEvents": [
|
|
{
|
|
"client": "client",
|
|
"events": [
|
|
{
|
|
"commandStartedEvent": {
|
|
"command": {
|
|
"aggregate": "test",
|
|
"pipeline": [
|
|
{
|
|
"$sort": {
|
|
"x": 1
|
|
}
|
|
},
|
|
{
|
|
"$match": {
|
|
"_id": {
|
|
"$gt": 1
|
|
}
|
|
}
|
|
}
|
|
],
|
|
"apiVersion": "1",
|
|
"apiStrict": {
|
|
"$$unsetOrMatches": false
|
|
},
|
|
"apiDeprecationErrors": true
|
|
}
|
|
}
|
|
}
|
|
]
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"description": "aggregate on database appends declared API version",
|
|
"runOnRequirements": [
|
|
{
|
|
"serverless": "forbid"
|
|
}
|
|
],
|
|
"operations": [
|
|
{
|
|
"name": "aggregate",
|
|
"object": "adminDatabase",
|
|
"arguments": {
|
|
"pipeline": [
|
|
{
|
|
"$listLocalSessions": {}
|
|
},
|
|
{
|
|
"$limit": 1
|
|
}
|
|
]
|
|
}
|
|
}
|
|
],
|
|
"expectEvents": [
|
|
{
|
|
"client": "client",
|
|
"events": [
|
|
{
|
|
"commandStartedEvent": {
|
|
"command": {
|
|
"aggregate": 1,
|
|
"pipeline": [
|
|
{
|
|
"$listLocalSessions": {}
|
|
},
|
|
{
|
|
"$limit": 1
|
|
}
|
|
],
|
|
"apiVersion": "1",
|
|
"apiStrict": {
|
|
"$$unsetOrMatches": false
|
|
},
|
|
"apiDeprecationErrors": true
|
|
}
|
|
}
|
|
}
|
|
]
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"description": "bulkWrite appends declared API version",
|
|
"operations": [
|
|
{
|
|
"name": "bulkWrite",
|
|
"object": "collection",
|
|
"arguments": {
|
|
"requests": [
|
|
{
|
|
"insertOne": {
|
|
"document": {
|
|
"_id": 6,
|
|
"x": 66
|
|
}
|
|
}
|
|
},
|
|
{
|
|
"updateOne": {
|
|
"filter": {
|
|
"_id": 2
|
|
},
|
|
"update": {
|
|
"$inc": {
|
|
"x": 1
|
|
}
|
|
}
|
|
}
|
|
},
|
|
{
|
|
"deleteMany": {
|
|
"filter": {
|
|
"x": {
|
|
"$nin": [
|
|
24,
|
|
34
|
|
]
|
|
}
|
|
}
|
|
}
|
|
},
|
|
{
|
|
"updateMany": {
|
|
"filter": {
|
|
"_id": {
|
|
"$gt": 1
|
|
}
|
|
},
|
|
"update": {
|
|
"$inc": {
|
|
"x": 1
|
|
}
|
|
}
|
|
}
|
|
},
|
|
{
|
|
"deleteOne": {
|
|
"filter": {
|
|
"_id": 7
|
|
}
|
|
}
|
|
},
|
|
{
|
|
"replaceOne": {
|
|
"filter": {
|
|
"_id": 4
|
|
},
|
|
"replacement": {
|
|
"_id": 4,
|
|
"x": 44
|
|
},
|
|
"upsert": true
|
|
}
|
|
}
|
|
],
|
|
"ordered": true
|
|
}
|
|
}
|
|
],
|
|
"expectEvents": [
|
|
{
|
|
"client": "client",
|
|
"events": [
|
|
{
|
|
"commandStartedEvent": {
|
|
"command": {
|
|
"insert": "test",
|
|
"documents": [
|
|
{
|
|
"_id": 6,
|
|
"x": 66
|
|
}
|
|
],
|
|
"apiVersion": "1",
|
|
"apiStrict": {
|
|
"$$unsetOrMatches": false
|
|
},
|
|
"apiDeprecationErrors": true
|
|
}
|
|
}
|
|
},
|
|
{
|
|
"commandStartedEvent": {
|
|
"command": {
|
|
"update": "test",
|
|
"updates": [
|
|
{
|
|
"q": {
|
|
"_id": 2
|
|
},
|
|
"u": {
|
|
"$inc": {
|
|
"x": 1
|
|
}
|
|
},
|
|
"multi": {
|
|
"$$unsetOrMatches": false
|
|
},
|
|
"upsert": {
|
|
"$$unsetOrMatches": false
|
|
}
|
|
}
|
|
],
|
|
"apiVersion": "1",
|
|
"apiStrict": {
|
|
"$$unsetOrMatches": false
|
|
},
|
|
"apiDeprecationErrors": true
|
|
}
|
|
}
|
|
},
|
|
{
|
|
"commandStartedEvent": {
|
|
"command": {
|
|
"delete": "test",
|
|
"deletes": [
|
|
{
|
|
"q": {
|
|
"x": {
|
|
"$nin": [
|
|
24,
|
|
34
|
|
]
|
|
}
|
|
},
|
|
"limit": 0
|
|
}
|
|
],
|
|
"apiVersion": "1",
|
|
"apiStrict": {
|
|
"$$unsetOrMatches": false
|
|
},
|
|
"apiDeprecationErrors": true
|
|
}
|
|
}
|
|
},
|
|
{
|
|
"commandStartedEvent": {
|
|
"command": {
|
|
"update": "test",
|
|
"updates": [
|
|
{
|
|
"q": {
|
|
"_id": {
|
|
"$gt": 1
|
|
}
|
|
},
|
|
"u": {
|
|
"$inc": {
|
|
"x": 1
|
|
}
|
|
},
|
|
"multi": true,
|
|
"upsert": {
|
|
"$$unsetOrMatches": false
|
|
}
|
|
}
|
|
],
|
|
"apiVersion": "1",
|
|
"apiStrict": {
|
|
"$$unsetOrMatches": false
|
|
},
|
|
"apiDeprecationErrors": true
|
|
}
|
|
}
|
|
},
|
|
{
|
|
"commandStartedEvent": {
|
|
"command": {
|
|
"delete": "test",
|
|
"deletes": [
|
|
{
|
|
"q": {
|
|
"_id": 7
|
|
},
|
|
"limit": 1
|
|
}
|
|
],
|
|
"apiVersion": "1",
|
|
"apiStrict": {
|
|
"$$unsetOrMatches": false
|
|
},
|
|
"apiDeprecationErrors": true
|
|
}
|
|
}
|
|
},
|
|
{
|
|
"commandStartedEvent": {
|
|
"command": {
|
|
"update": "test",
|
|
"updates": [
|
|
{
|
|
"q": {
|
|
"_id": 4
|
|
},
|
|
"u": {
|
|
"_id": 4,
|
|
"x": 44
|
|
},
|
|
"multi": {
|
|
"$$unsetOrMatches": false
|
|
},
|
|
"upsert": true
|
|
}
|
|
],
|
|
"apiVersion": "1",
|
|
"apiStrict": {
|
|
"$$unsetOrMatches": false
|
|
},
|
|
"apiDeprecationErrors": true
|
|
}
|
|
}
|
|
}
|
|
]
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"description": "client bulkWrite appends declared API version",
|
|
"runOnRequirements": [
|
|
{
|
|
"minServerVersion": "8.0",
|
|
"serverless": "forbid"
|
|
}
|
|
],
|
|
"operations": [
|
|
{
|
|
"name": "clientBulkWrite",
|
|
"object": "client",
|
|
"arguments": {
|
|
"models": [
|
|
{
|
|
"insertOne": {
|
|
"namespace": "versioned-api-tests.test",
|
|
"document": {
|
|
"_id": 6,
|
|
"x": 6
|
|
}
|
|
}
|
|
}
|
|
],
|
|
"verboseResults": true
|
|
},
|
|
"expectResult": {
|
|
"insertedCount": 1,
|
|
"upsertedCount": 0,
|
|
"matchedCount": 0,
|
|
"modifiedCount": 0,
|
|
"deletedCount": 0,
|
|
"insertResults": {
|
|
"0": {
|
|
"insertedId": 6
|
|
}
|
|
},
|
|
"updateResults": {},
|
|
"deleteResults": {}
|
|
}
|
|
}
|
|
],
|
|
"expectEvents": [
|
|
{
|
|
"client": "client",
|
|
"events": [
|
|
{
|
|
"commandStartedEvent": {
|
|
"commandName": "bulkWrite",
|
|
"databaseName": "admin",
|
|
"command": {
|
|
"bulkWrite": 1,
|
|
"errorsOnly": false,
|
|
"ordered": true,
|
|
"ops": [
|
|
{
|
|
"insert": 0,
|
|
"document": {
|
|
"_id": 6,
|
|
"x": 6
|
|
}
|
|
}
|
|
],
|
|
"nsInfo": [
|
|
{
|
|
"ns": "versioned-api-tests.test"
|
|
}
|
|
],
|
|
"apiVersion": "1",
|
|
"apiStrict": {
|
|
"$$unsetOrMatches": false
|
|
},
|
|
"apiDeprecationErrors": true
|
|
}
|
|
}
|
|
}
|
|
]
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"description": "countDocuments appends declared API version",
|
|
"operations": [
|
|
{
|
|
"name": "countDocuments",
|
|
"object": "collection",
|
|
"arguments": {
|
|
"filter": {
|
|
"x": {
|
|
"$gt": 11
|
|
}
|
|
}
|
|
}
|
|
}
|
|
],
|
|
"expectEvents": [
|
|
{
|
|
"client": "client",
|
|
"events": [
|
|
{
|
|
"commandStartedEvent": {
|
|
"command": {
|
|
"aggregate": "test",
|
|
"pipeline": [
|
|
{
|
|
"$match": {
|
|
"x": {
|
|
"$gt": 11
|
|
}
|
|
}
|
|
},
|
|
{
|
|
"$group": {
|
|
"_id": 1,
|
|
"n": {
|
|
"$sum": 1
|
|
}
|
|
}
|
|
}
|
|
],
|
|
"apiVersion": "1",
|
|
"apiStrict": {
|
|
"$$unsetOrMatches": false
|
|
},
|
|
"apiDeprecationErrors": true
|
|
}
|
|
}
|
|
}
|
|
]
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"description": "deleteMany appends declared API version",
|
|
"operations": [
|
|
{
|
|
"name": "deleteMany",
|
|
"object": "collection",
|
|
"arguments": {
|
|
"filter": {
|
|
"x": {
|
|
"$nin": [
|
|
24,
|
|
34
|
|
]
|
|
}
|
|
}
|
|
}
|
|
}
|
|
],
|
|
"expectEvents": [
|
|
{
|
|
"client": "client",
|
|
"events": [
|
|
{
|
|
"commandStartedEvent": {
|
|
"command": {
|
|
"delete": "test",
|
|
"deletes": [
|
|
{
|
|
"q": {
|
|
"x": {
|
|
"$nin": [
|
|
24,
|
|
34
|
|
]
|
|
}
|
|
},
|
|
"limit": 0
|
|
}
|
|
],
|
|
"apiVersion": "1",
|
|
"apiStrict": {
|
|
"$$unsetOrMatches": false
|
|
},
|
|
"apiDeprecationErrors": true
|
|
}
|
|
}
|
|
}
|
|
]
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"description": "deleteOne appends declared API version",
|
|
"operations": [
|
|
{
|
|
"name": "deleteOne",
|
|
"object": "collection",
|
|
"arguments": {
|
|
"filter": {
|
|
"_id": 7
|
|
}
|
|
}
|
|
}
|
|
],
|
|
"expectEvents": [
|
|
{
|
|
"client": "client",
|
|
"events": [
|
|
{
|
|
"commandStartedEvent": {
|
|
"command": {
|
|
"delete": "test",
|
|
"deletes": [
|
|
{
|
|
"q": {
|
|
"_id": 7
|
|
},
|
|
"limit": 1
|
|
}
|
|
],
|
|
"apiVersion": "1",
|
|
"apiStrict": {
|
|
"$$unsetOrMatches": false
|
|
},
|
|
"apiDeprecationErrors": true
|
|
}
|
|
}
|
|
}
|
|
]
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"description": "distinct appends declared API version",
|
|
"operations": [
|
|
{
|
|
"name": "distinct",
|
|
"object": "collection",
|
|
"arguments": {
|
|
"fieldName": "x",
|
|
"filter": {}
|
|
}
|
|
}
|
|
],
|
|
"expectEvents": [
|
|
{
|
|
"client": "client",
|
|
"events": [
|
|
{
|
|
"commandStartedEvent": {
|
|
"command": {
|
|
"distinct": "test",
|
|
"key": "x",
|
|
"apiVersion": "1",
|
|
"apiStrict": {
|
|
"$$unsetOrMatches": false
|
|
},
|
|
"apiDeprecationErrors": true
|
|
}
|
|
}
|
|
}
|
|
]
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"description": "estimatedDocumentCount appends declared API version",
|
|
"runOnRequirements": [
|
|
{
|
|
"minServerVersion": "5.0.9",
|
|
"maxServerVersion": "5.0.99"
|
|
},
|
|
{
|
|
"minServerVersion": "5.3.2"
|
|
}
|
|
],
|
|
"operations": [
|
|
{
|
|
"name": "estimatedDocumentCount",
|
|
"object": "collection",
|
|
"arguments": {}
|
|
}
|
|
],
|
|
"expectEvents": [
|
|
{
|
|
"client": "client",
|
|
"events": [
|
|
{
|
|
"commandStartedEvent": {
|
|
"command": {
|
|
"count": "test",
|
|
"apiVersion": "1",
|
|
"apiStrict": {
|
|
"$$unsetOrMatches": false
|
|
},
|
|
"apiDeprecationErrors": true
|
|
}
|
|
}
|
|
}
|
|
]
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"description": "find and getMore append API version",
|
|
"operations": [
|
|
{
|
|
"name": "find",
|
|
"object": "collection",
|
|
"arguments": {
|
|
"filter": {},
|
|
"sort": {
|
|
"_id": 1
|
|
},
|
|
"batchSize": 3
|
|
},
|
|
"expectResult": [
|
|
{
|
|
"_id": 1,
|
|
"x": 11
|
|
},
|
|
{
|
|
"_id": 2,
|
|
"x": 22
|
|
},
|
|
{
|
|
"_id": 3,
|
|
"x": 33
|
|
},
|
|
{
|
|
"_id": 4,
|
|
"x": 44
|
|
},
|
|
{
|
|
"_id": 5,
|
|
"x": 55
|
|
}
|
|
]
|
|
}
|
|
],
|
|
"expectEvents": [
|
|
{
|
|
"client": "client",
|
|
"events": [
|
|
{
|
|
"commandStartedEvent": {
|
|
"command": {
|
|
"find": "test",
|
|
"apiVersion": "1",
|
|
"apiStrict": {
|
|
"$$unsetOrMatches": false
|
|
},
|
|
"apiDeprecationErrors": true
|
|
}
|
|
}
|
|
},
|
|
{
|
|
"commandStartedEvent": {
|
|
"command": {
|
|
"getMore": {
|
|
"$$type": [
|
|
"int",
|
|
"long"
|
|
]
|
|
},
|
|
"apiVersion": "1",
|
|
"apiStrict": {
|
|
"$$unsetOrMatches": false
|
|
},
|
|
"apiDeprecationErrors": true
|
|
}
|
|
}
|
|
}
|
|
]
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"description": "findOneAndDelete appends declared API version",
|
|
"operations": [
|
|
{
|
|
"name": "findOneAndDelete",
|
|
"object": "collection",
|
|
"arguments": {
|
|
"filter": {
|
|
"_id": 1
|
|
}
|
|
}
|
|
}
|
|
],
|
|
"expectEvents": [
|
|
{
|
|
"client": "client",
|
|
"events": [
|
|
{
|
|
"commandStartedEvent": {
|
|
"command": {
|
|
"findAndModify": "test",
|
|
"query": {
|
|
"_id": 1
|
|
},
|
|
"remove": true,
|
|
"apiVersion": "1",
|
|
"apiStrict": {
|
|
"$$unsetOrMatches": false
|
|
},
|
|
"apiDeprecationErrors": true
|
|
}
|
|
}
|
|
}
|
|
]
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"description": "findOneAndReplace appends declared API version",
|
|
"operations": [
|
|
{
|
|
"name": "findOneAndReplace",
|
|
"object": "collection",
|
|
"arguments": {
|
|
"filter": {
|
|
"_id": 1
|
|
},
|
|
"replacement": {
|
|
"x": 33
|
|
}
|
|
}
|
|
}
|
|
],
|
|
"expectEvents": [
|
|
{
|
|
"client": "client",
|
|
"events": [
|
|
{
|
|
"commandStartedEvent": {
|
|
"command": {
|
|
"findAndModify": "test",
|
|
"query": {
|
|
"_id": 1
|
|
},
|
|
"update": {
|
|
"x": 33
|
|
},
|
|
"apiVersion": "1",
|
|
"apiStrict": {
|
|
"$$unsetOrMatches": false
|
|
},
|
|
"apiDeprecationErrors": true
|
|
}
|
|
}
|
|
}
|
|
]
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"description": "findOneAndUpdate appends declared API version",
|
|
"operations": [
|
|
{
|
|
"name": "findOneAndUpdate",
|
|
"object": "collection",
|
|
"arguments": {
|
|
"filter": {
|
|
"_id": 1
|
|
},
|
|
"update": {
|
|
"$inc": {
|
|
"x": 1
|
|
}
|
|
}
|
|
}
|
|
}
|
|
],
|
|
"expectEvents": [
|
|
{
|
|
"client": "client",
|
|
"events": [
|
|
{
|
|
"commandStartedEvent": {
|
|
"command": {
|
|
"findAndModify": "test",
|
|
"query": {
|
|
"_id": 1
|
|
},
|
|
"update": {
|
|
"$inc": {
|
|
"x": 1
|
|
}
|
|
},
|
|
"apiVersion": "1",
|
|
"apiStrict": {
|
|
"$$unsetOrMatches": false
|
|
},
|
|
"apiDeprecationErrors": true
|
|
}
|
|
}
|
|
}
|
|
]
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"description": "insertMany appends declared API version",
|
|
"operations": [
|
|
{
|
|
"name": "insertMany",
|
|
"object": "collection",
|
|
"arguments": {
|
|
"documents": [
|
|
{
|
|
"_id": 6,
|
|
"x": 66
|
|
},
|
|
{
|
|
"_id": 7,
|
|
"x": 77
|
|
}
|
|
]
|
|
}
|
|
}
|
|
],
|
|
"expectEvents": [
|
|
{
|
|
"client": "client",
|
|
"events": [
|
|
{
|
|
"commandStartedEvent": {
|
|
"command": {
|
|
"insert": "test",
|
|
"documents": [
|
|
{
|
|
"_id": 6,
|
|
"x": 66
|
|
},
|
|
{
|
|
"_id": 7,
|
|
"x": 77
|
|
}
|
|
],
|
|
"apiVersion": "1",
|
|
"apiStrict": {
|
|
"$$unsetOrMatches": false
|
|
},
|
|
"apiDeprecationErrors": true
|
|
}
|
|
}
|
|
}
|
|
]
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"description": "insertOne appends declared API version",
|
|
"operations": [
|
|
{
|
|
"name": "insertOne",
|
|
"object": "collection",
|
|
"arguments": {
|
|
"document": {
|
|
"_id": 6,
|
|
"x": 66
|
|
}
|
|
}
|
|
}
|
|
],
|
|
"expectEvents": [
|
|
{
|
|
"client": "client",
|
|
"events": [
|
|
{
|
|
"commandStartedEvent": {
|
|
"command": {
|
|
"insert": "test",
|
|
"documents": [
|
|
{
|
|
"_id": 6,
|
|
"x": 66
|
|
}
|
|
],
|
|
"apiVersion": "1",
|
|
"apiStrict": {
|
|
"$$unsetOrMatches": false
|
|
},
|
|
"apiDeprecationErrors": true
|
|
}
|
|
}
|
|
}
|
|
]
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"description": "replaceOne appends declared API version",
|
|
"operations": [
|
|
{
|
|
"name": "replaceOne",
|
|
"object": "collection",
|
|
"arguments": {
|
|
"filter": {
|
|
"_id": 4
|
|
},
|
|
"replacement": {
|
|
"_id": 4,
|
|
"x": 44
|
|
},
|
|
"upsert": true
|
|
}
|
|
}
|
|
],
|
|
"expectEvents": [
|
|
{
|
|
"client": "client",
|
|
"events": [
|
|
{
|
|
"commandStartedEvent": {
|
|
"command": {
|
|
"update": "test",
|
|
"updates": [
|
|
{
|
|
"q": {
|
|
"_id": 4
|
|
},
|
|
"u": {
|
|
"_id": 4,
|
|
"x": 44
|
|
},
|
|
"multi": {
|
|
"$$unsetOrMatches": false
|
|
},
|
|
"upsert": true
|
|
}
|
|
],
|
|
"apiVersion": "1",
|
|
"apiStrict": {
|
|
"$$unsetOrMatches": false
|
|
},
|
|
"apiDeprecationErrors": true
|
|
}
|
|
}
|
|
}
|
|
]
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"description": "updateMany appends declared API version",
|
|
"operations": [
|
|
{
|
|
"name": "updateMany",
|
|
"object": "collection",
|
|
"arguments": {
|
|
"filter": {
|
|
"_id": {
|
|
"$gt": 1
|
|
}
|
|
},
|
|
"update": {
|
|
"$inc": {
|
|
"x": 1
|
|
}
|
|
}
|
|
}
|
|
}
|
|
],
|
|
"expectEvents": [
|
|
{
|
|
"client": "client",
|
|
"events": [
|
|
{
|
|
"commandStartedEvent": {
|
|
"command": {
|
|
"update": "test",
|
|
"updates": [
|
|
{
|
|
"q": {
|
|
"_id": {
|
|
"$gt": 1
|
|
}
|
|
},
|
|
"u": {
|
|
"$inc": {
|
|
"x": 1
|
|
}
|
|
},
|
|
"multi": true,
|
|
"upsert": {
|
|
"$$unsetOrMatches": false
|
|
}
|
|
}
|
|
],
|
|
"apiVersion": "1",
|
|
"apiStrict": {
|
|
"$$unsetOrMatches": false
|
|
},
|
|
"apiDeprecationErrors": true
|
|
}
|
|
}
|
|
}
|
|
]
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"description": "updateOne appends declared API version",
|
|
"operations": [
|
|
{
|
|
"name": "updateOne",
|
|
"object": "collection",
|
|
"arguments": {
|
|
"filter": {
|
|
"_id": 2
|
|
},
|
|
"update": {
|
|
"$inc": {
|
|
"x": 1
|
|
}
|
|
}
|
|
}
|
|
}
|
|
],
|
|
"expectEvents": [
|
|
{
|
|
"client": "client",
|
|
"events": [
|
|
{
|
|
"commandStartedEvent": {
|
|
"command": {
|
|
"update": "test",
|
|
"updates": [
|
|
{
|
|
"q": {
|
|
"_id": 2
|
|
},
|
|
"u": {
|
|
"$inc": {
|
|
"x": 1
|
|
}
|
|
},
|
|
"multi": {
|
|
"$$unsetOrMatches": false
|
|
},
|
|
"upsert": {
|
|
"$$unsetOrMatches": false
|
|
}
|
|
}
|
|
],
|
|
"apiVersion": "1",
|
|
"apiStrict": {
|
|
"$$unsetOrMatches": false
|
|
},
|
|
"apiDeprecationErrors": true
|
|
}
|
|
}
|
|
}
|
|
]
|
|
}
|
|
]
|
|
}
|
|
]
|
|
}
|