summaryrefslogtreecommitdiff
path: root/jstests/auth/readIndex.js
blob: 433a2e7eb1d1d1477f4e305a1548bdf7fe62a6b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// SERVER-8625: Test that dbAdmins can view index definitions.
var conn = MongoRunner.runMongod({auth : ""});

var adminDB = conn.getDB("admin");
var testDB = conn.getDB("testdb");
var indexName = 'idx_a';

adminDB.createUser({user:'root', pwd:'password', roles:['root']});
adminDB.auth('root', 'password');
testDB.foo.insert({a:1});
testDB.createUser({user:'dbAdmin', pwd:'password', roles:['dbAdmin']});
adminDB.logout();

testDB.auth('dbAdmin', 'password');
testDB.foo.ensureIndex({a:1}, {name:indexName});
assert.eq(2, testDB.foo.getIndexes().length); // index on 'a' plus default _id index
var indexList = testDB.foo.getIndexes().filter(function(idx) {
    return idx.name === indexName;
});
assert.eq(1, indexList.length, tojson(indexList));
assert.docEq(indexList[0].key, {a:1}, tojson(indexList));