{
  "runOn": [
    {
      "minServerVersion": "3.5.6"
    }
  ],
  "data": [
    {
      "_id": 1,
      "y": [
        {
          "b": 3
        },
        {
          "b": 1
        }
      ]
    },
    {
      "_id": 2,
      "y": [
        {
          "b": 0
        },
        {
          "b": 1
        }
      ]
    }
  ],
  "collection_name": "test",
  "database_name": "crud-tests",
  "tests": [
    {
      "description": "BulkWrite updateOne with arrayFilters",
      "operations": [
        {
          "name": "bulkWrite",
          "arguments": {
            "requests": [
              {
                "name": "updateOne",
                "arguments": {
                  "filter": {},
                  "update": {
                    "$set": {
                      "y.$[i].b": 2
                    }
                  },
                  "arrayFilters": [
                    {
                      "i.b": 3
                    }
                  ]
                }
              }
            ],
            "options": {
              "ordered": true
            }
          },
          "result": {
            "deletedCount": 0,
            "insertedCount": 0,
            "insertedIds": {},
            "matchedCount": 1,
            "modifiedCount": 1,
            "upsertedCount": 0,
            "upsertedIds": {}
          }
        }
      ],
      "expectations": [
        {
          "command_started_event": {
            "command": {
              "update": "test",
              "updates": [
                {
                  "q": {},
                  "u": {
                    "$set": {
                      "y.$[i].b": 2
                    }
                  },
                  "arrayFilters": [
                    {
                      "i.b": 3
                    }
                  ]
                }
              ],
              "ordered": true
            },
            "command_name": "update",
            "database_name": "crud-tests"
          }
        }
      ],
      "outcome": {
        "collection": {
          "data": [
            {
              "_id": 1,
              "y": [
                {
                  "b": 2
                },
                {
                  "b": 1
                }
              ]
            },
            {
              "_id": 2,
              "y": [
                {
                  "b": 0
                },
                {
                  "b": 1
                }
              ]
            }
          ]
        }
      }
    },
    {
      "description": "BulkWrite updateMany with arrayFilters",
      "operations": [
        {
          "name": "bulkWrite",
          "arguments": {
            "requests": [
              {
                "name": "updateMany",
                "arguments": {
                  "filter": {},
                  "update": {
                    "$set": {
                      "y.$[i].b": 2
                    }
                  },
                  "arrayFilters": [
                    {
                      "i.b": 1
                    }
                  ]
                }
              }
            ],
            "options": {
              "ordered": true
            }
          },
          "result": {
            "deletedCount": 0,
            "insertedCount": 0,
            "insertedIds": {},
            "matchedCount": 2,
            "modifiedCount": 2,
            "upsertedCount": 0,
            "upsertedIds": {}
          }
        }
      ],
      "expectations": [
        {
          "command_started_event": {
            "command": {
              "update": "test",
              "updates": [
                {
                  "q": {},
                  "u": {
                    "$set": {
                      "y.$[i].b": 2
                    }
                  },
                  "multi": true,
                  "arrayFilters": [
                    {
                      "i.b": 1
                    }
                  ]
                }
              ],
              "ordered": true
            },
            "command_name": "update",
            "database_name": "crud-tests"
          }
        }
      ],
      "outcome": {
        "collection": {
          "data": [
            {
              "_id": 1,
              "y": [
                {
                  "b": 3
                },
                {
                  "b": 2
                }
              ]
            },
            {
              "_id": 2,
              "y": [
                {
                  "b": 0
                },
                {
                  "b": 2
                }
              ]
            }
          ]
        }
      }
    }
  ]
}
