summaryrefslogtreecommitdiff
path: root/buildscripts/resmokeconfig/suites/talk_directly_to_shardsvrs_jscore_passthrough.yml
blob: 5c7fb0c2a604bbc31af0d26bf84194cede8db7e4 (plain)
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
test_kind: js_test

selector:
  roots:
  - jstests/core/**/*.js
  - jstests/fle2/**/*.js
  - src/mongo/db/modules/*/jstests/fle2/**/*.js
  exclude_files:
  # This test expects that the connection (i.e. 'threadName') does not change throughout each test
  # case. That is not always true when the test driver use a replica set connection string. As this
  # test sets fail point with error code NotWritablePrimary, the test driver changes its topology to
  # ReplicaSetNoPrimary and create a new connection once it get the primary again.
  - jstests/core/**/failcommand_failpoint.js
  # TODO: SERVER-71487 Legacy shell does not carry over encryption information through
  # getMores in reconfig suites.
  - src/mongo/db/modules/*/jstests/fle2/query/*getMore*.js

  exclude_with_any_tags:
  - assumes_standalone_mongod
  - command_not_supported_in_serverless
  # capped collections are banned in Serverless.
  - requires_capped
  # In this suite the test talks directly to shardsvrs (doesn't go through mongos).
  - directly_against_shardsvrs_incompatible

executor:
  archive:
    tests: true
    hooks:
      - CheckReplDBHash
      - CheckReplOplogs
      - ValidateCollections
  config:
    shell_options:
      eval: >-
        testingReplication = true;
  hooks:
  # The CheckReplDBHash hook waits until all operations have replicated to and have been applied
  # on the secondaries, so we run the ValidateCollections hook after it to ensure we're
  # validating the entire contents of the collection.
  - class: CheckReplOplogs
  - class: CheckReplDBHash
  - class: ValidateCollections
  - class: CleanEveryN
    n: 20
  fixture:
    class: TalkDirectlyToShardsvrsFixture
    common_mongod_options:
      set_parameters:
        enableTestCommands: 1
    num_replica_sets: 1
    num_nodes_per_replica_set: 3
    use_replica_set_connection_string: true