Files
mongo/jstests/core/auth_copydb.js
Jack Mulrow 00d92ece19 SERVER-31194 Add jscore tags for retryable_writes_jscore_stepdown_passthrough.yml suite
The actual suite will come in a follow-up commit.
2017-12-07 14:36:15 -05:00

22 lines
499 B
JavaScript

// @tags: [requires_non_retryable_commands]
a = db.getSisterDB("copydb2-test-a");
b = db.getSisterDB("copydb2-test-b");
a.dropDatabase();
b.dropDatabase();
a.dropAllUsers();
b.dropAllUsers();
a.foo.save({a: 1});
a.createUser({user: "chevy", pwd: "chase", roles: jsTest.basicUserRoles});
assert.eq(1, a.foo.count(), "A");
assert.eq(0, b.foo.count(), "B");
// SERVER-727
a.copyDatabase(a._name, b._name, "", "chevy", "chase");
assert.eq(1, a.foo.count(), "C");
assert.eq(1, b.foo.count(), "D");