mirror of https://github.com/mongodb/mongo
19 lines
642 B
JavaScript
19 lines
642 B
JavaScript
// Ensures that invalid DB names are reported as write errors
|
|
//
|
|
// Can't shard collection with invalid db name.
|
|
// @tags: [assumes_unsharded_collection]
|
|
(function() {
|
|
var invalidDB = db.getSiblingDB("NonExistentDB");
|
|
|
|
// This is a hack to bypass invalid database name checking by the DB constructor
|
|
invalidDB._name = "Invalid DB Name";
|
|
|
|
assert.writeError(invalidDB.coll.insert({x: 1}));
|
|
|
|
// Ensure that no database was created
|
|
var dbList = db.getSiblingDB('admin').runCommand({listDatabases: 1}).databases;
|
|
dbList.forEach(function(dbInfo) {
|
|
assert.neq('Invalid DB Name', dbInfo.name, 'database with invalid name was created');
|
|
});
|
|
}());
|