summaryrefslogtreecommitdiff
path: root/buildscripts/resmokeconfig/suites/logical_session_cache_standalone_10sec_refresh_jscore_passthrough.yml
blob: 182b59965a1b6ad0bf10e3f4d26ca8e46c950079 (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
test_kind: js_test

selector:
  roots:
  - jstests/core/**/*.js
  exclude_files:
  # Transactions are not supported on MongoDB standalone nodes.
  - jstests/core/txns/**/*.js
  # This test expects a fixed number of operations. The logical session cache will perform its own
  # operations, inflating the number of operations and causing the test to fail.
  - jstests/core/opcounters_write_cmd.js
  # These tests expect the logical session cache refresh thread to be turned off, so that refreshes
  # can be triggered deterministically.
  - jstests/core/list_all_local_sessions.js
  - jstests/core/list_all_sessions.js
  - jstests/core/list_sessions.js
  # These tests verify that an expected number of update operations were tracked in the server
  # status metrics, but the logical session cache refresh causes additional updates to be recorded.
  - jstests/core/find_and_modify_metrics.js
  - jstests/core/update_metrics.js

executor:
  archive:
    hooks:
      - ValidateCollections
  config: {}
  hooks:
  - class: ValidateCollections
  - class: CleanEveryN
    n: 20
  fixture:
    class: MongoDFixture
    mongod_options:
      set_parameters:
        enableTestCommands: 1
        disableLogicalSessionCacheRefresh: false
        logicalSessionRefreshMillis: 10000