mirror of
https://github.com/mongodb/mongo.git
synced 2024-11-28 16:24:56 +01:00
6d33c3637e
This reverts commit 43e53251a3
.
66 lines
2.7 KiB
JavaScript
66 lines
2.7 KiB
JavaScript
/**
|
|
* This test checks the upgrade path for mixed mode ssl + x509 auth
|
|
* from disabled/keyfiles up to preferSSL/x509
|
|
*
|
|
* NOTE: This test is similar to upgrade_to_x509_ssl_nossl.js in the
|
|
* sslSpecial test suite. This test uses ssl communication
|
|
* and therefore cannot test modes that do not allow ssl.
|
|
*/
|
|
|
|
function authAllNodes() {
|
|
for (var n = 0; n < rst.nodes.length; n++) {
|
|
var status = rst.nodes[n].getDB("admin").auth("root", "pwd");
|
|
assert.eq(status, 1);
|
|
}
|
|
};
|
|
|
|
// If we are running in use-x509 passthrough mode, turn it off
|
|
// since it is not necessary for this test.
|
|
TestData.useX509 = false;
|
|
load("jstests/ssl/libs/ssl_helpers.js");
|
|
|
|
opts = {sslMode:"allowSSL", sslPEMKeyFile: SERVER_CERT,
|
|
sslAllowInvalidCertificates: "",
|
|
clusterAuthMode:"sendKeyFile", keyFile: KEYFILE,
|
|
sslCAFile: CA_CERT};
|
|
var NUM_NODES = 3;
|
|
var rst = new ReplSetTest({ name: 'sslSet', nodes: NUM_NODES, nodeOptions : opts });
|
|
rst.startSet();
|
|
rst.initiate();
|
|
|
|
// Connect to master and do some basic operations
|
|
var rstConn1 = rst.getMaster();
|
|
print("Performing basic operations on master.");
|
|
rstConn1.getDB("admin").createUser({user:"root", pwd:"pwd", roles:["root"]}, {w: NUM_NODES});
|
|
rstConn1.getDB("admin").auth("root", "pwd");
|
|
rstConn1.getDB("test").a.insert({a:1, str:"TESTTESTTEST"});
|
|
rstConn1.getDB("test").a.insert({a:1, str:"WOOPWOOPWOOPWOOPWOOP"});
|
|
assert.eq(2, rstConn1.getDB("test").a.count(), "Error interacting with replSet");
|
|
|
|
print("===== UPGRADE allowSSL,sendKeyfile -> preferSSL,sendX509 =====");
|
|
authAllNodes();
|
|
rst.awaitReplication();
|
|
rst.upgradeSet({sslMode:"preferSSL", sslPEMKeyFile: SERVER_CERT,
|
|
sslAllowInvalidCertificates: "",
|
|
clusterAuthMode:"sendX509", keyFile: KEYFILE,
|
|
sslCAFile: CA_CERT}, "root", "pwd");
|
|
// The upgradeSet call restarts the nodes so we need to reauthenticate.
|
|
authAllNodes();
|
|
var rstConn3 = rst.getMaster();
|
|
rstConn3.getDB("test").a.insert({a:3, str:"TESTTESTTEST"});
|
|
assert.eq(3, rstConn3.getDB("test").a.count(), "Error interacting with replSet");
|
|
rst.awaitReplication();
|
|
// Test that a non-ssl connection can still be made
|
|
var canConnectNoSSL = runMongoProgram("mongo", "--port", rst.ports[0], "--eval", ";");
|
|
assert.eq(0, canConnectNoSSL, "SSL Connection attempt failed when it should succeed");
|
|
|
|
print("===== UPGRADE preferSSL,sendX509 -> requireSSL,x509 =====");
|
|
rst.upgradeSet({sslMode:"requireSSL", sslPEMKeyFile: SERVER_CERT,
|
|
sslAllowInvalidCertificates: "",
|
|
clusterAuthMode:"x509", keyFile: KEYFILE,
|
|
sslCAFile: CA_CERT}, "root", "pwd");
|
|
authAllNodes();
|
|
var rstConn4 = rst.getMaster();
|
|
rstConn4.getDB("test").a.insert({a:4, str:"TESTTESTTEST"});
|
|
assert.eq(4, rstConn4.getDB("test").a.count(), "Error interacting with replSet");
|