summaryrefslogtreecommitdiff
path: root/jstests/core/profile_repair_cursor.js
blob: c0b3a34a9293904092d1d9c32e11784647996b03 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
// @tags: [does_not_support_stepdowns, requires_profiling]

// Confirms that a repairCursor command and subsequent getMores of its cursor are profiled
// correctly.

(function() {
"use strict";

// For getLatestProfilerEntry and getProfilerProtocolStringForCommand
load("jstests/libs/profiler.js");

var testDB = db.getSiblingDB("profile_repair_cursor");
var testColl = testDB.testColl;
assert.commandWorked(testDB.dropDatabase());

// Insert some data to scan over.
assert.writeOK(testColl.insert([{}, {}, {}, {}]));

testDB.setProfilingLevel(2);

const profileEntryFilter = {
    op: "command",
    "command.repairCursor": testColl.getName()
};

let cmdRes = testDB.runCommand({repairCursor: testColl.getName()});
if (cmdRes.code === ErrorCodes.CommandNotSupported) {
    // Some storage engines do not support this command, so we can skip this test.
    return;
}
assert.commandWorked(cmdRes);

assert.eq(testDB.system.profile.find(profileEntryFilter).itcount(),
          1,
          "expected to find profile entry for a repairCursor command");

const getMoreCollName = cmdRes.cursor.ns.substr(cmdRes.cursor.ns.indexOf(".") + 1);
cmdRes = assert.commandWorked(
    testDB.runCommand({getMore: cmdRes.cursor.id, collection: getMoreCollName}));

const getMoreProfileEntry = getLatestProfilerEntry(testDB, {op: "getmore"});
assert.eq(getMoreProfileEntry.originatingCommand.repairCursor, testColl.getName());
})();