| {
  "runOn": [
    {
      "minServerVersion": "4.0",
      "topology": [
        "replicaset"
      ]
    },
    {
      "minServerVersion": "4.1.7",
      "topology": [
        "sharded"
      ]
    }
  ],
  "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"
          }
        }
      ]
    }
  ]
}
 |