diff options
Diffstat (limited to 'jstests/noPassthroughWithMongod/unix_socket1.js')
-rw-r--r-- | jstests/noPassthroughWithMongod/unix_socket1.js | 19 |
1 files changed, 9 insertions, 10 deletions
diff --git a/jstests/noPassthroughWithMongod/unix_socket1.js b/jstests/noPassthroughWithMongod/unix_socket1.js index 3cd64c3370e..d6f10062565 100644 --- a/jstests/noPassthroughWithMongod/unix_socket1.js +++ b/jstests/noPassthroughWithMongod/unix_socket1.js @@ -1,5 +1,5 @@ doesLogMatchRegex = function(logArray, regex) { - for (var i = (logArray.length - 1); i >= 0; i--) { + for (var i = (logArray.length - 1); i >= 0; i--) { var regexInLine = regex.exec(logArray[i]); if (regexInLine != null) { return true; @@ -8,11 +8,10 @@ doesLogMatchRegex = function(logArray, regex) { return false; }; - -if ( ! _isWindows() ) { +if (!_isWindows()) { hoststring = db.getMongo().host; index = hoststring.lastIndexOf(':'); - if (index == -1){ + if (index == -1) { port = '27017'; } else { port = hoststring.substr(index + 1); @@ -20,24 +19,24 @@ if ( ! _isWindows() ) { sock = new Mongo('/tmp/mongodb-' + port + '.sock'); sockdb = sock.getDB(db.getName()); - assert( sockdb.runCommand('ping').ok ); + assert(sockdb.runCommand('ping').ok); // Test unix socket path var path = MongoRunner.dataDir + "/sockpath"; mkdir(path); var dataPath = MongoRunner.dataDir + "/sockpath_data"; - + var conn = MongoRunner.runMongod({dbpath: dataPath, unixSocketPrefix: path}); - + var sock2 = new Mongo(path + "/mongodb-" + conn.port + ".sock"); sockdb2 = sock2.getDB(db.getName()); - assert( sockdb2.runCommand('ping').ok ); + assert(sockdb2.runCommand('ping').ok); // Test the naming of the unix socket - var log = db.adminCommand({ getLog: 'global' }); + var log = db.adminCommand({getLog: 'global'}); var ll = log.log; var re = new RegExp("anonymous unix socket"); - assert( doesLogMatchRegex( ll, re ), "Log message did not contain 'anonymous unix socket'"); + assert(doesLogMatchRegex(ll, re), "Log message did not contain 'anonymous unix socket'"); } else { print("Not testing unix sockets on Windows"); } |