{
  "runOn": [
    {
      "minServerVersion": "4.0",
      "topology": [
        "replicaset"
      ]
    },
    {
      "minServerVersion": "4.1.8",
      "topology": [
        "sharded"
      ]
    }
  ],
  "database_name": "withTransaction-tests",
  "collection_name": "test",
  "data": [],
  "tests": [
    {
      "description": "withTransaction commits after callback returns",
      "useMultipleMongoses": true,
      "operations": [
        {
          "name": "withTransaction",
          "object": "session0",
          "arguments": {
            "callback": {
              "operations": [
                {
                  "name": "insertOne",
                  "object": "collection",
                  "arguments": {
                    "session": "session0",
                    "document": {
                      "_id": 1
                    }
                  },
                  "result": {
                    "insertedId": 1
                  }
                },
                {
                  "name": "insertOne",
                  "object": "collection",
                  "arguments": {
                    "session": "session0",
                    "document": {
                      "_id": 2
                    }
                  },
                  "result": {
                    "insertedId": 2
                  }
                }
              ]
            }
          }
        }
      ],
      "expectations": [
        {
          "command_started_event": {
            "command": {
              "insert": "test",
              "documents": [
                {
                  "_id": 1
                }
              ],
              "ordered": true,
              "lsid": "session0",
              "txnNumber": {
                "$numberLong": "1"
              },
              "startTransaction": true,
              "autocommit": false,
              "readConcern": null,
              "writeConcern": null
            },
            "command_name": "insert",
            "database_name": "withTransaction-tests"
          }
        },
        {
          "command_started_event": {
            "command": {
              "insert": "test",
              "documents": [
                {
                  "_id": 2
                }
              ],
              "ordered": true,
              "lsid": "session0",
              "txnNumber": {
                "$numberLong": "1"
              },
              "autocommit": false,
              "readConcern": null,
              "startTransaction": null,
              "writeConcern": null
            },
            "command_name": "insert",
            "database_name": "withTransaction-tests"
          }
        },
        {
          "command_started_event": {
            "command": {
              "commitTransaction": 1,
              "lsid": "session0",
              "txnNumber": {
                "$numberLong": "1"
              },
              "autocommit": false,
              "readConcern": null,
              "startTransaction": null,
              "writeConcern": null
            },
            "command_name": "commitTransaction",
            "database_name": "admin"
          }
        }
      ],
      "outcome": {
        "collection": {
          "data": [
            {
              "_id": 1
            },
            {
              "_id": 2
            }
          ]
        }
      }
    },
    {
      "description": "withTransaction commits after callback returns (second transaction)",
      "useMultipleMongoses": true,
      "operations": [
        {
          "name": "withTransaction",
          "object": "session0",
          "arguments": {
            "callback": {
              "operations": [
                {
                  "name": "insertOne",
                  "object": "collection",
                  "arguments": {
                    "session": "session0",
                    "document": {
                      "_id": 1
                    }
                  },
                  "result": {
                    "insertedId": 1
                  }
                },
                {
                  "name": "commitTransaction",
                  "object": "session0"
                },
                {
                  "name": "startTransaction",
                  "object": "session0"
                },
                {
                  "name": "insertOne",
                  "object": "collection",
                  "arguments": {
                    "session": "session0",
                    "document": {
                      "_id": 2
                    }
                  },
                  "result": {
                    "insertedId": 2
                  }
                }
              ]
            }
          }
        }
      ],
      "expectations": [
        {
          "command_started_event": {
            "command": {
              "insert": "test",
              "documents": [
                {
                  "_id": 1
                }
              ],
              "ordered": true,
              "lsid": "session0",
              "txnNumber": {
                "$numberLong": "1"
              },
              "startTransaction": true,
              "autocommit": false,
              "readConcern": null,
              "writeConcern": null
            },
            "command_name": "insert",
            "database_name": "withTransaction-tests"
          }
        },
        {
          "command_started_event": {
            "command": {
              "commitTransaction": 1,
              "lsid": "session0",
              "txnNumber": {
                "$numberLong": "1"
              },
              "autocommit": false,
              "readConcern": null,
              "startTransaction": null,
              "writeConcern": null
            },
            "command_name": "commitTransaction",
            "database_name": "admin"
          }
        },
        {
          "command_started_event": {
            "command": {
              "insert": "test",
              "documents": [
                {
                  "_id": 2
                }
              ],
              "ordered": true,
              "lsid": "session0",
              "readConcern": {
                "afterClusterTime": 42
              },
              "txnNumber": {
                "$numberLong": "2"
              },
              "startTransaction": true,
              "autocommit": false,
              "writeConcern": null
            },
            "command_name": "insert",
            "database_name": "withTransaction-tests"
          }
        },
        {
          "command_started_event": {
            "command": {
              "commitTransaction": 1,
              "lsid": "session0",
              "txnNumber": {
                "$numberLong": "2"
              },
              "autocommit": false,
              "readConcern": null,
              "startTransaction": null,
              "writeConcern": null
            },
            "command_name": "commitTransaction",
            "database_name": "admin"
          }
        }
      ],
      "outcome": {
        "collection": {
          "data": [
            {
              "_id": 1
            },
            {
              "_id": 2
            }
          ]
        }
      }
    }
  ]
}