mongo/jstests/ssl/ssl_crl.js

31 lines
1013 B
JavaScript

// Test CRLs
// This tests that using a CRL will allow clients with unrevoked certificates to connect.
// Also, tests that a server using an expired CRL will not allow connections.
// Note: crl_expired.pem is a CRL with no revoked certificates, but is an expired CRL.
// crl.pem is a CRL with no revoked certificates.
load('jstests/ssl/libs/ssl_helpers.js');
requireSSLProvider(['openssl', 'windows'], function() {
load("jstests/libs/ssl_test.js");
var testUnrevoked = new SSLTest(
// Server option overrides
{
sslMode: "requireSSL",
sslCRLFile: "jstests/libs/crl.pem",
setParameter: {enableTestCommands: 1}
});
assert(testUnrevoked.connectWorked());
var testRevoked = new SSLTest(
// Server option overrides
{
sslMode: "requireSSL",
sslCRLFile: "jstests/libs/crl_expired.pem",
setParameter: {enableTestCommands: 1}
});
assert(!testRevoked.connectWorked());
});