summaryrefslogtreecommitdiff
path: root/jstests/sharding/shard_with_special_db_names.js
blob: cb1ae66a04c9cae917edc0f0f3f98e326919a38f (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
27
28
29
30
(function(){

var s = new ShardingTest({ name: "shard_with_special_db_names",
                           shards: 2,
                           mongos: 2 });
var specialDB = "[a-z]+";
var specialNS = specialDB + ".special";

s.adminCommand( { enablesharding : "test" } );
s.ensurePrimaryShard('test', 'shard0001');
s.adminCommand( { shardcollection : "test.data" , key : { num : 1 } } );

// Test that the database will not complain "cannot have 2 database names that
// differs on case"
s.adminCommand( { enablesharding : specialDB } );
s.ensurePrimaryShard(specialDB, 'shard0000');
s.adminCommand( { shardcollection :  specialNS, key : { num : 1 } } );

var exists = s.getDB("config").collections.find( { _id: specialNS } ).count();
assert.eq( exists, 1 );

// Test that drop database properly cleans up config
s.getDB(specialDB).dropDatabase();

var cursor = s.getDB("config").collections.find( { _id: specialNS } );

assert.eq( cursor.count(), 1 );
assert( cursor.next()["dropped"] );

})();