bson/testdata/retryable-reads/legacy/changeStreams-client.watch.json
2025-03-17 20:58:26 +01:00

210 lines
4.4 KiB
JSON

{
"runOn": [
{
"minServerVersion": "4.0",
"topology": [
"replicaset"
]
},
{
"minServerVersion": "4.1.7",
"topology": [
"sharded",
"load-balanced"
],
"serverless": "forbid"
}
],
"database_name": "retryable-reads-tests",
"collection_name": "coll",
"data": [
{
"_id": 1,
"x": 11
}
],
"tests": [
{
"description": "client.watch succeeds on first attempt",
"operations": [
{
"name": "watch",
"object": "client"
}
],
"expectations": [
{
"command_started_event": {
"command": {
"aggregate": 1,
"cursor": {},
"pipeline": [
{
"$changeStream": {
"allChangesForCluster": true
}
}
]
},
"database_name": "admin"
}
}
]
},
{
"description": "client.watch succeeds on second attempt",
"failPoint": {
"configureFailPoint": "failCommand",
"mode": {
"times": 1
},
"data": {
"failCommands": [
"aggregate"
],
"closeConnection": true
}
},
"operations": [
{
"name": "watch",
"object": "client"
}
],
"expectations": [
{
"command_started_event": {
"command": {
"aggregate": 1,
"cursor": {},
"pipeline": [
{
"$changeStream": {
"allChangesForCluster": true
}
}
]
},
"database_name": "admin"
}
},
{
"command_started_event": {
"command": {
"aggregate": 1,
"cursor": {},
"pipeline": [
{
"$changeStream": {
"allChangesForCluster": true
}
}
]
},
"database_name": "admin"
}
}
]
},
{
"description": "client.watch fails on first attempt",
"clientOptions": {
"retryReads": false
},
"failPoint": {
"configureFailPoint": "failCommand",
"mode": {
"times": 1
},
"data": {
"failCommands": [
"aggregate"
],
"closeConnection": true
}
},
"operations": [
{
"name": "watch",
"object": "client",
"error": true
}
],
"expectations": [
{
"command_started_event": {
"command": {
"aggregate": 1,
"cursor": {},
"pipeline": [
{
"$changeStream": {
"allChangesForCluster": true
}
}
]
},
"database_name": "admin"
}
}
]
},
{
"description": "client.watch fails on second attempt",
"failPoint": {
"configureFailPoint": "failCommand",
"mode": {
"times": 2
},
"data": {
"failCommands": [
"aggregate"
],
"closeConnection": true
}
},
"operations": [
{
"name": "watch",
"object": "client",
"error": true
}
],
"expectations": [
{
"command_started_event": {
"command": {
"aggregate": 1,
"cursor": {},
"pipeline": [
{
"$changeStream": {
"allChangesForCluster": true
}
}
]
},
"database_name": "admin"
}
},
{
"command_started_event": {
"command": {
"aggregate": 1,
"cursor": {},
"pipeline": [
{
"$changeStream": {
"allChangesForCluster": true
}
}
]
},
"database_name": "admin"
}
}
]
}
]
}