File: change-streams-errors.yml

package info (click to toggle)
libmongodb-perl 2.2.2-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 10,292 kB
  • sloc: perl: 14,421; python: 299; makefile: 20; sh: 11
file content (76 lines) | stat: -rw-r--r-- 1,984 bytes parent folder | download | duplicates (3)
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
collection_name: &collection_name "test"
database_name: &database_name "change-stream-tests"
collection2_name: &collection2_name "test2"
database2_name: &database2_name "change-stream-tests-2"
tests:
  -
    description: The watch helper must not throw a custom exception when executed against a single server topology, but instead depend on a server error
    minServerVersion: "3.6.0"
    target: collection
    topology:
      - single
    changeStreamPipeline: []
    changeStreamOptions: {}
    operations: []
    expectations: []
    result:
      error:
        code: 40573
  -
    description: Change Stream should error when an invalid aggregation stage is passed in
    minServerVersion: "3.6.0"
    target: collection
    topology:
      - replicaset
    changeStreamPipeline:
      -
        $unsupported: foo
    changeStreamOptions: {}
    operations:
      -
        database: *database_name
        collection: *collection_name
        name: insertOne
        arguments:
          document:
            z: 3
    expectations:
      -
        command_started_event:
          command:
            aggregate: *collection_name
            cursor: {}
            pipeline:
              - 
                $changeStream:
                  fullDocument: default
              -
                $unsupported: foo
          command_name: aggregate
          database_name: *database_name
    result:
      error:
        code: 40324
  -
    description: Change Stream should error when _id is projected out
    minServerVersion: "4.1.11"
    target: collection
    topology:
      - replicaset
      - sharded
    changeStreamPipeline:
      -
        $project: { _id: 0 }
    changeStreamOptions: {}
    operations:
      -
        database: *database_name
        collection: *collection_name
        name: insertOne
        arguments:
          document:
            z: 3
    result:
      error:
        code: 280
        errorLabels: [ "NonResumableChangeStreamError" ]