mirror of
https://github.com/pewdiepie-archdaemon/odysseus.git
synced 2026-08-12 08:28:40 -04:00
c00ef8f9c2
Slice 2o of the route-domain reorganization (#4082/#4071). Moves mcp_routes.py (697 lines) into routes/mcp/, leaving a backward-compat sys.modules shim. Pure file reorganization, no behavior change. The shim uses sys.modules replacement so sys.modules.pop + re-import, monkeypatch.setattr(mcp_routes, "MCP_OAUTH_DIR", ...), and __file__ introspection in test_security_regressions.py all reach the canonical module. One source-introspection path string repointed (line 1001). Canonical module imports only from core/, src/, and stdlib (zero internal routes/ coupling). Adds tests/test_mcp_routes_shim.py. Verified: compileall clean; full suite 4804 passed, 3 skipped.
20 lines
784 B
Python
20 lines
784 B
Python
"""Regression test for the mcp route shim (slice 2o, #4082/#4071).
|
|
|
|
The backward-compat shim at ``routes/mcp_routes.py`` uses ``sys.modules``
|
|
replacement so the legacy import path and the canonical ``routes.mcp.*``
|
|
path resolve to the *same* module object. This is required because
|
|
``test_security_regressions.py`` does ``sys.modules.pop("routes.mcp_routes")``
|
|
+ re-import, ``monkeypatch.setattr(mcp_routes, "MCP_OAUTH_DIR", ...)``, and
|
|
reads ``mcp_routes.__file__`` for source introspection.
|
|
"""
|
|
|
|
import importlib
|
|
|
|
import routes.mcp_routes as _shim_mcp # noqa: F401
|
|
|
|
|
|
def test_legacy_and_canonical_mcp_module_are_same_object():
|
|
legacy = importlib.import_module("routes.mcp_routes")
|
|
canonical = importlib.import_module("routes.mcp.mcp_routes")
|
|
assert legacy is canonical
|