blob: 58cabab7c001abb8a8c4a8161287a659a855e58d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
// Ensures that invalid DB names are reported as write errors
(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";
var doWrite = function() { return invalidDB.coll.insert({x: 1}); };
// This will return a $err style error message if we use OP_INSERT, but a
// {ok: 0, errmsg: "...", code: ...} style response if we use write commands.
if (db.getMongo().writeMode() == "compatibility") {
assert.throws(doWrite);
}
else {
assert.writeError(doWrite());
}
// 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');
});
}());
|