File: updateOne.yml

package info (click to toggle)
golang-mongodb-mongo-driver 1.17.1%2Bds1-2
  • links: PTS, VCS
  • area: main
  • in suites: experimental, sid, trixie
  • size: 25,988 kB
  • sloc: perl: 533; ansic: 491; python: 432; sh: 327; makefile: 174
file content (118 lines) | stat: -rw-r--r-- 3,735 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
description: "updateOne"

schemaVersion: "1.0"

createEntities:
  - client:
      id: &client client
      observeEvents:
        - commandStartedEvent
        - commandSucceededEvent
        - commandFailedEvent
  - database:
      id: &database database
      client: *client
      databaseName: &databaseName command-monitoring-tests
  - collection:
      id: &collection collection
      database: *database
      collectionName: &collectionName test

initialData:
  - collectionName: *collectionName
    databaseName: *databaseName
    documents:
      - { _id: 1, x: 11 }
      - { _id: 2, x: 22 }
      - { _id: 3, x: 33 }

tests:
  - description: "A successful updateOne"
    operations:
      - name: updateOne
        object: *collection
        arguments:
          filter: { _id: { $gt: 1 } }
          update: { $inc: { x: 1 } }
    expectEvents:
      - client: *client
        events:
          - commandStartedEvent:
              command:
                update: *collectionName
                updates:
                  - q: { _id: { $gt: 1 } }
                    u: { $inc: { x: 1 } }
                    upsert: { $$unsetOrMatches: false }
                    multi: { $$unsetOrMatches: false }
                ordered: true
              commandName: update
              databaseName: *databaseName
          - commandSucceededEvent:
              reply: { ok: 1, n: 1 }
              commandName: update

  - description: "A successful updateOne with upsert where the upserted id is not an ObjectId"
    operations:
      - name: updateOne
        object: *collection
        arguments:
          filter: { _id: 4 }
          update: { $inc: { x: 1 } }
          upsert: true
    expectEvents:
      - client: *client
        events:
          - commandStartedEvent:
              command:
                update: *collectionName
                updates:
                  - q: { _id: 4 }
                    u: { $inc: { x: 1 } }
                    upsert: true
                    multi: { $$unsetOrMatches: false }
                ordered: true
              commandName: update
              databaseName: *databaseName
          - commandSucceededEvent:
              reply:
                ok: 1
                n: 1
                upserted:
                  - index: 0
                    _id: 4
              commandName: update

  - description: "A successful updateOne with write errors"
    operations:
      - name: updateOne
        object: *collection
        arguments:
          filter: { _id: { $gt: 1 } }
          update: { $unsupported: { x: 1 } }
        expectError:
          isClientError: false
    expectEvents:
      - client: *client
        events:
          - commandStartedEvent:
              command:
                update: *collectionName
                updates:
                  - q: { _id: { $gt: 1 } }
                    u: { $unsupported: { x: 1 } }
                    upsert: { $$unsetOrMatches: false }
                    multi: { $$unsetOrMatches: false }
                ordered: true
              commandName: update
              databaseName: *databaseName
          - commandSucceededEvent:
              reply:
                ok: 1
                n: 0
                # The legacy version of this test included an assertion that writeErrors contained a single document
                # with index=0, a "code" value, and a non-empty "errmsg". However, writeErrors can contain extra fields
                # beyond these, and the unified format currently does not permit allowing extra fields in sub-documents,
                # so those assertions are not present here.
                writeErrors: { $$type: array }
              commandName: update