blob: 47e3c1cce4c3ca8c34b537ed3a17104d32e57736 (
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
|
/*
* Tests simultaneous upgrade from noauth/no-ssl to x509/requireSSL on a sharded cluster.
* The purpose is to verify the connectivity between mongos, config server, and the shards
*
* NOTE: This test is similar to the mixed_mode_sharded_transition.js in the ssl
* test suite. This suite does not use ssl so it cannot test modes with ssl.
*/
// Test setup randomly have auth/no auth setting on shards, which make hooks targetting shard
// directly more complicated. Skip the hooks since this test doesn't really do migrations.
TestData.skipCheckingIndexesConsistentAcrossCluster = true;
TestData.skipCheckOrphans = true;
TestData.skipCheckShardFilteringMetadata = true;
load('jstests/ssl/libs/ssl_helpers.js');
(function() {
'use strict';
// Disable auth explicitly
var noAuthOptions = {noauth: ''};
var transitionToX509AllowSSL =
Object.merge(allowSSL, {transitionToAuth: '', clusterAuthMode: 'x509'});
print('=== Testing no-auth/transitionToAuth cluster ===');
mixedShardTest(noAuthOptions, transitionToX509AllowSSL, true);
mixedShardTest(transitionToX509AllowSSL, noAuthOptions, true);
print('=== Testing transitionToAuth/transitionToAuth cluster ===');
mixedShardTest(transitionToX509AllowSSL, transitionToX509AllowSSL, true);
}());
|