summaryrefslogtreecommitdiff
path: root/jstests/core/dbcase.js
blob: 033608a3f6aca5221cbc3f39a419958b36f83b60 (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
25
26
// Check db name duplication constraint SERVER-2111

a = db.getSisterDB("dbcasetest_dbnamea");
b = db.getSisterDB("dbcasetest_dbnameA");

a.dropDatabase();
b.dropDatabase();

assert.writeOK(a.foo.save({x: 1}));

res = b.foo.save({x: 1});
assert.writeError(res);

assert.neq(-1, db.getMongo().getDBNames().indexOf(a.getName()));
assert.eq(-1, db.getMongo().getDBNames().indexOf(b.getName()));
printjson(db.getMongo().getDBs().databases);

a.dropDatabase();
b.dropDatabase();

ai = db.getMongo().getDBNames().indexOf(a.getName());
bi = db.getMongo().getDBNames().indexOf(b.getName());
// One of these dbs may exist if there is a slave active, but they must
// not both exist.
assert(ai == -1 || bi == -1);
printjson(db.getMongo().getDBs().databases);