mirror of
https://github.com/mongodb/mongo.git
synced 2024-12-01 09:32:32 +01:00
6d33c3637e
This reverts commit 43e53251a3
.
44 lines
1.8 KiB
JavaScript
44 lines
1.8 KiB
JavaScript
// Test forcing certificate validation
|
|
// This tests that forcing certification validation will prohibit clients without certificates
|
|
// from connecting.
|
|
ports = allocatePorts( 2 );
|
|
|
|
var baseName = "jstests_ssl_ssl_weak";
|
|
|
|
|
|
// Test that connecting with no client certificate and --sslAllowConnectionsWithoutCertificates
|
|
// (an alias for sslWeakCertificateValidation) connects successfully.
|
|
var md = startMongod( "--port", ports[0], "--dbpath", MongoRunner.dataPath + baseName + "1",
|
|
"--sslMode", "requireSSL",
|
|
"--sslPEMKeyFile", "jstests/libs/server.pem",
|
|
"--sslCAFile", "jstests/libs/ca.pem",
|
|
"--sslAllowConnectionsWithoutCertificates");
|
|
|
|
var mongo = runMongoProgram("mongo", "--port", ports[0], "--ssl", "--sslAllowInvalidCertificates",
|
|
"--eval", ";");
|
|
|
|
// 0 is the exit code for success
|
|
assert(mongo==0);
|
|
|
|
// Test that connecting with a valid client certificate connects successfully.
|
|
mongo = runMongoProgram("mongo", "--port", ports[0], "--ssl", "--sslAllowInvalidCertificates",
|
|
"--sslPEMKeyFile", "jstests/libs/client.pem",
|
|
"--eval", ";");
|
|
|
|
// 0 is the exit code for success
|
|
assert(mongo==0);
|
|
|
|
|
|
// Test that connecting with no client certificate and no --sslWeakCertificateValidation fails to
|
|
// connect.
|
|
var md2 = startMongod( "--port", ports[1], "--dbpath", MongoRunner.dataPath + baseName + "2",
|
|
"--sslMode", "requireSSL",
|
|
"--sslPEMKeyFile", "jstests/libs/server.pem",
|
|
"--sslCAFile", "jstests/libs/ca.pem");
|
|
|
|
mongo = runMongoProgram("mongo", "--port", ports[1], "--ssl", "--sslAllowInvalidCertificates",
|
|
"--eval", ";");
|
|
|
|
// 1 is the exit code for failure
|
|
assert(mongo==1);
|