summaryrefslogtreecommitdiff
path: root/jstests/replsets/system_profile.js
diff options
context:
space:
mode:
authorclang-format-7.0.1 <adam.martin@10gen.com>2019-07-26 18:20:35 -0400
committerADAM David Alan Martin <adam.martin@10gen.com>2019-07-27 11:02:23 -0400
commit134a4083953270e8a11430395357fb70a29047ad (patch)
treedd428e1230e31d92b20b393dfdc17ffe7fa79cb6 /jstests/replsets/system_profile.js
parent1e46b5049003f427047e723ea5fab15b5a9253ca (diff)
downloadmongo-134a4083953270e8a11430395357fb70a29047ad.tar.gz
SERVER-41772 Apply clang-format 7.0.1 to the codebase
Diffstat (limited to 'jstests/replsets/system_profile.js')
-rw-r--r--jstests/replsets/system_profile.js75
1 files changed, 37 insertions, 38 deletions
diff --git a/jstests/replsets/system_profile.js b/jstests/replsets/system_profile.js
index 7e1250da6dd..4e525d4fc93 100644
--- a/jstests/replsets/system_profile.js
+++ b/jstests/replsets/system_profile.js
@@ -2,48 +2,47 @@
// to the secondary.
(function() {
- "use strict";
- var rst = new ReplSetTest({nodes: 2});
- rst.startSet();
- rst.initiate();
- rst.awaitReplication();
+"use strict";
+var rst = new ReplSetTest({nodes: 2});
+rst.startSet();
+rst.initiate();
+rst.awaitReplication();
- // filter out noop writes
- var getLatestOp = function() {
- return primaryDB.getSiblingDB('local')
- .oplog.rs.find({op: {$ne: 'n'}})
- .sort({$natural: -1})
- .limit(1)
- .next();
- };
+// filter out noop writes
+var getLatestOp = function() {
+ return primaryDB.getSiblingDB('local')
+ .oplog.rs.find({op: {$ne: 'n'}})
+ .sort({$natural: -1})
+ .limit(1)
+ .next();
+};
- var primaryDB = rst.getPrimary().getDB('test');
- assert.writeOK(primaryDB.foo.insert({}));
- var op = getLatestOp();
+var primaryDB = rst.getPrimary().getDB('test');
+assert.writeOK(primaryDB.foo.insert({}));
+var op = getLatestOp();
- // Enable profiling on the primary
- assert.commandWorked(primaryDB.runCommand({profile: 2}));
- assert.eq(op, getLatestOp(), "oplog entry created when profile was enabled");
- assert.writeOK(primaryDB.foo.insert({}));
- op = getLatestOp();
- assert.commandWorked(primaryDB.runCommand({profile: 0}));
- assert.eq(op, getLatestOp(), "oplog entry created when profile was disabled");
+// Enable profiling on the primary
+assert.commandWorked(primaryDB.runCommand({profile: 2}));
+assert.eq(op, getLatestOp(), "oplog entry created when profile was enabled");
+assert.writeOK(primaryDB.foo.insert({}));
+op = getLatestOp();
+assert.commandWorked(primaryDB.runCommand({profile: 0}));
+assert.eq(op, getLatestOp(), "oplog entry created when profile was disabled");
- // dropCollection
- assert(primaryDB.system.profile.drop());
- assert.eq(op, getLatestOp(), "oplog entry created when system.profile was dropped");
+// dropCollection
+assert(primaryDB.system.profile.drop());
+assert.eq(op, getLatestOp(), "oplog entry created when system.profile was dropped");
- assert.commandWorked(primaryDB.createCollection("system.profile", {capped: true, size: 1000}));
- assert.eq(op, getLatestOp(), "oplog entry created when system.profile was created");
- assert.commandWorked(primaryDB.runCommand({profile: 2}));
- assert.writeOK(primaryDB.foo.insert({}));
- op = getLatestOp();
- assert.commandWorked(primaryDB.runCommand({profile: 0}));
+assert.commandWorked(primaryDB.createCollection("system.profile", {capped: true, size: 1000}));
+assert.eq(op, getLatestOp(), "oplog entry created when system.profile was created");
+assert.commandWorked(primaryDB.runCommand({profile: 2}));
+assert.writeOK(primaryDB.foo.insert({}));
+op = getLatestOp();
+assert.commandWorked(primaryDB.runCommand({profile: 0}));
- // emptycapped the collection
- assert.commandWorked(primaryDB.runCommand({emptycapped: "system.profile"}));
- assert.eq(
- op, getLatestOp(), "oplog entry created when system.profile was emptied via emptycapped");
- assert(primaryDB.system.profile.drop());
- rst.stopSet();
+// emptycapped the collection
+assert.commandWorked(primaryDB.runCommand({emptycapped: "system.profile"}));
+assert.eq(op, getLatestOp(), "oplog entry created when system.profile was emptied via emptycapped");
+assert(primaryDB.system.profile.drop());
+rst.stopSet();
})();