0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-11-24 00:17:37 +01:00
mongodb/jstests/libs/curop_helpers.js
2023-08-06 20:48:04 +00:00

34 lines
1.5 KiB
JavaScript

// Wait until the current operation matches the filter. Returns the resulting array of operations.
export function waitForCurOpByFilter(db, filter, options = {}) {
const adminDB = db.getSiblingDB("admin");
let results = [];
assert.soon(
() => {
results = adminDB.aggregate([{$currentOp: options}, {$match: filter}]).toArray();
return results.length > 0;
},
() => {
let allResults = adminDB.aggregate([{$currentOp: options}]).toArray();
return "Failed to find a matching op for filter: " + tojson(filter) +
"in currentOp output: " + tojson(allResults);
});
return results;
}
// Wait until the current operation reaches the fail point "failPoint" for the given namespace
// "nss". Accepts an optional filter to apply alongside the "failpointMsg". Returns the resulting
// array of operations.
export function waitForCurOpByFailPoint(db, nss, failPoint, filter = {}, options = {}) {
const adjustedFilter = {
$and: [{ns: nss}, filter, {$or: [{failpointMsg: failPoint}, {msg: failPoint}]}]
};
return waitForCurOpByFilter(db, adjustedFilter, options);
}
// Wait until the current operation reaches the fail point "failPoint" with no namespace. Returns
// the resulting array of operations.
export function waitForCurOpByFailPointNoNS(db, failPoint, filter = {}, options = {}) {
const adjustedFilter = {$and: [filter, {$or: [{failpointMsg: failPoint}, {msg: failPoint}]}]};
return waitForCurOpByFilter(db, adjustedFilter, options);
}