blob: 2dc7f335c541c44e8d2083c3b883276b4aead763 (
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
|
# Section that is ignored by resmoke.py.
config_variables:
- &keyFile jstests/libs/authTestsKey
- &keyFileData Thiskeyisonlyforrunningthesuitewithauthenticationdontuseitinanytestsdirectly
test_kind: js_test
selector:
roots:
- jstests/sharding/*.js
exclude_files:
# Skip any tests that run with auth explicitly.
- jstests/sharding/*[aA]uth*.js
- jstests/sharding/advance_cluster_time_action_type.js
- jstests/sharding/aggregation_currentop.js # SERVER-19318
- jstests/sharding/kill_sessions.js
# Skip these additional tests when running with auth enabled.
- jstests/sharding/parallel.js
# Skip the testcases that do not have auth bypass when running ops in parallel.
- jstests/sharding/cleanup_orphaned_cmd_during_movechunk.js # SERVER-21713
- jstests/sharding/cleanup_orphaned_cmd_during_movechunk_hashed.js # SERVER-21713
- jstests/sharding/migration_with_source_ops.js # SERVER-21713
- jstests/sharding/migration_sets_fromMigrate_flag.js # SERVER-21713
- jstests/sharding/migration_ignore_interrupts_1.js # SERVER-21713
- jstests/sharding/migration_ignore_interrupts_2.js # SERVER-21713
- jstests/sharding/migration_ignore_interrupts_3.js # SERVER-21713
- jstests/sharding/migration_ignore_interrupts_4.js # SERVER-21713
- jstests/sharding/movechunk_interrupt_at_primary_stepdown.js # SERVER-21713
- jstests/sharding/movechunk_parallel.js # SERVER-21713
- jstests/sharding/migration_server_status.js # SERVER-21713
- jstests/sharding/migration_move_chunk_after_receive.js # SERVER-21713
- jstests/sharding/migration_critical_section_concurrency.js # SERVER-21713
# Runs with auth enabled.
- jstests/sharding/mongod_returns_no_cluster_time_without_keys.js
executor:
config:
shell_options:
global_vars:
TestData:
auditDestination: 'console'
auth: true
authMechanism: SCRAM-SHA-1
keyFile: *keyFile
keyFileData: *keyFileData
nodb: ''
readMode: commands
|