0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-12-01 09:32:32 +01:00
mongodb/jstests/ssl/ssl_options.js

50 lines
1.6 KiB
JavaScript

// Test redaction of passwords in command line SSL option parsing.
load('jstests/ssl/libs/ssl_helpers.js');
requireSSLProvider('openssl', function() {
'use strict';
const baseName = "jstests_ssl_ssl_options";
jsTest.log("Testing censorship of ssl options");
const mongodConfig = {
sslPEMKeyFile: "jstests/libs/password_protected.pem",
sslMode: "requireSSL",
sslPEMKeyPassword: "qwerty",
sslClusterPassword: "qwerty",
sslCAFile: "jstests/libs/ca.pem"
};
const mongodSource = MongoRunner.runMongod(mongodConfig);
const getCmdLineOptsResult = mongodSource.adminCommand("getCmdLineOpts");
let i;
let isPassword = false;
for (i = 0; i < getCmdLineOptsResult.argv.length; i++) {
if (isPassword) {
assert.eq(getCmdLineOptsResult.argv[i],
"<password>",
"Password not properly censored: " + tojson(getCmdLineOptsResult));
isPassword = false;
continue;
}
if (getCmdLineOptsResult.argv[i] === "--sslPEMKeyPassword" ||
getCmdLineOptsResult.argv[i] === "--sslClusterPassword") {
isPassword = true;
}
}
assert.eq(getCmdLineOptsResult.parsed.net.tls.certificateKeyFilePassword,
"<password>",
"Password not properly censored: " + tojson(getCmdLineOptsResult));
assert.eq(getCmdLineOptsResult.parsed.net.tls.clusterPassword,
"<password>",
"Password not properly censored: " + tojson(getCmdLineOptsResult));
MongoRunner.stopMongod(mongodSource);
print(baseName + " succeeded.");
});