summaryrefslogtreecommitdiff
path: root/jstests/core/auth_copydb.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/core/auth_copydb.js')
-rw-r--r--jstests/core/auth_copydb.js19
1 files changed, 19 insertions, 0 deletions
diff --git a/jstests/core/auth_copydb.js b/jstests/core/auth_copydb.js
new file mode 100644
index 00000000000..f04cd0b0d29
--- /dev/null
+++ b/jstests/core/auth_copydb.js
@@ -0,0 +1,19 @@
+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" );