File: read-concern.yml

package info (click to toggle)
golang-mongodb-mongo-driver 1.17.1%2Bds1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie, trixie-proposed-updates
  • size: 25,988 kB
  • sloc: perl: 533; ansic: 491; python: 432; sh: 327; makefile: 174
file content (37 lines) | stat: -rw-r--r-- 1,130 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
tests:
    -
        description: "Default"
        uri: "mongodb://localhost/"
        valid: true
        warning: false
        readConcern: { }
    -
        description: "local specified"
        uri: "mongodb://localhost/?readConcernLevel=local"
        valid: true
        warning: false
        readConcern: { level: "local" }
    -
        description: "majority specified"
        uri: "mongodb://localhost/?readConcernLevel=majority"
        valid: true
        warning: false
        readConcern: { level: "majority" }
    -
        description: "available specified"
        uri: "mongodb://localhost?readConcernLevel=available"
        valid: true
        warning: false
        readConcern: { level: "available" }
    -
        description: "snapshot specified"
        uri: "mongodb://localhost?readConcernLevel=snapshot"
        valid: true
        warning: false
        readConcern: { level: "snapshot" }
    -
        description: "linearizable specified"
        uri: "mongodb://localhost?readConcernLevel=linearizable"
        valid: true
        warning: false
        readConcern: { level: "linearizable" }