diff options
Diffstat (limited to 'jstests/sharding/copydb_from_mongos.js')
-rw-r--r-- | jstests/sharding/copydb_from_mongos.js | 30 |
1 files changed, 13 insertions, 17 deletions
diff --git a/jstests/sharding/copydb_from_mongos.js b/jstests/sharding/copydb_from_mongos.js index aa6ac16b465..66db42407ca 100644 --- a/jstests/sharding/copydb_from_mongos.js +++ b/jstests/sharding/copydb_from_mongos.js @@ -1,26 +1,22 @@ (function() { -var st = new ShardingTest({ shards: 1 }); + var st = new ShardingTest({shards: 1}); -var testDB = st.s.getDB('test'); -assert.writeOK(testDB.foo.insert({ a: 1 })); + var testDB = st.s.getDB('test'); + assert.writeOK(testDB.foo.insert({a: 1})); -var res = testDB.adminCommand({ copydb: 1, - fromhost: st.s.host, - fromdb: 'test', - todb: 'test_copy' }); -assert.commandWorked(res); + var res = + testDB.adminCommand({copydb: 1, fromhost: st.s.host, fromdb: 'test', todb: 'test_copy'}); + assert.commandWorked(res); -var copy = st.s.getDB('test_copy'); -assert.eq(1, copy.foo.count()); -assert.eq(1, copy.foo.findOne().a); + var copy = st.s.getDB('test_copy'); + assert.eq(1, copy.foo.count()); + assert.eq(1, copy.foo.findOne().a); -// Test invalid todb database name. -assert.commandFailed(testDB.adminCommand({ copydb: 1, - fromhost: st.s.host, - fromdb: 'test_copy', - todb: 'test/copy' })); + // Test invalid todb database name. + assert.commandFailed(testDB.adminCommand( + {copydb: 1, fromhost: st.s.host, fromdb: 'test_copy', todb: 'test/copy'})); -st.stop(); + st.stop(); })(); |