summaryrefslogtreecommitdiff
path: root/jstests/disk/repair4.js
diff options
context:
space:
mode:
authorJonathan Abrahams <jonathan@mongodb.com>2016-03-09 12:17:50 -0500
committerJonathan Abrahams <jonathan@mongodb.com>2016-03-09 12:18:14 -0500
commit4ae691e8edc87d0e3cfb633bb91c328426be007b (patch)
tree52079a593f54382ca13a2e741633eab1b6271893 /jstests/disk/repair4.js
parenta025d43f3ce2efc1fb1282a718f5d286fa0a4dc1 (diff)
downloadmongo-4ae691e8edc87d0e3cfb633bb91c328426be007b.tar.gz
SERVER-22468 Format JS code with approved style in jstests/
Diffstat (limited to 'jstests/disk/repair4.js')
-rw-r--r--jstests/disk/repair4.js40
1 files changed, 20 insertions, 20 deletions
diff --git a/jstests/disk/repair4.js b/jstests/disk/repair4.js
index ff99389a380..f38f9036e47 100644
--- a/jstests/disk/repair4.js
+++ b/jstests/disk/repair4.js
@@ -5,24 +5,24 @@ var smallbase = MongoRunner.dataDir + "/repairpartitiontest";
var smallpath = smallbase + "/dir";
doIt = false;
-files = listFiles( MongoRunner.dataDir );
-for ( i in files ) {
- if ( files[ i ].name == smallbase ) {
+files = listFiles(MongoRunner.dataDir);
+for (i in files) {
+ if (files[i].name == smallbase) {
doIt = true;
}
}
-if ( !doIt ) {
- print( "path " + smallpath + " missing, skipping repair4 test" );
+if (!doIt) {
+ print("path " + smallpath + " missing, skipping repair4 test");
doIt = false;
}
-if ( doIt ) {
+if (doIt) {
var repairpath = MongoRunner.dataPath + baseName + "/";
- resetDbpath( smallpath );
- resetDbpath( repairpath );
-
+ resetDbpath(smallpath);
+ resetDbpath(repairpath);
+
var m = MongoRunner.runMongod({
nssize: "8",
noprealloc: "",
@@ -33,19 +33,19 @@ if ( doIt ) {
bind_ip: "127.0.0.1",
});
- db = m.getDB( baseName );
- db[ baseName ].save( {} );
- assert.commandWorked( db.runCommand( {repairDatabase:1, backupOriginalFiles:true} ) );
+ db = m.getDB(baseName);
+ db[baseName].save({});
+ assert.commandWorked(db.runCommand({repairDatabase: 1, backupOriginalFiles: true}));
function check() {
- files = listFiles( smallpath );
- for( f in files ) {
- assert( ! new RegExp( "^" + smallpath + "backup_" ).test( files[ f ].name ), "backup dir in dbpath" );
+ files = listFiles(smallpath);
+ for (f in files) {
+ assert(!new RegExp("^" + smallpath + "backup_").test(files[f].name),
+ "backup dir in dbpath");
}
-
- assert.eq.automsg( "1", "db[ baseName ].count()" );
+
+ assert.eq.automsg("1", "db[ baseName ].count()");
}
-
- check();
- MongoRunner.stopMongod( port );
+ check();
+ MongoRunner.stopMongod(port);
}