1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
|
// Check that OCSP verification works
// @tags: [requires_http_client]
load("jstests/ocsp/lib/mock_ocsp.js");
(function() {
"use strict";
if (determineSSLProvider() === "apple") {
return;
}
const ocsp_options = {
sslMode: "requireSSL",
sslPEMKeyFile: OCSP_SERVER_CERT,
sslCAFile: OCSP_CA_CERT,
sslAllowInvalidHostnames: "",
};
const sharding_config = {
shards: 1,
mongos: 1,
other: {
configOptions: ocsp_options,
mongosOptions: ocsp_options,
rsOptions: ocsp_options,
shardOptions: ocsp_options,
}
};
function test() {
assert.doesNotThrow(() => {
let st = new ShardingTest(sharding_config);
st.getConnNames();
st.stop();
});
}
clearOCSPCache();
test();
let mock_ocsp = new MockOCSPServer("", 10000);
mock_ocsp.start();
clearOCSPCache();
test();
mock_ocsp.stop();
// We don't want to invoke the hang analyzer because we
// expect this test to fail by timing out
MongoRunner.runHangAnalyzer.disable();
clearOCSPCache();
var st = new ShardingTest(sharding_config);
mock_ocsp = new MockOCSPServer(FAULT_REVOKED, 1);
mock_ocsp.start();
const err = assert.throws(() => {
st.restartMongos(0);
});
mock_ocsp.stop();
const errMsg = err.toString();
assert.gte(errMsg.search("assert.soon failed"), 0, "Test failed for wrong reason: " + err);
sleep(2000);
MongoRunner.runHangAnalyzer.enable();
mock_ocsp = new MockOCSPServer("", 10000);
mock_ocsp.start();
// Get the mongos back up again so that we can shutdown the ShardingTest.
st.restartMongos(0);
mock_ocsp.stop();
st.stop();
}());
|