blob: 611d1ac9583a88f3f1574904a848542bd71f94b8 (
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
|
// Test for startup warning when TLS auth and certificates are added
(function() {
'use strict';
const SERVER_CERT = 'jstests/libs/server.pem';
const COMBINED_CA_CERT = 'jstests/ssl/x509/root-and-trusted-ca.pem';
const CLUSTER_CA_CERT = "jstests/libs/ca.pem";
function runTest(opts, expectWarningCertifcates) {
clearRawMongoProgramOutput();
let mongo = MongoRunner.runMongod(Object.assign({
auth: '',
waitForConnect: false,
tlsMode: 'requireTLS',
},
opts));
// Allow time for output to generate before verifying log is not included.
if (!expectWarningCertifcates) {
sleep(2000);
}
assert.soon(function() {
const output = rawMongoProgramOutput();
return (
expectWarningCertifcates ==
output.includes(
'No client certificate validation can be performed since no CA file or cluster CA File has been provided. Please specify an sslCAFile or a clusterCAFile parameter') ||
expectWarningCertifcates ==
output.includes(
'No client certificate validation can be performed since no CA File or cluster CA File has been provided and no sslCertificateSelector has been specified. Please specify an sslCAFile or a clusterCAFile parameter'));
});
stopMongoProgramByPid(mongo.pid);
}
// Warning should not be shown since CA File is included.
runTest({tlsCertificateKeyFile: SERVER_CERT, tlsCAFile: COMBINED_CA_CERT}, false);
// Warning should not be shown since Cluster CA File is included.
runTest({tlsCertificateKeyFile: SERVER_CERT, tlsClusterCAFile: CLUSTER_CA_CERT}, false);
// Warning should show since neither cert is included.
runTest({tlsCertificateKeyFile: SERVER_CERT}, true);
})();
|