summaryrefslogtreecommitdiff
path: root/src/mongo/gotools/src/github.com/mongodb/mongo-tools/vendor/go.mongodb.org/mongo-driver/data/crud/v2/updateWithPipelines.yml
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/gotools/src/github.com/mongodb/mongo-tools/vendor/go.mongodb.org/mongo-driver/data/crud/v2/updateWithPipelines.yml')
-rw-r--r--src/mongo/gotools/src/github.com/mongodb/mongo-tools/vendor/go.mongodb.org/mongo-driver/data/crud/v2/updateWithPipelines.yml92
1 files changed, 0 insertions, 92 deletions
diff --git a/src/mongo/gotools/src/github.com/mongodb/mongo-tools/vendor/go.mongodb.org/mongo-driver/data/crud/v2/updateWithPipelines.yml b/src/mongo/gotools/src/github.com/mongodb/mongo-tools/vendor/go.mongodb.org/mongo-driver/data/crud/v2/updateWithPipelines.yml
deleted file mode 100644
index 1002ed65006..00000000000
--- a/src/mongo/gotools/src/github.com/mongodb/mongo-tools/vendor/go.mongodb.org/mongo-driver/data/crud/v2/updateWithPipelines.yml
+++ /dev/null
@@ -1,92 +0,0 @@
-runOn:
- -
- minServerVersion: "4.1.11"
-
-data:
- - { _id: 1, x: 1, y: 1, t: {u: {v: 1}} }
- - { _id: 2, x: 2, y: 1 }
-
-collection_name: &collection_name "test"
-database_name: &database_name "crud-tests"
-
-tests:
- -
- description: "UpdateOne using pipelines"
- operations:
- -
- name: "updateOne"
- arguments:
- filter: { _id: 1 }
- update: [ { $replaceRoot: { newRoot: "$t" } }, { $addFields: { foo: 1 } } ]
- result:
- matchedCount: 1
- modifiedCount: 1
- upsertedCount: 0
- expectations:
- -
- command_started_event:
- command:
- update: *collection_name
- updates:
- -
- q: { _id: 1 }
- u: [ { $replaceRoot: { newRoot: "$t" } }, { $addFields: { foo: 1 } } ]
- command_name: update
- database_name: *database_name
- outcome:
- collection:
- data:
- - { _id: 1, u: {v: 1}, foo: 1 }
- - { _id: 2, x: 2, y: 1 }
- -
- description: "UpdateMany using pipelines"
- operations:
- -
- name: "updateMany"
- arguments:
- filter: {}
- update: [ { $project: { x: 1 } }, { $addFields: { foo: 1 } } ]
- result:
- matchedCount: 2
- modifiedCount: 2
- upsertedCount: 0
- expectations:
- -
- command_started_event:
- command:
- update: *collection_name
- updates:
- -
- q: { }
- u: [ { $project: { x: 1 } }, { $addFields: { foo: 1 } } ]
- multi: true
- command_name: update
- database_name: *database_name
- outcome:
- collection:
- data:
- - { _id: 1, x: 1, foo: 1 }
- - { _id: 2, x: 2, foo: 1 }
- -
- description: "FindOneAndUpdate using pipelines"
- operations:
- -
- name: "findOneAndUpdate"
- arguments:
- filter: { _id: 1 }
- update: [ { $project: { x: 1 } }, { $addFields: { foo: 1 } } ]
- expectations:
- -
- command_started_event:
- command:
- findAndModify: *collection_name
- update:
- - $project: { x: 1 }
- - $addFields: { foo: 1 }
- command_name: findAndModify
- database_name: *database_name
- outcome:
- collection:
- data:
- - { _id: 1, x: 1, foo: 1 }
- - { _id: 2, x: 2, y: 1 }