refactor: decompose explorer.py into analysis/tabs/ and add scheduler

- Extract 6 tab functions from explorer.py (3097 → 543 lines)
- Create analysis/tabs/_rendering.py with shared plotly helpers
- Move data logic to analysis/explorer_data.py
- Add lazy-import wrappers in explorer.py for backward compat
- Add scheduler.py with PipelineScheduler for daily pipeline runs
- Add test_explorer_decomposition.py (5 tests, all pass)
- Add test_scheduler.py (13 tests, all pass)
- Full test suite: 222 passed, 2 skipped
This commit is contained in:
2026-05-01 01:05:55 +02:00
parent 203ae178ca
commit 3bdb43f162
12 changed files with 3024 additions and 2671 deletions
+95
View File
@@ -0,0 +1,95 @@
"""Tests for explorer.py decomposition (P3-001).
Acceptance criteria:
- explorer.py must be under 1500 lines.
- Tab modules must define their build functions locally (not re-export from explorer).
- No circular imports between explorer.py and analysis.tabs.
"""
import ast
import inspect
import pathlib
class TestExplorerDecomposition:
"""RED test: explorer.py must be under 1500 lines."""
def test_explorer_line_count_under_1500(self):
path = pathlib.Path("explorer.py")
lines = path.read_text(encoding="utf-8").splitlines()
assert len(lines) < 1500, (
f"explorer.py has {len(lines)} lines; target is < 1500. "
f"Extract tab functions and rendering helpers into analysis/tabs/."
)
def test_tab_modules_define_functions_locally(self):
"""Each tab module must define its build_*_tab without delegating to explorer."""
tabs = [
("analysis/tabs/compass.py", "build_compass_tab"),
("analysis/tabs/trajectories.py", "build_trajectories_tab"),
("analysis/tabs/search.py", "build_search_tab"),
("analysis/tabs/browser.py", "build_browser_tab"),
("analysis/tabs/components.py", "build_svd_components_tab"),
("analysis/tabs/quiz.py", "build_mp_quiz_tab"),
]
for module_path, func_name in tabs:
source = pathlib.Path(module_path).read_text(encoding="utf-8")
tree = ast.parse(source)
func_def = None
for node in ast.walk(tree):
if isinstance(node, ast.FunctionDef) and node.name == func_name:
func_def = node
break
assert func_def is not None, (
f"{module_path} must define {func_name}"
)
# Ensure it's not a one-liner stub that imports from explorer
body = func_def.body
assert len(body) > 3, (
f"{module_path}.{func_name} looks like a stub ({len(body)} lines). "
f"Extract the real implementation from explorer.py."
)
def test_rendering_helpers_extracted(self):
"""Rendering helpers should not live in explorer.py."""
helpers = [
"_render_scree_plot",
"_build_party_axis_figure",
"_render_party_axis_chart",
"_render_party_axis_chart_1d",
"_render_svd_time_trajectory",
"_render_voting_results",
"_add_y_direction_annotations",
]
source = pathlib.Path("explorer.py").read_text(encoding="utf-8")
tree = ast.parse(source)
defined = {node.name for node in ast.walk(tree) if isinstance(node, ast.FunctionDef)}
for helper in helpers:
assert helper not in defined, (
f"{helper} should be extracted from explorer.py "
f"into analysis/tabs/_rendering.py"
)
def test_no_circular_import_tabs_to_explorer(self):
"""Tab modules must not import from explorer."""
tab_modules = [
"analysis/tabs/compass.py",
"analysis/tabs/trajectories.py",
"analysis/tabs/search.py",
"analysis/tabs/browser.py",
"analysis/tabs/components.py",
"analysis/tabs/quiz.py",
"analysis/tabs/_rendering.py",
]
for module_path in tab_modules:
if not pathlib.Path(module_path).exists():
continue
source = pathlib.Path(module_path).read_text(encoding="utf-8")
assert "from explorer import" not in source, (
f"{module_path} imports from explorer.py — "
f"move shared helpers to explorer_data.py or _rendering.py instead"
)
assert "import explorer" not in source, (
f"{module_path} imports explorer module — "
f"move shared helpers to explorer_data.py or _rendering.py instead"
)
+159
View File
@@ -0,0 +1,159 @@
"""Tests for scheduler.py — automated pipeline scheduling.
TDD: write failing test, implement, refactor.
"""
from __future__ import annotations
import signal
from unittest.mock import MagicMock, patch
import pytest
class TestPipelineSchedulerInit:
def test_default_db_path(self):
from scheduler import PipelineScheduler
sched = PipelineScheduler()
assert sched.db_path == "data/motions.db"
assert not sched._running
def test_custom_db_path(self):
from scheduler import PipelineScheduler
sched = PipelineScheduler(db_path="/tmp/test.db")
assert sched.db_path == "/tmp/test.db"
class TestPipelineSchedulerRunPipeline:
def test_calls_pipeline_run_with_db_path(self):
from scheduler import PipelineScheduler
sched = PipelineScheduler(db_path="/tmp/test.db")
with patch("scheduler.run_pipeline") as mock_run:
mock_run.return_value = 0
sched.run_pipeline()
mock_run.assert_called_once()
# Verify args contain db_path via Namespace
args = mock_run.call_args[0][0]
assert args.db_path == "/tmp/test.db"
def test_logs_error_on_pipeline_failure(self):
from scheduler import PipelineScheduler
sched = PipelineScheduler()
with patch("scheduler.run_pipeline") as mock_run:
mock_run.side_effect = RuntimeError("pipeline failed")
with patch("scheduler._logger") as mock_logger:
result = sched.run_pipeline()
assert result == 1
mock_logger.exception.assert_called_once()
class TestPipelineSchedulerRunSummarizer:
def test_calls_summarizer_update(self):
from scheduler import PipelineScheduler
sched = PipelineScheduler()
with patch("scheduler.summarizer") as mock_summarizer:
sched.run_summarizer()
mock_summarizer.update_motion_summaries.assert_called_once()
def test_logs_error_on_summarizer_failure(self):
from scheduler import PipelineScheduler
sched = PipelineScheduler()
with patch("scheduler.summarizer") as mock_summarizer:
mock_summarizer.update_motion_summaries.side_effect = RuntimeError(
"summarizer failed"
)
with patch("scheduler._logger") as mock_logger:
sched.run_summarizer()
mock_logger.exception.assert_called_once()
class TestPipelineSchedulerSchedule:
def test_schedule_daily_adds_job(self):
from scheduler import PipelineScheduler
sched = PipelineScheduler()
with patch("scheduler.schedule") as mock_schedule:
mock_job = MagicMock()
mock_schedule.every.return_value.day.at.return_value.do = mock_job
sched.schedule_daily("02:00")
mock_schedule.every.assert_called_once()
def test_schedule_summarizer_adds_job(self):
from scheduler import PipelineScheduler
sched = PipelineScheduler()
with patch("scheduler.schedule") as mock_schedule:
mock_job = MagicMock()
mock_schedule.every.return_value.hour.do = mock_job
sched.schedule_summarizer(every_n_hours=6)
mock_schedule.every.assert_called_once()
class TestPipelineSchedulerLoop:
def test_start_runs_pending_jobs(self):
from scheduler import PipelineScheduler
sched = PipelineScheduler()
call_count = 0
def _stop_after_first(*args, **kwargs):
nonlocal call_count
call_count += 1
if call_count >= 3:
sched.stop()
with patch("scheduler.schedule.run_pending") as mock_run_pending:
with patch("scheduler.time.sleep", side_effect=_stop_after_first):
with patch("scheduler.signal.signal"):
sched.start()
assert mock_run_pending.called
assert not sched._running
def test_stop_sets_running_false(self):
from scheduler import PipelineScheduler
sched = PipelineScheduler()
sched._running = True
sched.stop()
assert not sched._running
def test_signal_handler_stops_scheduler(self):
from scheduler import PipelineScheduler
sched = PipelineScheduler()
sched._running = True
with patch.object(sched, "stop") as mock_stop:
sched._signal_handler(signal.SIGINT, None)
mock_stop.assert_called_once()
class TestSchedulerCLI:
def test_main_parses_args(self):
from scheduler import main
with patch("scheduler.PipelineScheduler") as mock_sched_class:
mock_sched = MagicMock()
mock_sched_class.return_value = mock_sched
rc = main(["--pipeline-time", "03:00"])
assert rc == 0
mock_sched_class.assert_called_once_with(db_path="data/motions.db")
mock_sched.schedule_daily.assert_called_once_with("03:00")
mock_sched.start.assert_called_once()
def test_main_custom_db_path(self):
from scheduler import main
with patch("scheduler.PipelineScheduler") as mock_sched_class:
mock_sched = MagicMock()
mock_sched.run_pipeline.return_value = 0
mock_sched_class.return_value = mock_sched
rc = main(["--db-path", "/tmp/test.db", "--once"])
assert rc == 0
mock_sched_class.assert_called_once_with(db_path="/tmp/test.db")
mock_sched.run_pipeline.assert_called_once()