forked from mongodb/mongo-csharp-driver
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CSHARP-5201: Allow update to supply sort option (mongodb#1453)
- Loading branch information
Showing
31 changed files
with
2,127 additions
and
44 deletions.
There are no files selected for viewing
239 changes: 239 additions & 0 deletions
239
specifications/crud/tests/unified/bulkWrite-replaceOne-sort.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,239 @@ | ||
{ | ||
"description": "BulkWrite replaceOne-sort", | ||
"schemaVersion": "1.0", | ||
"createEntities": [ | ||
{ | ||
"client": { | ||
"id": "client0", | ||
"observeEvents": [ | ||
"commandStartedEvent", | ||
"commandSucceededEvent" | ||
] | ||
} | ||
}, | ||
{ | ||
"database": { | ||
"id": "database0", | ||
"client": "client0", | ||
"databaseName": "crud-tests" | ||
} | ||
}, | ||
{ | ||
"collection": { | ||
"id": "collection0", | ||
"database": "database0", | ||
"collectionName": "coll0" | ||
} | ||
} | ||
], | ||
"initialData": [ | ||
{ | ||
"collectionName": "coll0", | ||
"databaseName": "crud-tests", | ||
"documents": [ | ||
{ | ||
"_id": 1, | ||
"x": 11 | ||
}, | ||
{ | ||
"_id": 2, | ||
"x": 22 | ||
}, | ||
{ | ||
"_id": 3, | ||
"x": 33 | ||
} | ||
] | ||
} | ||
], | ||
"tests": [ | ||
{ | ||
"description": "BulkWrite replaceOne with sort option", | ||
"runOnRequirements": [ | ||
{ | ||
"minServerVersion": "8.0" | ||
} | ||
], | ||
"operations": [ | ||
{ | ||
"object": "collection0", | ||
"name": "bulkWrite", | ||
"arguments": { | ||
"requests": [ | ||
{ | ||
"replaceOne": { | ||
"filter": { | ||
"_id": { | ||
"$gt": 1 | ||
} | ||
}, | ||
"sort": { | ||
"_id": -1 | ||
}, | ||
"replacement": { | ||
"x": 1 | ||
} | ||
} | ||
} | ||
] | ||
} | ||
} | ||
], | ||
"expectEvents": [ | ||
{ | ||
"client": "client0", | ||
"events": [ | ||
{ | ||
"commandStartedEvent": { | ||
"command": { | ||
"update": "coll0", | ||
"updates": [ | ||
{ | ||
"q": { | ||
"_id": { | ||
"$gt": 1 | ||
} | ||
}, | ||
"u": { | ||
"x": 1 | ||
}, | ||
"sort": { | ||
"_id": -1 | ||
}, | ||
"multi": { | ||
"$$unsetOrMatches": false | ||
}, | ||
"upsert": { | ||
"$$unsetOrMatches": false | ||
} | ||
} | ||
] | ||
} | ||
} | ||
}, | ||
{ | ||
"commandSucceededEvent": { | ||
"reply": { | ||
"ok": 1, | ||
"n": 1 | ||
}, | ||
"commandName": "update" | ||
} | ||
} | ||
] | ||
} | ||
], | ||
"outcome": [ | ||
{ | ||
"collectionName": "coll0", | ||
"databaseName": "crud-tests", | ||
"documents": [ | ||
{ | ||
"_id": 1, | ||
"x": 11 | ||
}, | ||
{ | ||
"_id": 2, | ||
"x": 22 | ||
}, | ||
{ | ||
"_id": 3, | ||
"x": 1 | ||
} | ||
] | ||
} | ||
] | ||
}, | ||
{ | ||
"description": "BulkWrite replaceOne with sort option unsupported (server-side error)", | ||
"runOnRequirements": [ | ||
{ | ||
"maxServerVersion": "7.99" | ||
} | ||
], | ||
"operations": [ | ||
{ | ||
"object": "collection0", | ||
"name": "bulkWrite", | ||
"arguments": { | ||
"requests": [ | ||
{ | ||
"replaceOne": { | ||
"filter": { | ||
"_id": { | ||
"$gt": 1 | ||
} | ||
}, | ||
"sort": { | ||
"_id": -1 | ||
}, | ||
"replacement": { | ||
"x": 1 | ||
} | ||
} | ||
} | ||
] | ||
}, | ||
"expectError": { | ||
"isClientError": false | ||
} | ||
} | ||
], | ||
"expectEvents": [ | ||
{ | ||
"client": "client0", | ||
"events": [ | ||
{ | ||
"commandStartedEvent": { | ||
"command": { | ||
"update": "coll0", | ||
"updates": [ | ||
{ | ||
"q": { | ||
"_id": { | ||
"$gt": 1 | ||
} | ||
}, | ||
"u": { | ||
"x": 1 | ||
}, | ||
"sort": { | ||
"_id": -1 | ||
}, | ||
"multi": { | ||
"$$unsetOrMatches": false | ||
}, | ||
"upsert": { | ||
"$$unsetOrMatches": false | ||
} | ||
} | ||
] | ||
} | ||
} | ||
} | ||
] | ||
} | ||
], | ||
"outcome": [ | ||
{ | ||
"collectionName": "coll0", | ||
"databaseName": "crud-tests", | ||
"documents": [ | ||
{ | ||
"_id": 1, | ||
"x": 11 | ||
}, | ||
{ | ||
"_id": 2, | ||
"x": 22 | ||
}, | ||
{ | ||
"_id": 3, | ||
"x": 33 | ||
} | ||
] | ||
} | ||
] | ||
} | ||
] | ||
} |
94 changes: 94 additions & 0 deletions
94
specifications/crud/tests/unified/bulkWrite-replaceOne-sort.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,94 @@ | ||
description: BulkWrite replaceOne-sort | ||
|
||
schemaVersion: "1.0" | ||
|
||
createEntities: | ||
- client: | ||
id: &client0 client0 | ||
observeEvents: [ commandStartedEvent, commandSucceededEvent ] | ||
- database: | ||
id: &database0 database0 | ||
client: *client0 | ||
databaseName: &database0Name crud-tests | ||
- collection: | ||
id: &collection0 collection0 | ||
database: *database0 | ||
collectionName: &collection0Name coll0 | ||
|
||
initialData: | ||
- collectionName: *collection0Name | ||
databaseName: *database0Name | ||
documents: | ||
- { _id: 1, x: 11 } | ||
- { _id: 2, x: 22 } | ||
- { _id: 3, x: 33 } | ||
|
||
tests: | ||
- description: BulkWrite replaceOne with sort option | ||
runOnRequirements: | ||
- minServerVersion: "8.0" | ||
operations: | ||
- object: *collection0 | ||
name: bulkWrite | ||
arguments: | ||
requests: | ||
- replaceOne: | ||
filter: { _id: { $gt: 1 } } | ||
sort: { _id: -1 } | ||
replacement: { x: 1 } | ||
expectEvents: | ||
- client: *client0 | ||
events: | ||
- commandStartedEvent: | ||
command: | ||
update: *collection0Name | ||
updates: | ||
- q: { _id: { $gt: 1 } } | ||
u: { x: 1 } | ||
sort: { _id: -1 } | ||
multi: { $$unsetOrMatches: false } | ||
upsert: { $$unsetOrMatches: false } | ||
- commandSucceededEvent: | ||
reply: { ok: 1, n: 1 } | ||
commandName: update | ||
outcome: | ||
- collectionName: *collection0Name | ||
databaseName: *database0Name | ||
documents: | ||
- { _id: 1, x: 11 } | ||
- { _id: 2, x: 22 } | ||
- { _id: 3, x: 1 } | ||
|
||
- description: BulkWrite replaceOne with sort option unsupported (server-side error) | ||
runOnRequirements: | ||
- maxServerVersion: "7.99" | ||
operations: | ||
- object: *collection0 | ||
name: bulkWrite | ||
arguments: | ||
requests: | ||
- replaceOne: | ||
filter: { _id: { $gt: 1 } } | ||
sort: { _id: -1 } | ||
replacement: { x: 1 } | ||
expectError: | ||
isClientError: false | ||
expectEvents: | ||
- client: *client0 | ||
events: | ||
- commandStartedEvent: | ||
command: | ||
update: *collection0Name | ||
updates: | ||
- q: { _id: { $gt: 1 } } | ||
u: { x: 1 } | ||
sort: { _id: -1 } | ||
multi: { $$unsetOrMatches: false } | ||
upsert: { $$unsetOrMatches: false } | ||
outcome: | ||
- collectionName: *collection0Name | ||
databaseName: *database0Name | ||
documents: | ||
- { _id: 1, x: 11 } | ||
- { _id: 2, x: 22 } | ||
- { _id: 3, x: 33 } |
Oops, something went wrong.