0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-12-01 09:32:32 +01:00
mongodb/jstests/auth/readIndex.js

22 lines
884 B
JavaScript
Raw Normal View History

// 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.createIndex({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));
MongoRunner.stopMongod(conn, null, {user: 'root', pwd: 'password'});