summaryrefslogtreecommitdiff
path: root/jstests/ssl/ssl_crl_revoked.js
blob: 61c9e30dbe74f5d65fa9c5eb82b07c2e5bd278f9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// Test a revoked CRL -- ensure that a connection is not allowed.
// Note: crl_client_revoked.pem is a CRL with the client.pem certificate listed as revoked.
// This test should test that the user cannot connect with client.pem certificate.

port = allocatePorts( 1 )[ 0 ];
var baseName = "jstests_ssl_ssl_crl_revoked";


var md = startMongod( "--port", port, "--dbpath", "/data/db/" + baseName, "--sslOnNormalPorts",
                    "--sslPEMKeyFile", "jstests/libs/server.pem",
                    "--sslCAFile", "jstests/libs/ca.pem",
                    "--sslCRLFile", "jstests/libs/crl_client_revoked.pem");


var mongo = runMongoProgram("mongo", "--port", port, "--ssl", 
                            "--sslPEMKeyFile", "jstests/libs/client_revoked.pem",
                            "--eval", ";");

// 1 is the exit code for the shell failing to connect, which is what we want
// for a successful test.
assert(mongo==1);