summaryrefslogtreecommitdiff
path: root/jstests/tool/dumprestore_excludecollections.js
diff options
context:
space:
mode:
authorMark Benvenuto <mark.benvenuto@mongodb.com>2016-05-28 17:55:12 -0400
committerMark Benvenuto <mark.benvenuto@mongodb.com>2016-05-28 17:55:12 -0400
commit6dcdd23dd37ef12c87e71cf59ef01cd82432efe0 (patch)
treec8cfb5acb62c80f375bc37e7d4350382deea6a37 /jstests/tool/dumprestore_excludecollections.js
parentd4ac5673ea3f6cef4ce9dbcec90e31813997a528 (diff)
downloadmongo-6dcdd23dd37ef12c87e71cf59ef01cd82432efe0.tar.gz
SERVER-23971 Clang-Format code
Diffstat (limited to 'jstests/tool/dumprestore_excludecollections.js')
-rw-r--r--jstests/tool/dumprestore_excludecollections.js74
1 files changed, 35 insertions, 39 deletions
diff --git a/jstests/tool/dumprestore_excludecollections.js b/jstests/tool/dumprestore_excludecollections.js
index 4563b8ffc03..c3f18065ce3 100644
--- a/jstests/tool/dumprestore_excludecollections.js
+++ b/jstests/tool/dumprestore_excludecollections.js
@@ -23,37 +23,35 @@ ret = MongoRunner.runMongoTool("mongodump",
assert.neq(ret, 0, "mongodump started successfully with --excludeCollection but no --db option");
resetDbpath(dumpDir);
-ret = MongoRunner.runMongoTool("mongodump",
- {
- out: dumpDir,
- db: testBaseName,
- collection: "foo",
- excludeCollection: "test",
- host: mongodSource.host
- });
+ret = MongoRunner.runMongoTool("mongodump", {
+ out: dumpDir,
+ db: testBaseName,
+ collection: "foo",
+ excludeCollection: "test",
+ host: mongodSource.host
+});
assert.neq(ret, 0, "mongodump started successfully with --excludeCollection and --collection");
resetDbpath(dumpDir);
ret = MongoRunner.runMongoTool(
"mongodump", {out: dumpDir, excludeCollectionsWithPrefix: "test", host: mongodSource.host});
-assert.neq(ret,
- 0,
- "mongodump started successfully with --excludeCollectionsWithPrefix but " +
- "no --db option");
+assert.neq(
+ ret,
+ 0,
+ "mongodump started successfully with --excludeCollectionsWithPrefix but " + "no --db option");
resetDbpath(dumpDir);
-ret = MongoRunner.runMongoTool("mongodump",
- {
- out: dumpDir,
- db: testBaseName,
- collection: "foo",
- excludeCollectionsWithPrefix: "test",
- host: mongodSource.host
- });
-assert.neq(ret,
- 0,
- "mongodump started successfully with --excludeCollectionsWithPrefix and " +
- "--collection");
+ret = MongoRunner.runMongoTool("mongodump", {
+ out: dumpDir,
+ db: testBaseName,
+ collection: "foo",
+ excludeCollectionsWithPrefix: "test",
+ host: mongodSource.host
+});
+assert.neq(
+ ret,
+ 0,
+ "mongodump started successfully with --excludeCollectionsWithPrefix and " + "--collection");
jsTest.log("Testing proper behavior of collection exclusion");
resetDbpath(dumpDir);
@@ -75,13 +73,12 @@ assert.eq(destDB.foo2.findOne().f, 2, "Wrong value in document");
destDB.dropDatabase();
resetDbpath(dumpDir);
-ret = MongoRunner.runMongoTool("mongodump",
- {
- out: dumpDir,
- db: testBaseName,
- excludeCollectionsWithPrefix: "test",
- host: mongodSource.host
- });
+ret = MongoRunner.runMongoTool("mongodump", {
+ out: dumpDir,
+ db: testBaseName,
+ excludeCollectionsWithPrefix: "test",
+ host: mongodSource.host
+});
ret = MongoRunner.runMongoTool("mongorestore", {dir: dumpDir, host: mongodDest.host});
assert.eq(ret, 0, "failed to run mongodump on expected successful call");
@@ -95,14 +92,13 @@ assert.eq(destDB.foo2.findOne().f, 2, "Wrong value in document");
destDB.dropDatabase();
resetDbpath(dumpDir);
-ret = MongoRunner.runMongoTool("mongodump",
- {
- out: dumpDir,
- db: testBaseName,
- excludeCollection: "foo",
- excludeCollectionsWithPrefix: "test",
- host: mongodSource.host
- });
+ret = MongoRunner.runMongoTool("mongodump", {
+ out: dumpDir,
+ db: testBaseName,
+ excludeCollection: "foo",
+ excludeCollectionsWithPrefix: "test",
+ host: mongodSource.host
+});
ret = MongoRunner.runMongoTool("mongorestore", {dir: dumpDir, host: mongodDest.host});
assert.eq(ret, 0, "failed to run mongodump on expected successful call");