summaryrefslogtreecommitdiff
path: root/buildscripts/resmokelib/testing/hooks/oplog.py
blob: bb75b1bf5015fe538f6b16e539e73ec0d271aa8f (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
"""
Testing hook for verifying members of a replica set have matching
oplogs.
"""

from __future__ import absolute_import

import os.path

from . import jsfile


class CheckReplOplogs(jsfile.JSHook):
    """
    Checks that local.oplog.rs matches on the primary and secondaries.
    """
    def __init__(self, hook_logger, fixture, shell_options=None):
        description = "Check oplogs of all replica set members"
        js_filename = os.path.join("jstests", "hooks", "run_check_repl_oplogs.js")
        jsfile.JSHook.__init__(self,
                               hook_logger,
                               fixture,
                               js_filename,
                               description,
                               shell_options=shell_options)