-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test(NODE-3698): sync spec tests for crud operations with
let
option (
- Loading branch information
1 parent
f76635a
commit 25d22b2
Showing
18 changed files
with
2,327 additions
and
139 deletions.
There are no files selected for viewing
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
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
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,201 @@ | ||
{ | ||
"description": "deleteMany-let", | ||
"schemaVersion": "1.0", | ||
"createEntities": [ | ||
{ | ||
"client": { | ||
"id": "client0", | ||
"observeEvents": [ | ||
"commandStartedEvent" | ||
] | ||
} | ||
}, | ||
{ | ||
"database": { | ||
"id": "database0", | ||
"client": "client0", | ||
"databaseName": "crud-tests" | ||
} | ||
}, | ||
{ | ||
"collection": { | ||
"id": "collection0", | ||
"database": "database0", | ||
"collectionName": "coll0" | ||
} | ||
} | ||
], | ||
"initialData": [ | ||
{ | ||
"collectionName": "coll0", | ||
"databaseName": "crud-tests", | ||
"documents": [ | ||
{ | ||
"_id": 1 | ||
}, | ||
{ | ||
"_id": 2, | ||
"name": "name" | ||
}, | ||
{ | ||
"_id": 3, | ||
"name": "name" | ||
} | ||
] | ||
} | ||
], | ||
"tests": [ | ||
{ | ||
"description": "deleteMany with let option", | ||
"runOnRequirements": [ | ||
{ | ||
"minServerVersion": "5.0" | ||
} | ||
], | ||
"operations": [ | ||
{ | ||
"name": "deleteMany", | ||
"object": "collection0", | ||
"arguments": { | ||
"filter": { | ||
"$expr": { | ||
"$eq": [ | ||
"$name", | ||
"$$name" | ||
] | ||
} | ||
}, | ||
"let": { | ||
"name": "name" | ||
} | ||
}, | ||
"expectResult": { | ||
"deletedCount": 2 | ||
} | ||
} | ||
], | ||
"expectEvents": [ | ||
{ | ||
"client": "client0", | ||
"events": [ | ||
{ | ||
"commandStartedEvent": { | ||
"command": { | ||
"delete": "coll0", | ||
"deletes": [ | ||
{ | ||
"q": { | ||
"$expr": { | ||
"$eq": [ | ||
"$name", | ||
"$$name" | ||
] | ||
} | ||
}, | ||
"limit": 0 | ||
} | ||
], | ||
"let": { | ||
"name": "name" | ||
} | ||
} | ||
} | ||
} | ||
] | ||
} | ||
], | ||
"outcome": [ | ||
{ | ||
"collectionName": "coll0", | ||
"databaseName": "crud-tests", | ||
"documents": [ | ||
{ | ||
"_id": 1 | ||
} | ||
] | ||
} | ||
] | ||
}, | ||
{ | ||
"description": "deleteMany with let option unsupported (server-side error)", | ||
"runOnRequirements": [ | ||
{ | ||
"minServerVersion": "3.6.0", | ||
"maxServerVersion": "4.4.99" | ||
} | ||
], | ||
"operations": [ | ||
{ | ||
"name": "deleteMany", | ||
"object": "collection0", | ||
"arguments": { | ||
"filter": { | ||
"$expr": { | ||
"$eq": [ | ||
"$name", | ||
"$$name" | ||
] | ||
} | ||
}, | ||
"let": { | ||
"name": "name" | ||
} | ||
}, | ||
"expectError": { | ||
"errorContains": "'delete.let' is an unknown field", | ||
"isClientError": false | ||
} | ||
} | ||
], | ||
"expectEvents": [ | ||
{ | ||
"client": "client0", | ||
"events": [ | ||
{ | ||
"commandStartedEvent": { | ||
"command": { | ||
"delete": "coll0", | ||
"deletes": [ | ||
{ | ||
"q": { | ||
"$expr": { | ||
"$eq": [ | ||
"$name", | ||
"$$name" | ||
] | ||
} | ||
}, | ||
"limit": 0 | ||
} | ||
], | ||
"let": { | ||
"name": "name" | ||
} | ||
} | ||
} | ||
} | ||
] | ||
} | ||
], | ||
"outcome": [ | ||
{ | ||
"collectionName": "coll0", | ||
"databaseName": "crud-tests", | ||
"documents": [ | ||
{ | ||
"_id": 1 | ||
}, | ||
{ | ||
"_id": 2, | ||
"name": "name" | ||
}, | ||
{ | ||
"_id": 3, | ||
"name": "name" | ||
} | ||
] | ||
} | ||
] | ||
} | ||
] | ||
} |
Oops, something went wrong.