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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
|
// Test validation of connection strings passed to the JavaScript "connect()" function.
// Related to SERVER-8030.
port = "27017";
if (db.getMongo().host.indexOf(":") >= 0) {
var idx = db.getMongo().host.indexOf(":");
port = db.getMongo().host.substring(idx + 1);
}
var goodStrings = ["localhost:" + port + "/test", "127.0.0.1:" + port + "/test"];
var badStrings = [
{s: undefined, r: /^Missing connection string$/},
{s: 7, r: /^Incorrect type/},
{s: null, r: /^Incorrect type/},
{s: "", r: /^Empty connection string$/},
{s: " ", r: /^Empty connection string$/},
{s: ":", r: /^Missing host name/},
{s: "/", r: /^Missing host name/},
{s: ":/", r: /^Missing host name/},
{s: ":/test", r: /^Missing host name/},
{s: ":" + port + "/", r: /^Missing host name/},
{s: ":" + port + "/test", r: /^Missing host name/},
{s: "/test", r: /^Missing host name/},
{s: "localhost:/test", r: /^Missing port number/},
{s: "127.0.0.1:/test", r: /^Missing port number/},
{s: "127.0.0.1:cat/test", r: /^Invalid port number/},
{s: "127.0.0.1:1cat/test", r: /^Invalid port number/},
{s: "127.0.0.1:123456/test", r: /^Invalid port number/},
{s: "127.0.0.1:65536/test", r: /^Invalid port number/},
{s: "::1:65536/test", r: /^Invalid port number/},
{s: "127.0.0.1:" + port + "/", r: /^Missing database name/},
{s: "::1:" + port + "/", r: /^Missing database name/}
];
function testGood(i, connectionString) {
print("\nTesting good connection string " + i + " (\"" + connectionString + "\") ...");
var gotException = false;
var exception;
try {
var connectDB = connect(connectionString);
connectDB = null;
} catch (e) {
gotException = true;
exception = e;
}
if (!gotException) {
print("Good connection string " + i + " (\"" + connectionString +
"\") correctly validated");
return;
}
var message = "FAILED to correctly validate goodString " + i + " (\"" + connectionString +
"\"): exception was \"" + tojson(exception) + "\"";
doassert(message);
}
function testBad(i, connectionString, errorRegex) {
print("\nTesting bad connection string " + i + " (\"" + connectionString + "\") ...");
var gotException = false;
var gotCorrectErrorText = false;
var exception;
try {
var connectDB = connect(connectionString);
connectDB = null;
} catch (e) {
gotException = true;
exception = e;
if (errorRegex.test(e.message)) {
gotCorrectErrorText = true;
}
}
if (gotCorrectErrorText) {
print("Bad connection string " + i + " (\"" + connectionString +
"\") correctly rejected:\n" + tojson(exception));
return;
}
var message = "FAILED to generate correct exception for badString " + i + " (\"" +
connectionString + "\"): ";
if (gotException) {
message += "exception was \"" + tojson(exception) + "\", it should have matched \"" +
errorRegex.toString() + "\"";
} else {
message += "no exception was thrown";
}
doassert(message);
}
var i;
jsTest.log("TESTING " + goodStrings.length + " good connection strings");
for (i = 0; i < goodStrings.length; ++i) {
testGood(i, goodStrings[i]);
}
jsTest.log("TESTING " + badStrings.length + " bad connection strings");
for (i = 0; i < badStrings.length; ++i) {
testBad(i, badStrings[i].s, badStrings[i].r);
}
jsTest.log("SUCCESSFUL test completion");
|