mirror of https://github.com/mongodb/mongo
35 lines
925 B
JavaScript
35 lines
925 B
JavaScript
/**
|
|
* Test that verifies mongod can start using paths that contain UTF-8 characters that are not ASCII.
|
|
*/
|
|
let db_name = "ελληνικά";
|
|
let 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"] = "";
|
|
}
|
|
|
|
let conn = MongoRunner.runMongod(options);
|
|
assert.neq(null, conn, "mongod was unable to start up");
|
|
|
|
let coll = conn.getCollection(db_name + ".foo");
|
|
assert.commandWorked(coll.insert({_id: 1}));
|
|
|
|
MongoRunner.stopMongod(conn);
|
|
};
|
|
|
|
testMongoD();
|
|
|
|
// Start a second time to test things like log rotation.
|
|
testMongoD();
|