summaryrefslogtreecommitdiff
path: root/jstests/httpinterface/network_options.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/httpinterface/network_options.js')
-rw-r--r--jstests/httpinterface/network_options.js16
1 files changed, 4 insertions, 12 deletions
diff --git a/jstests/httpinterface/network_options.js b/jstests/httpinterface/network_options.js
index 0302c9ac15b..ff5e453b4ec 100644
--- a/jstests/httpinterface/network_options.js
+++ b/jstests/httpinterface/network_options.js
@@ -6,9 +6,7 @@ load('jstests/libs/command_line/test_parsed_options.js');
// Object Check
jsTest.log("Testing \"objcheck\" command line option");
-var expectedResult = {
- "parsed": {"net": {"wireObjectCheck": true}}
-};
+var expectedResult = {"parsed": {"net": {"wireObjectCheck": true}}};
testGetCmdLineOptsMongod({objcheck: ""}, expectedResult);
jsTest.log("Testing \"noobjcheck\" command line option");
@@ -35,9 +33,7 @@ testGetCmdLineOptsMongod({}, expectedResult);
// HTTP Interface
jsTest.log("Testing \"httpinterface\" command line option");
-var expectedResult = {
- "parsed": {"net": {"http": {"enabled": true}}}
-};
+var expectedResult = {"parsed": {"net": {"http": {"enabled": true}}}};
testGetCmdLineOptsMongod({httpinterface: ""}, expectedResult);
jsTest.log("Testing \"nohttpinterface\" command line option");
@@ -77,9 +73,7 @@ testGetCmdLineOptsMongod({}, expectedResult);
// Unix Socket
if (!_isWindows()) {
jsTest.log("Testing \"nounixsocket\" command line option");
- expectedResult = {
- "parsed": {"net": {"unixDomainSocket": {"enabled": false}}}
- };
+ expectedResult = {"parsed": {"net": {"unixDomainSocket": {"enabled": false}}}};
testGetCmdLineOptsMongod({nounixsocket: ""}, expectedResult);
jsTest.log("Testing \"net.wireObjectCheck\" config file option");
@@ -93,9 +87,7 @@ if (!_isWindows()) {
expectedResult);
jsTest.log("Testing with no explicit network option setting");
- expectedResult = {
- "parsed": {"net": {}}
- };
+ expectedResult = {"parsed": {"net": {}}};
testGetCmdLineOptsMongod({}, expectedResult);
}