Files
mongo/buildscripts/resmokelib/testing/hooks/routing_table_consistency.py

25 lines
1.1 KiB
Python

"""Test hook for verifying the consistency of sharded collections metadata stored in the config server of a sharded cluster."""
import os.path
from buildscripts.resmokelib.testing.fixtures import shardedcluster
from buildscripts.resmokelib.testing.hooks import jsfile
class CheckRoutingTableConsistency(jsfile.DataConsistencyHook):
"""Verifies the absence of corrupted entries in config.chunks and config.collections."""
IS_BACKGROUND = False
def __init__(self, hook_logger, fixture, shell_options=None):
"""Initialize CheckRoutingTableConsistency."""
if not isinstance(fixture, shardedcluster.ShardedClusterFixture):
raise ValueError(f"'fixture' must be an instance of ShardedClusterFixture, but got"
f" {fixture.__class__.__name__}")
description = "Inspect collection and chunk metadata in config server"
js_filename = os.path.join("jstests", "hooks", "run_check_routing_table_consistency.js")
super().__init__(hook_logger, fixture, js_filename, description,
shell_options=shell_options)