67 production .py modules that the running PINK service imports but which were never committed: prod/bingx/ (HTTP client, market/user streams, journal, config), prod/clean_arch/ adapters/persistence/runtime/dita/dita_v2 production modules and their co-located tests. Rule going forward: every module imported by launch_dolphin_pink.py / pink_direct.py must appear in git ls-files. Excludes _backup dirs, __pycache__, and non-code files. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
33 lines
682 B
Python
33 lines
682 B
Python
"""Mock stack and simulator for policy-level testing."""
|
|
|
|
from .fuzzer import FuzzConfig, FuzzReport, fuzz_stack, generate_snapshot_stream
|
|
from .mock_stack import (
|
|
ChaosProfile,
|
|
MockClickHouse,
|
|
MockExchange,
|
|
MockHazelcast,
|
|
MockLogSink,
|
|
MockNetwork,
|
|
MockTradingStack,
|
|
SimulationResult,
|
|
AnomalySensorState,
|
|
NetworkProfile,
|
|
)
|
|
|
|
__all__ = [
|
|
"FuzzConfig",
|
|
"FuzzReport",
|
|
"ChaosProfile",
|
|
"MockClickHouse",
|
|
"MockExchange",
|
|
"MockHazelcast",
|
|
"MockLogSink",
|
|
"MockNetwork",
|
|
"MockTradingStack",
|
|
"SimulationResult",
|
|
"AnomalySensorState",
|
|
"NetworkProfile",
|
|
"fuzz_stack",
|
|
"generate_snapshot_stream",
|
|
]
|