mongo-python-driver/test/csot/cursors.json
Shane Harvey 890cd26e1a
PYTHON-3288 Implement client side operation timeout (#954)
Add timeoutMS URI option and MongoClient keyword argument.
Add provisional/beta pymongo.timeout() api to set a deadline for a block of operations.
2022-06-06 15:36:52 -04:00

114 lines
2.5 KiB
JSON

{
"description": "tests for timeoutMS behavior that applies to all cursor types",
"schemaVersion": "1.0",
"createEntities": [
{
"client": {
"id": "client"
}
},
{
"database": {
"id": "database",
"client": "client",
"databaseName": "test"
}
},
{
"collection": {
"id": "collection",
"database": "database",
"collectionName": "coll"
}
}
],
"initialData": [
{
"collectionName": "coll",
"databaseName": "test",
"documents": []
}
],
"tests": [
{
"description": "find errors if timeoutMode is set and timeoutMS is not",
"operations": [
{
"name": "find",
"object": "collection",
"arguments": {
"filter": {},
"timeoutMode": "cursorLifetime"
},
"expectError": {
"isClientError": true
}
}
]
},
{
"description": "collection aggregate errors if timeoutMode is set and timeoutMS is not",
"operations": [
{
"name": "aggregate",
"object": "collection",
"arguments": {
"pipeline": [],
"timeoutMode": "cursorLifetime"
},
"expectError": {
"isClientError": true
}
}
]
},
{
"description": "database aggregate errors if timeoutMode is set and timeoutMS is not",
"operations": [
{
"name": "aggregate",
"object": "database",
"arguments": {
"pipeline": [],
"timeoutMode": "cursorLifetime"
},
"expectError": {
"isClientError": true
}
}
]
},
{
"description": "listCollections errors if timeoutMode is set and timeoutMS is not",
"operations": [
{
"name": "listCollections",
"object": "database",
"arguments": {
"filter": {},
"timeoutMode": "cursorLifetime"
},
"expectError": {
"isClientError": true
}
}
]
},
{
"description": "listIndexes errors if timeoutMode is set and timeoutMS is not",
"operations": [
{
"name": "listIndexes",
"object": "collection",
"arguments": {
"timeoutMode": "cursorLifetime"
},
"expectError": {
"isClientError": true
}
}
]
}
]
}