blob: 1cb3b612d7def31202541854e931adac81d52a31 (
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
31
32
33
34
35
36
37
|
// Test the listCollections command and system.namespaces
mydb = db.getSisterDB( "list_collections1" );
mydb.dropDatabase();
mydb.foo.insert( { x : 5 } );
mydb.runCommand( { create : "bar", temp : true } );
res = mydb.runCommand( "listCollections" );
collections = new DBCommandCursor( db.getMongo(), res ).toArray();
bar = collections.filter( function(x){ return x.name == "bar"; } )[0];
foo = collections.filter( function(x){ return x.name == "foo" ; } )[0];
assert( bar );
assert( foo );
assert.eq( bar.name, mydb.bar.getName() );
assert.eq( foo.name, mydb.foo.getName() );
assert( mydb.bar.temp, tojson( bar ) );
getCollectionName = function(infoObj) { return infoObj.name; }
assert.eq( mydb._getCollectionInfosSystemNamespaces().map(getCollectionName),
mydb._getCollectionInfosCommand().map(getCollectionName) );
assert.eq( mydb.getCollectionInfos().map(getCollectionName),
mydb._getCollectionInfosCommand().map(getCollectionName) );
// Test the listCollections command and querying system.namespaces when a filter is specified.
assert.eq(mydb._getCollectionInfosSystemNamespaces({name: "foo"}).map(getCollectionName),
mydb._getCollectionInfosCommand({name: "foo"}).map(getCollectionName),
"listCollections command and querying system.namespaces returned different results");
mydb.dropDatabase();
|