mirror of
https://github.com/mongodb/mongo.git
synced 2024-11-25 09:19:32 +01:00
3cbd53553c
GitOrigin-RevId: 2ceb3b5faa6e0038e0f6d2f4326241b735b83535
70 lines
1.9 KiB
JavaScript
70 lines
1.9 KiB
JavaScript
const SERVER1_CERT = "jstests/libs/server_SAN.pem";
|
|
const SERVER2_CERT = "jstests/libs/server_SAN2.pem";
|
|
const CA_CERT = "jstests/libs/ca.pem";
|
|
const CLIENT_CERT = "jstests/libs/client.pem";
|
|
|
|
// Some test machines lack ipv6 so test for by starting a mongod that needs to bind to an ipv6
|
|
// address.
|
|
var hasIpv6 = true;
|
|
const mongodHasIpv6 = MongoRunner.runMongod({
|
|
tlsMode: "requireTLS",
|
|
tlsCertificateKeyFile: SERVER1_CERT,
|
|
tlsCAFile: CA_CERT,
|
|
ipv6: "",
|
|
bind_ip: "::1,127.0.0.1"
|
|
});
|
|
if (mongodHasIpv6 == null) {
|
|
jsTest.log("Unable to run all tests because ipv6 is not on machine, see BF-10990");
|
|
hasIpv6 = false;
|
|
} else {
|
|
MongoRunner.stopMongod(mongodHasIpv6);
|
|
}
|
|
|
|
function authAndTest(cert_option) {
|
|
function test_host(host, port) {
|
|
let args = [
|
|
"mongo",
|
|
"--host",
|
|
host,
|
|
"--port",
|
|
port,
|
|
"--tls",
|
|
"--tlsCAFile",
|
|
CA_CERT,
|
|
"--tlsCertificateKeyFile",
|
|
CLIENT_CERT,
|
|
"--eval",
|
|
";"
|
|
];
|
|
|
|
if (hasIpv6) {
|
|
args.push("--ipv6");
|
|
}
|
|
|
|
const mongo = runMongoProgram.apply(null, args);
|
|
|
|
assert.eq(0, mongo, "Connection succeeded");
|
|
}
|
|
|
|
const x509_options = {tlsMode: "requireTLS", tlsCAFile: CA_CERT, bind_ip_all: ""};
|
|
|
|
if (hasIpv6) {
|
|
Object.extend(x509_options, {ipv6: ""});
|
|
}
|
|
|
|
let mongod = MongoRunner.runMongod(Object.merge(x509_options, cert_option));
|
|
|
|
test_host("localhost", mongod.port);
|
|
test_host("127.0.0.1", mongod.port);
|
|
if (hasIpv6) {
|
|
test_host("::1", mongod.port);
|
|
}
|
|
|
|
MongoRunner.stopMongod(mongod);
|
|
}
|
|
|
|
print("1. Test parsing different values in SAN DNS and IP fields. ");
|
|
authAndTest({tlsCertificateKeyFile: SERVER1_CERT});
|
|
print("2. Test parsing IP Addresses in SAN DNS fields. ");
|
|
authAndTest({tlsCertificateKeyFile: SERVER2_CERT});
|