summaryrefslogtreecommitdiff
path: root/jstests/noPassthroughWithMongod/server7428.js
blob: ed62e7adbf6dd97f64a34db209e8cb43ac9e8682 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Regression test for SERVER-7428.

// TODO(spencer): move this test out of slowNightly directory once there is a better place for tests
// that start their own mongod's but aren't slow

// Verify that the copyDatabase command works appropriately when the
// target mongo instance has authentication enabled.


// Setup fromDb with no auth
var fromDb = MongoRunner.runMongod({ port: 29000 });
 
// Setup toDb with auth
var toDb = MongoRunner.runMongod({auth : "", port : 31001});
var admin = toDb.getDB("admin");
admin.createUser({user: "foo", pwd: "bar", roles: jsTest.adminUserRoles});
admin.auth("foo","bar");
  
admin.copyDatabase('test', 'test', fromDb.host)