Files
odysseus/routes/task_routes.py
yuandonghao 1a2d889c33 refactor(routes): move task domain into routes/task/ subpackage
Slice 2p of the route-domain reorganization (#4082/#4071). Moves
task_routes.py (1181 lines) into routes/task/, leaving a backward-compat
sys.modules shim. Pure file reorganization, no behavior change.

The shim uses sys.modules replacement so the `import ... as task_routes` +
`monkeypatch.setattr(task_routes, "SessionLocal", ...)` /
`"get_current_user"` pattern and the `task_routes.__file__` reads in
test_auth_regressions.py all reach the canonical module.

Four source-introspection test sites repointed:
- test_aux_llm_owner_scope.py
- test_model_helper_owner_scope.py
- test_internal_api_base.py
- test_webhook_trigger_auth_exempt.py

Adds tests/test_task_routes_shim.py to pin the sys.modules shim contract.

Verified: compileall clean; full suite 5040 passed, 3 skipped.
2026-08-17 10:07:17 +08:00

19 lines
815 B
Python

"""Backward-compat shim — canonical location is routes/task/task_routes.py.
This module is replaced in ``sys.modules`` by the canonical module object so
that ``import routes.task_routes``, ``from routes.task_routes import X``,
``importlib.import_module("routes.task_routes")``, the
``import ... as task_routes`` + ``monkeypatch.setattr(task_routes,
"SessionLocal", ...)`` / ``"get_current_user"`` pattern used by multiple
tests, and the ``task_routes.__file__`` reads in test_auth_regressions.py
all operate on the *same* object the application actually uses. Keeps
existing import paths working after slice 2p (#4082/#4071).
Source-introspection tests read the canonical file by path.
"""
import sys as _sys
from routes.task import task_routes as _canonical # noqa: F401
_sys.modules[__name__] = _canonical