diff options
Diffstat (limited to 'jstests/noPassthrough/utf8_paths.js')
-rw-r--r-- | jstests/noPassthrough/utf8_paths.js | 52 |
1 files changed, 26 insertions, 26 deletions
diff --git a/jstests/noPassthrough/utf8_paths.js b/jstests/noPassthrough/utf8_paths.js index 49cb5a63bac..b7b17355457 100644 --- a/jstests/noPassthrough/utf8_paths.js +++ b/jstests/noPassthrough/utf8_paths.js @@ -2,36 +2,36 @@ * Test that verifies mongod can start using paths that contain UTF-8 characters that are not ASCII. */ (function() { - 'use strict'; - var db_name = "ελληνικά"; - var path = MongoRunner.dataPath + "Росси́я"; - - mkdir(path); - - // Test MongoD - let testMongoD = function() { - let options = { - dbpath: path, - useLogFiles: true, - pidfilepath: path + "/pidfile", - }; +'use strict'; +var db_name = "ελληνικά"; +var path = MongoRunner.dataPath + "Росси́я"; + +mkdir(path); + +// Test MongoD +let testMongoD = function() { + let options = { + dbpath: path, + useLogFiles: true, + pidfilepath: path + "/pidfile", + }; - // directoryperdb is only supported with the wiredTiger storage engine - if (!jsTest.options().storageEngine || jsTest.options().storageEngine === "wiredTiger") { - options["directoryperdb"] = ""; - } + // directoryperdb is only supported with the wiredTiger storage engine + if (!jsTest.options().storageEngine || jsTest.options().storageEngine === "wiredTiger") { + options["directoryperdb"] = ""; + } - let conn = MongoRunner.runMongod(options); - assert.neq(null, conn, 'mongod was unable to start up'); + let conn = MongoRunner.runMongod(options); + assert.neq(null, conn, 'mongod was unable to start up'); - let coll = conn.getCollection(db_name + ".foo"); - assert.writeOK(coll.insert({_id: 1})); + let coll = conn.getCollection(db_name + ".foo"); + assert.writeOK(coll.insert({_id: 1})); - MongoRunner.stopMongod(conn); - }; + MongoRunner.stopMongod(conn); +}; - testMongoD(); +testMongoD(); - // Start a second time to test things like log rotation. - testMongoD(); +// Start a second time to test things like log rotation. +testMongoD(); })(); |