2026-05-22 22:48:28 +02:00
|
|
|
"""Tests for _alarm.py — WakeAlarm init, dismiss, run, and beep phases (part 2)."""
|
|
|
|
|
|
|
|
|
|
from __future__ import annotations
|
|
|
|
|
|
|
|
|
|
import tkinter as tk
|
|
|
|
|
from typing import TYPE_CHECKING
|
|
|
|
|
from unittest.mock import MagicMock, patch
|
|
|
|
|
|
|
|
|
|
import pytest
|
|
|
|
|
|
|
|
|
|
if TYPE_CHECKING:
|
|
|
|
|
from collections.abc import Generator
|
|
|
|
|
|
2026-06-22 12:31:40 +02:00
|
|
|
from wake_alarm._alarm import (
|
2026-05-22 22:48:28 +02:00
|
|
|
WakeAlarm,
|
|
|
|
|
main,
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
# ---------------------------------------------------------------------------
|
|
|
|
|
# Helpers (duplicated from part 1 so this file is self-contained)
|
|
|
|
|
# ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def _make_mock_tk() -> MagicMock:
|
|
|
|
|
"""Build a MagicMock that stands in for the tkinter module."""
|
|
|
|
|
mock = MagicMock()
|
|
|
|
|
mock_root = MagicMock()
|
|
|
|
|
mock_root.winfo_screenwidth.return_value = 1920
|
|
|
|
|
mock_root.winfo_screenheight.return_value = 1080
|
|
|
|
|
mock.Tk.return_value = mock_root
|
|
|
|
|
mock.Frame.return_value = MagicMock()
|
|
|
|
|
mock.Label.return_value = MagicMock()
|
|
|
|
|
mock.Entry.return_value = MagicMock()
|
|
|
|
|
mock.TclError = tk.TclError
|
|
|
|
|
mock.END = tk.END
|
|
|
|
|
return mock
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.fixture(autouse=True)
|
|
|
|
|
def _block_real_tk() -> Generator[MagicMock]:
|
|
|
|
|
"""Prevent any real Tk windows in tests."""
|
|
|
|
|
mock = _make_mock_tk()
|
2026-06-22 07:33:49 +02:00
|
|
|
with (
|
2026-06-22 12:31:40 +02:00
|
|
|
patch("wake_alarm._alarm.tk", mock),
|
2026-06-22 07:33:49 +02:00
|
|
|
patch(
|
2026-06-22 12:31:40 +02:00
|
|
|
"wake_alarm._alarm.GateRoot",
|
2026-06-22 07:33:49 +02:00
|
|
|
return_value=mock.Tk.return_value,
|
|
|
|
|
),
|
|
|
|
|
):
|
2026-05-22 22:48:28 +02:00
|
|
|
yield mock
|
|
|
|
|
|
|
|
|
|
|
2026-05-23 19:51:26 +02:00
|
|
|
@pytest.fixture(autouse=True)
|
|
|
|
|
def _block_extra_devices() -> Generator[MagicMock]:
|
|
|
|
|
"""Prevent real subprocess.Popen calls for extra ALSA devices."""
|
|
|
|
|
with (
|
2026-06-22 12:31:40 +02:00
|
|
|
patch("wake_alarm._alarm._play_on_extra_devices") as mock,
|
|
|
|
|
patch("wake_alarm._alarm._max_fans", return_value=False),
|
|
|
|
|
patch("wake_alarm._alarm._restore_fans"),
|
|
|
|
|
patch("wake_alarm._alarm._set_max_brightness"),
|
|
|
|
|
patch("wake_alarm._alarm._wake_display"),
|
|
|
|
|
patch("wake_alarm._alarm._restore_display"),
|
|
|
|
|
patch("wake_alarm._alarm._warn_if_no_real_sink"),
|
|
|
|
|
patch("wake_alarm._alarm._activate_alarm_audio", return_value=None),
|
|
|
|
|
patch("wake_alarm._alarm._restore_alarm_audio"),
|
|
|
|
|
patch("wake_alarm._alarm.turn_on_plug"),
|
|
|
|
|
patch("wake_alarm._alarm.turn_off_plug"),
|
2026-05-23 19:51:26 +02:00
|
|
|
):
|
|
|
|
|
yield mock
|
|
|
|
|
|
|
|
|
|
|
2026-05-22 22:48:28 +02:00
|
|
|
@pytest.fixture
|
|
|
|
|
def mock_tk_module() -> Generator[MagicMock]:
|
|
|
|
|
"""Provide explicit access to the mocked tk module."""
|
|
|
|
|
mock = _make_mock_tk()
|
2026-06-22 07:33:49 +02:00
|
|
|
with (
|
2026-06-22 12:31:40 +02:00
|
|
|
patch("wake_alarm._alarm.tk", mock),
|
2026-06-22 07:33:49 +02:00
|
|
|
patch(
|
2026-06-22 12:31:40 +02:00
|
|
|
"wake_alarm._alarm.GateRoot",
|
2026-06-22 07:33:49 +02:00
|
|
|
return_value=mock.Tk.return_value,
|
|
|
|
|
),
|
|
|
|
|
):
|
2026-05-22 22:48:28 +02:00
|
|
|
yield mock
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# ---------------------------------------------------------------------------
|
|
|
|
|
# Tests
|
|
|
|
|
# ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class TestWakeAlarmInit:
|
|
|
|
|
"""Tests for WakeAlarm initialization."""
|
|
|
|
|
|
|
|
|
|
def test_demo_mode_sets_smaller_window(
|
|
|
|
|
self,
|
|
|
|
|
mock_tk_module: MagicMock,
|
|
|
|
|
) -> None:
|
2026-05-24 16:20:34 +02:00
|
|
|
"""Demo mode still hijacks the full screen — only timers differ."""
|
2026-05-22 22:48:28 +02:00
|
|
|
alarm = WakeAlarm(demo_mode=True)
|
|
|
|
|
assert alarm.demo_mode is True
|
|
|
|
|
assert alarm.dismissed is False
|
2026-05-24 16:20:34 +02:00
|
|
|
mock_root = mock_tk_module.Tk.return_value
|
2026-06-22 07:33:49 +02:00
|
|
|
# LockConfig(mode="soft") never sets overrideredirect (X11 focus bug);
|
|
|
|
|
# fullscreen+topmost are what take over the screen now.
|
2026-05-24 16:20:34 +02:00
|
|
|
mock_root.overrideredirect.assert_not_called()
|
|
|
|
|
fs_calls = [
|
|
|
|
|
c
|
|
|
|
|
for c in mock_root.attributes.call_args_list
|
2026-06-22 07:33:49 +02:00
|
|
|
if c.kwargs.get("fullscreen") is True
|
2026-05-24 16:20:34 +02:00
|
|
|
]
|
2026-06-22 07:33:49 +02:00
|
|
|
assert fs_calls, "fullscreen attribute must be set"
|
2026-05-22 22:48:28 +02:00
|
|
|
alarm._stop_beep.set() # Stop beep thread
|
|
|
|
|
|
|
|
|
|
def test_production_mode_fullscreen(
|
|
|
|
|
self,
|
|
|
|
|
mock_tk_module: MagicMock,
|
|
|
|
|
) -> None:
|
|
|
|
|
"""Production mode activates fullscreen."""
|
|
|
|
|
alarm = WakeAlarm(demo_mode=False)
|
|
|
|
|
assert alarm.demo_mode is False
|
|
|
|
|
mock_root = mock_tk_module.Tk.return_value
|
2026-05-24 16:20:34 +02:00
|
|
|
mock_root.overrideredirect.assert_not_called()
|
|
|
|
|
fs_calls = [
|
|
|
|
|
c
|
|
|
|
|
for c in mock_root.attributes.call_args_list
|
2026-06-22 07:33:49 +02:00
|
|
|
if c.kwargs.get("fullscreen") is True
|
2026-05-24 16:20:34 +02:00
|
|
|
]
|
2026-06-22 07:33:49 +02:00
|
|
|
assert fs_calls, "fullscreen attribute must be set"
|
2026-05-22 22:48:28 +02:00
|
|
|
alarm._stop_beep.set()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class TestWakeAlarmDismiss:
|
|
|
|
|
"""Tests for alarm dismiss logic."""
|
|
|
|
|
|
2026-05-30 22:13:32 +02:00
|
|
|
def test_correct_code_dismisses_after_all_rounds(
|
2026-05-22 22:48:28 +02:00
|
|
|
self,
|
|
|
|
|
mock_tk_module: MagicMock,
|
|
|
|
|
) -> None:
|
2026-05-30 22:13:32 +02:00
|
|
|
"""Entering the correct answer for every required round dismisses the alarm."""
|
2026-06-22 12:31:40 +02:00
|
|
|
from wake_alarm._constants import DISMISS_ROUNDS_REQUIRED
|
2026-05-30 22:13:32 +02:00
|
|
|
|
2026-05-22 22:48:28 +02:00
|
|
|
alarm = WakeAlarm(demo_mode=True)
|
|
|
|
|
mock_entry = mock_tk_module.Entry.return_value
|
|
|
|
|
|
|
|
|
|
with patch(
|
2026-06-22 12:31:40 +02:00
|
|
|
"wake_alarm._alarm.save_wake_state",
|
2026-05-22 22:48:28 +02:00
|
|
|
) as mock_save:
|
2026-05-30 22:13:32 +02:00
|
|
|
for _ in range(DISMISS_ROUNDS_REQUIRED):
|
feat: split oversized modules for 500-line limit, fix kasa coverage gap
Split diet_guard/_gatelock.py, wake_alarm/_alarm.py, and the
usage_report.py/_usage_report_parsing.py pair into focused
sub-modules so every Python file is <= 500 lines, satisfying
test_file_length.py. Install python-kasa into .venv (declared in
requirements but missing after the 3.13->3.14 venv upgrade),
fixing 8 failing smart_plug tests and restoring 100% coverage.
Also includes prior in-progress work from the working tree: the
wake_alarm Progress/View/Hardware field-grouping refactor,
brother_printer query module + tests, diet_guard foodbank/state/cli
updates, new shared coerce/logging_setup helpers, morning_routine
orchestrator tweaks, dwm window-manager config, gaming scripts, and
misc maintenance/digital-wellbeing script updates.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-06-14 07:19:37 +02:00
|
|
|
mock_entry.get.return_value = alarm._progress.current_challenge.answer
|
2026-05-30 22:13:32 +02:00
|
|
|
alarm._on_submit()
|
2026-05-22 22:48:28 +02:00
|
|
|
|
|
|
|
|
assert alarm.dismissed is True
|
|
|
|
|
mock_save.assert_called_once()
|
2026-05-30 22:13:32 +02:00
|
|
|
assert mock_save.call_args[1]["skip_workout"] is True
|
|
|
|
|
alarm._stop_beep.set()
|
|
|
|
|
|
|
|
|
|
def test_first_round_correct_does_not_dismiss(
|
|
|
|
|
self,
|
|
|
|
|
mock_tk_module: MagicMock,
|
|
|
|
|
) -> None:
|
|
|
|
|
"""A single correct entry is not enough — DISMISS_ROUNDS_REQUIRED is 2+."""
|
|
|
|
|
alarm = WakeAlarm(demo_mode=True)
|
|
|
|
|
mock_entry = mock_tk_module.Entry.return_value
|
feat: split oversized modules for 500-line limit, fix kasa coverage gap
Split diet_guard/_gatelock.py, wake_alarm/_alarm.py, and the
usage_report.py/_usage_report_parsing.py pair into focused
sub-modules so every Python file is <= 500 lines, satisfying
test_file_length.py. Install python-kasa into .venv (declared in
requirements but missing after the 3.13->3.14 venv upgrade),
fixing 8 failing smart_plug tests and restoring 100% coverage.
Also includes prior in-progress work from the working tree: the
wake_alarm Progress/View/Hardware field-grouping refactor,
brother_printer query module + tests, diet_guard foodbank/state/cli
updates, new shared coerce/logging_setup helpers, morning_routine
orchestrator tweaks, dwm window-manager config, gaming scripts, and
misc maintenance/digital-wellbeing script updates.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-06-14 07:19:37 +02:00
|
|
|
mock_entry.get.return_value = alarm._progress.current_challenge.answer
|
2026-05-30 22:13:32 +02:00
|
|
|
|
|
|
|
|
alarm._on_submit()
|
|
|
|
|
|
|
|
|
|
assert alarm.dismissed is False
|
feat: split oversized modules for 500-line limit, fix kasa coverage gap
Split diet_guard/_gatelock.py, wake_alarm/_alarm.py, and the
usage_report.py/_usage_report_parsing.py pair into focused
sub-modules so every Python file is <= 500 lines, satisfying
test_file_length.py. Install python-kasa into .venv (declared in
requirements but missing after the 3.13->3.14 venv upgrade),
fixing 8 failing smart_plug tests and restoring 100% coverage.
Also includes prior in-progress work from the working tree: the
wake_alarm Progress/View/Hardware field-grouping refactor,
brother_printer query module + tests, diet_guard foodbank/state/cli
updates, new shared coerce/logging_setup helpers, morning_routine
orchestrator tweaks, dwm window-manager config, gaming scripts, and
misc maintenance/digital-wellbeing script updates.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-06-14 07:19:37 +02:00
|
|
|
assert alarm._progress.rounds_completed == 1
|
2026-05-30 22:13:32 +02:00
|
|
|
alarm._stop_beep.set()
|
|
|
|
|
|
|
|
|
|
def test_first_round_correct_non_flash_next_no_countdown(
|
|
|
|
|
self,
|
|
|
|
|
mock_tk_module: MagicMock,
|
|
|
|
|
) -> None:
|
|
|
|
|
"""When next challenge is math, no flash countdown is started."""
|
2026-06-22 12:31:40 +02:00
|
|
|
from wake_alarm._challenges import _Challenge
|
2026-05-30 22:13:32 +02:00
|
|
|
|
|
|
|
|
alarm = WakeAlarm(demo_mode=True)
|
|
|
|
|
mock_entry = mock_tk_module.Entry.return_value
|
feat: split oversized modules for 500-line limit, fix kasa coverage gap
Split diet_guard/_gatelock.py, wake_alarm/_alarm.py, and the
usage_report.py/_usage_report_parsing.py pair into focused
sub-modules so every Python file is <= 500 lines, satisfying
test_file_length.py. Install python-kasa into .venv (declared in
requirements but missing after the 3.13->3.14 venv upgrade),
fixing 8 failing smart_plug tests and restoring 100% coverage.
Also includes prior in-progress work from the working tree: the
wake_alarm Progress/View/Hardware field-grouping refactor,
brother_printer query module + tests, diet_guard foodbank/state/cli
updates, new shared coerce/logging_setup helpers, morning_routine
orchestrator tweaks, dwm window-manager config, gaming scripts, and
misc maintenance/digital-wellbeing script updates.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-06-14 07:19:37 +02:00
|
|
|
mock_entry.get.return_value = alarm._progress.current_challenge.answer
|
2026-05-30 22:13:32 +02:00
|
|
|
next_math = _Challenge(kind="math", display="2 + 2 = ?", answer="4", hint="x")
|
2026-06-22 12:31:40 +02:00
|
|
|
with patch("wake_alarm._alarm._make_challenge", return_value=next_math):
|
2026-05-30 22:13:32 +02:00
|
|
|
alarm._on_submit()
|
|
|
|
|
|
feat: split oversized modules for 500-line limit, fix kasa coverage gap
Split diet_guard/_gatelock.py, wake_alarm/_alarm.py, and the
usage_report.py/_usage_report_parsing.py pair into focused
sub-modules so every Python file is <= 500 lines, satisfying
test_file_length.py. Install python-kasa into .venv (declared in
requirements but missing after the 3.13->3.14 venv upgrade),
fixing 8 failing smart_plug tests and restoring 100% coverage.
Also includes prior in-progress work from the working tree: the
wake_alarm Progress/View/Hardware field-grouping refactor,
brother_printer query module + tests, diet_guard foodbank/state/cli
updates, new shared coerce/logging_setup helpers, morning_routine
orchestrator tweaks, dwm window-manager config, gaming scripts, and
misc maintenance/digital-wellbeing script updates.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-06-14 07:19:37 +02:00
|
|
|
assert alarm._progress.current_challenge.kind == "math"
|
2026-05-30 22:13:32 +02:00
|
|
|
assert alarm.dismissed is False
|
2026-05-22 22:48:28 +02:00
|
|
|
alarm._stop_beep.set()
|
|
|
|
|
|
|
|
|
|
def test_wrong_code_does_not_dismiss(
|
|
|
|
|
self,
|
|
|
|
|
mock_tk_module: MagicMock,
|
|
|
|
|
) -> None:
|
2026-05-30 22:13:32 +02:00
|
|
|
"""Entering the wrong answer shows an error without dismissing."""
|
2026-06-22 12:31:40 +02:00
|
|
|
from wake_alarm._alarm import _Challenge
|
2026-05-30 22:13:32 +02:00
|
|
|
|
2026-05-22 22:48:28 +02:00
|
|
|
alarm = WakeAlarm(demo_mode=True)
|
2026-05-30 22:13:32 +02:00
|
|
|
# Use a pinned math challenge so the non-flash wrong-answer branch is covered.
|
feat: split oversized modules for 500-line limit, fix kasa coverage gap
Split diet_guard/_gatelock.py, wake_alarm/_alarm.py, and the
usage_report.py/_usage_report_parsing.py pair into focused
sub-modules so every Python file is <= 500 lines, satisfying
test_file_length.py. Install python-kasa into .venv (declared in
requirements but missing after the 3.13->3.14 venv upgrade),
fixing 8 failing smart_plug tests and restoring 100% coverage.
Also includes prior in-progress work from the working tree: the
wake_alarm Progress/View/Hardware field-grouping refactor,
brother_printer query module + tests, diet_guard foodbank/state/cli
updates, new shared coerce/logging_setup helpers, morning_routine
orchestrator tweaks, dwm window-manager config, gaming scripts, and
misc maintenance/digital-wellbeing script updates.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-06-14 07:19:37 +02:00
|
|
|
alarm._progress.current_challenge = _Challenge(
|
2026-05-30 22:13:32 +02:00
|
|
|
kind="math", display="2 + 2 = ?", answer="4", hint="test"
|
|
|
|
|
)
|
2026-05-22 22:48:28 +02:00
|
|
|
mock_entry = mock_tk_module.Entry.return_value
|
2026-05-30 22:13:32 +02:00
|
|
|
mock_entry.get.return_value = "99"
|
2026-05-22 22:48:28 +02:00
|
|
|
|
|
|
|
|
alarm._on_submit()
|
|
|
|
|
|
|
|
|
|
assert alarm.dismissed is False
|
|
|
|
|
alarm._stop_beep.set()
|
|
|
|
|
|
2026-05-25 18:55:27 +02:00
|
|
|
def test_skip_window_expired_keeps_alarm_running(
|
2026-05-22 22:48:28 +02:00
|
|
|
self,
|
|
|
|
|
mock_tk_module: MagicMock,
|
|
|
|
|
) -> None:
|
2026-05-25 18:55:27 +02:00
|
|
|
"""Skip-window expiry denies the skip but does NOT stop the alarm."""
|
|
|
|
|
del mock_tk_module
|
2026-05-22 22:48:28 +02:00
|
|
|
alarm = WakeAlarm(demo_mode=True)
|
|
|
|
|
|
|
|
|
|
with patch(
|
2026-06-22 12:31:40 +02:00
|
|
|
"wake_alarm._alarm.save_wake_state",
|
2026-05-22 22:48:28 +02:00
|
|
|
) as mock_save:
|
2026-05-25 18:55:27 +02:00
|
|
|
alarm._on_skip_window_expired()
|
2026-05-22 22:48:28 +02:00
|
|
|
|
2026-05-25 18:55:27 +02:00
|
|
|
# Alarm stays active and audible; only the skip reward is gone.
|
feat: split oversized modules for 500-line limit, fix kasa coverage gap
Split diet_guard/_gatelock.py, wake_alarm/_alarm.py, and the
usage_report.py/_usage_report_parsing.py pair into focused
sub-modules so every Python file is <= 500 lines, satisfying
test_file_length.py. Install python-kasa into .venv (declared in
requirements but missing after the 3.13->3.14 venv upgrade),
fixing 8 failing smart_plug tests and restoring 100% coverage.
Also includes prior in-progress work from the working tree: the
wake_alarm Progress/View/Hardware field-grouping refactor,
brother_printer query module + tests, diet_guard foodbank/state/cli
updates, new shared coerce/logging_setup helpers, morning_routine
orchestrator tweaks, dwm window-manager config, gaming scripts, and
misc maintenance/digital-wellbeing script updates.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-06-14 07:19:37 +02:00
|
|
|
assert alarm._progress.skip_earnable is False
|
2026-05-25 18:55:27 +02:00
|
|
|
assert alarm._active is True
|
2026-05-22 22:48:28 +02:00
|
|
|
assert alarm.dismissed is False
|
2026-05-25 18:55:27 +02:00
|
|
|
assert not alarm._stop_beep.is_set()
|
|
|
|
|
mock_save.assert_not_called()
|
feat: split oversized modules for 500-line limit, fix kasa coverage gap
Split diet_guard/_gatelock.py, wake_alarm/_alarm.py, and the
usage_report.py/_usage_report_parsing.py pair into focused
sub-modules so every Python file is <= 500 lines, satisfying
test_file_length.py. Install python-kasa into .venv (declared in
requirements but missing after the 3.13->3.14 venv upgrade),
fixing 8 failing smart_plug tests and restoring 100% coverage.
Also includes prior in-progress work from the working tree: the
wake_alarm Progress/View/Hardware field-grouping refactor,
brother_printer query module + tests, diet_guard foodbank/state/cli
updates, new shared coerce/logging_setup helpers, morning_routine
orchestrator tweaks, dwm window-manager config, gaming scripts, and
misc maintenance/digital-wellbeing script updates.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-06-14 07:19:37 +02:00
|
|
|
alarm._view.info_label.configure.assert_called()
|
2026-05-22 22:48:28 +02:00
|
|
|
alarm._stop_beep.set()
|
|
|
|
|
|
2026-05-25 18:55:27 +02:00
|
|
|
def test_skip_window_expired_noop_if_not_active(
|
2026-05-22 22:48:28 +02:00
|
|
|
self,
|
|
|
|
|
mock_tk_module: MagicMock,
|
|
|
|
|
) -> None:
|
|
|
|
|
"""Expiry is a no-op if alarm is no longer active."""
|
2026-05-25 18:55:27 +02:00
|
|
|
del mock_tk_module
|
2026-05-22 22:48:28 +02:00
|
|
|
alarm = WakeAlarm(demo_mode=True)
|
|
|
|
|
alarm._active = False
|
|
|
|
|
|
2026-05-25 18:55:27 +02:00
|
|
|
alarm._on_skip_window_expired()
|
|
|
|
|
|
|
|
|
|
# skip_earnable stays at its initial True (method returned early).
|
feat: split oversized modules for 500-line limit, fix kasa coverage gap
Split diet_guard/_gatelock.py, wake_alarm/_alarm.py, and the
usage_report.py/_usage_report_parsing.py pair into focused
sub-modules so every Python file is <= 500 lines, satisfying
test_file_length.py. Install python-kasa into .venv (declared in
requirements but missing after the 3.13->3.14 venv upgrade),
fixing 8 failing smart_plug tests and restoring 100% coverage.
Also includes prior in-progress work from the working tree: the
wake_alarm Progress/View/Hardware field-grouping refactor,
brother_printer query module + tests, diet_guard foodbank/state/cli
updates, new shared coerce/logging_setup helpers, morning_routine
orchestrator tweaks, dwm window-manager config, gaming scripts, and
misc maintenance/digital-wellbeing script updates.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-06-14 07:19:37 +02:00
|
|
|
assert alarm._progress.skip_earnable is True
|
2026-05-25 18:55:27 +02:00
|
|
|
alarm._stop_beep.set()
|
|
|
|
|
|
|
|
|
|
def test_dismiss_after_skip_window_earns_no_skip(
|
|
|
|
|
self,
|
|
|
|
|
mock_tk_module: MagicMock,
|
|
|
|
|
) -> None:
|
2026-05-30 22:13:32 +02:00
|
|
|
"""Typing all rounds after the skip window stops the alarm without a skip."""
|
2026-06-22 12:31:40 +02:00
|
|
|
from wake_alarm._constants import DISMISS_ROUNDS_REQUIRED
|
2026-05-30 22:13:32 +02:00
|
|
|
|
2026-05-25 18:55:27 +02:00
|
|
|
alarm = WakeAlarm(demo_mode=True)
|
feat: split oversized modules for 500-line limit, fix kasa coverage gap
Split diet_guard/_gatelock.py, wake_alarm/_alarm.py, and the
usage_report.py/_usage_report_parsing.py pair into focused
sub-modules so every Python file is <= 500 lines, satisfying
test_file_length.py. Install python-kasa into .venv (declared in
requirements but missing after the 3.13->3.14 venv upgrade),
fixing 8 failing smart_plug tests and restoring 100% coverage.
Also includes prior in-progress work from the working tree: the
wake_alarm Progress/View/Hardware field-grouping refactor,
brother_printer query module + tests, diet_guard foodbank/state/cli
updates, new shared coerce/logging_setup helpers, morning_routine
orchestrator tweaks, dwm window-manager config, gaming scripts, and
misc maintenance/digital-wellbeing script updates.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-06-14 07:19:37 +02:00
|
|
|
alarm._progress.skip_earnable = False
|
2026-05-25 18:55:27 +02:00
|
|
|
mock_entry = mock_tk_module.Entry.return_value
|
|
|
|
|
|
2026-05-22 22:48:28 +02:00
|
|
|
with patch(
|
2026-06-22 12:31:40 +02:00
|
|
|
"wake_alarm._alarm.save_wake_state",
|
2026-05-22 22:48:28 +02:00
|
|
|
) as mock_save:
|
2026-05-30 22:13:32 +02:00
|
|
|
for _ in range(DISMISS_ROUNDS_REQUIRED):
|
feat: split oversized modules for 500-line limit, fix kasa coverage gap
Split diet_guard/_gatelock.py, wake_alarm/_alarm.py, and the
usage_report.py/_usage_report_parsing.py pair into focused
sub-modules so every Python file is <= 500 lines, satisfying
test_file_length.py. Install python-kasa into .venv (declared in
requirements but missing after the 3.13->3.14 venv upgrade),
fixing 8 failing smart_plug tests and restoring 100% coverage.
Also includes prior in-progress work from the working tree: the
wake_alarm Progress/View/Hardware field-grouping refactor,
brother_printer query module + tests, diet_guard foodbank/state/cli
updates, new shared coerce/logging_setup helpers, morning_routine
orchestrator tweaks, dwm window-manager config, gaming scripts, and
misc maintenance/digital-wellbeing script updates.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-06-14 07:19:37 +02:00
|
|
|
mock_entry.get.return_value = alarm._progress.current_challenge.answer
|
2026-05-30 22:13:32 +02:00
|
|
|
alarm._on_submit()
|
2026-05-22 22:48:28 +02:00
|
|
|
|
2026-05-25 18:55:27 +02:00
|
|
|
assert alarm.dismissed is True
|
|
|
|
|
assert mock_save.call_args[1]["skip_workout"] is False
|
2026-05-22 22:48:28 +02:00
|
|
|
alarm._stop_beep.set()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class TestMain:
|
|
|
|
|
"""Tests for the main() entry point."""
|
|
|
|
|
|
|
|
|
|
def test_exits_when_not_alarm_day(self) -> None:
|
|
|
|
|
"""main() returns early when not an alarm day."""
|
2026-05-24 16:20:34 +02:00
|
|
|
with (
|
|
|
|
|
patch(
|
2026-06-22 12:31:40 +02:00
|
|
|
"wake_alarm._alarm._should_run_alarm",
|
2026-05-24 16:20:34 +02:00
|
|
|
return_value=False,
|
|
|
|
|
),
|
2026-06-22 12:31:40 +02:00
|
|
|
patch("wake_alarm._alarm.sys") as mock_sys,
|
2026-05-22 22:48:28 +02:00
|
|
|
):
|
2026-05-24 16:20:34 +02:00
|
|
|
mock_sys.argv = ["alarm"]
|
2026-05-22 22:48:28 +02:00
|
|
|
main() # Should just return without error
|
|
|
|
|
|
|
|
|
|
def test_creates_alarm_when_should_run(
|
|
|
|
|
self,
|
|
|
|
|
mock_tk_module: MagicMock,
|
|
|
|
|
) -> None:
|
|
|
|
|
"""main() creates a WakeAlarm when conditions are met."""
|
2026-05-24 16:20:34 +02:00
|
|
|
del mock_tk_module
|
2026-05-22 22:48:28 +02:00
|
|
|
with (
|
|
|
|
|
patch(
|
2026-06-22 12:31:40 +02:00
|
|
|
"wake_alarm._alarm._should_run_alarm",
|
2026-05-22 22:48:28 +02:00
|
|
|
return_value=True,
|
|
|
|
|
),
|
|
|
|
|
patch(
|
2026-06-22 12:31:40 +02:00
|
|
|
"wake_alarm._alarm.sys",
|
2026-05-22 22:48:28 +02:00
|
|
|
) as mock_sys,
|
|
|
|
|
patch.object(WakeAlarm, "run") as mock_run,
|
|
|
|
|
patch.object(WakeAlarm, "__init__", return_value=None),
|
|
|
|
|
):
|
2026-05-24 16:20:34 +02:00
|
|
|
mock_sys.argv = ["alarm"]
|
|
|
|
|
main()
|
|
|
|
|
mock_run.assert_called_once()
|
|
|
|
|
|
|
|
|
|
def test_trigger_now_bypasses_gate(
|
|
|
|
|
self,
|
|
|
|
|
mock_tk_module: MagicMock,
|
|
|
|
|
) -> None:
|
|
|
|
|
"""--trigger-now bypasses _should_run_alarm."""
|
|
|
|
|
del mock_tk_module
|
|
|
|
|
with (
|
|
|
|
|
patch(
|
2026-06-22 12:31:40 +02:00
|
|
|
"wake_alarm._alarm._should_run_alarm",
|
2026-05-24 16:20:34 +02:00
|
|
|
return_value=False,
|
|
|
|
|
) as mock_gate,
|
2026-06-22 12:31:40 +02:00
|
|
|
patch("wake_alarm._alarm.sys") as mock_sys,
|
2026-05-24 16:20:34 +02:00
|
|
|
patch.object(WakeAlarm, "run") as mock_run,
|
|
|
|
|
patch.object(WakeAlarm, "__init__", return_value=None),
|
|
|
|
|
):
|
|
|
|
|
mock_sys.argv = ["alarm", "--trigger-now"]
|
2026-05-22 22:48:28 +02:00
|
|
|
main()
|
2026-05-24 16:20:34 +02:00
|
|
|
mock_gate.assert_not_called()
|
2026-05-22 22:48:28 +02:00
|
|
|
mock_run.assert_called_once()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class TestCodeRefreshAndTimer:
|
|
|
|
|
"""Tests for code refresh and timer update methods."""
|
|
|
|
|
|
2026-05-30 22:13:32 +02:00
|
|
|
def test_code_refresh_changes_challenge(
|
2026-05-22 22:48:28 +02:00
|
|
|
self,
|
|
|
|
|
mock_tk_module: MagicMock,
|
|
|
|
|
) -> None:
|
2026-05-30 22:13:32 +02:00
|
|
|
"""Code refresh generates a new challenge each call."""
|
2026-05-22 22:48:28 +02:00
|
|
|
alarm = WakeAlarm(demo_mode=True)
|
2026-05-30 22:13:32 +02:00
|
|
|
displays = set()
|
2026-05-22 22:48:28 +02:00
|
|
|
for _ in range(50):
|
|
|
|
|
alarm._schedule_code_refresh()
|
feat: split oversized modules for 500-line limit, fix kasa coverage gap
Split diet_guard/_gatelock.py, wake_alarm/_alarm.py, and the
usage_report.py/_usage_report_parsing.py pair into focused
sub-modules so every Python file is <= 500 lines, satisfying
test_file_length.py. Install python-kasa into .venv (declared in
requirements but missing after the 3.13->3.14 venv upgrade),
fixing 8 failing smart_plug tests and restoring 100% coverage.
Also includes prior in-progress work from the working tree: the
wake_alarm Progress/View/Hardware field-grouping refactor,
brother_printer query module + tests, diet_guard foodbank/state/cli
updates, new shared coerce/logging_setup helpers, morning_routine
orchestrator tweaks, dwm window-manager config, gaming scripts, and
misc maintenance/digital-wellbeing script updates.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-06-14 07:19:37 +02:00
|
|
|
displays.add(alarm._progress.current_challenge.display)
|
2026-05-30 22:13:32 +02:00
|
|
|
assert len(displays) > 1
|
2026-05-22 22:48:28 +02:00
|
|
|
alarm._stop_beep.set()
|
|
|
|
|
|
|
|
|
|
def test_code_refresh_noop_when_not_active(
|
|
|
|
|
self,
|
|
|
|
|
mock_tk_module: MagicMock,
|
|
|
|
|
) -> None:
|
|
|
|
|
"""Code refresh is a no-op when alarm is no longer active."""
|
|
|
|
|
alarm = WakeAlarm(demo_mode=True)
|
|
|
|
|
alarm._active = False
|
feat: split oversized modules for 500-line limit, fix kasa coverage gap
Split diet_guard/_gatelock.py, wake_alarm/_alarm.py, and the
usage_report.py/_usage_report_parsing.py pair into focused
sub-modules so every Python file is <= 500 lines, satisfying
test_file_length.py. Install python-kasa into .venv (declared in
requirements but missing after the 3.13->3.14 venv upgrade),
fixing 8 failing smart_plug tests and restoring 100% coverage.
Also includes prior in-progress work from the working tree: the
wake_alarm Progress/View/Hardware field-grouping refactor,
brother_printer query module + tests, diet_guard foodbank/state/cli
updates, new shared coerce/logging_setup helpers, morning_routine
orchestrator tweaks, dwm window-manager config, gaming scripts, and
misc maintenance/digital-wellbeing script updates.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-06-14 07:19:37 +02:00
|
|
|
old_challenge = alarm._progress.current_challenge
|
2026-05-22 22:48:28 +02:00
|
|
|
alarm._schedule_code_refresh()
|
feat: split oversized modules for 500-line limit, fix kasa coverage gap
Split diet_guard/_gatelock.py, wake_alarm/_alarm.py, and the
usage_report.py/_usage_report_parsing.py pair into focused
sub-modules so every Python file is <= 500 lines, satisfying
test_file_length.py. Install python-kasa into .venv (declared in
requirements but missing after the 3.13->3.14 venv upgrade),
fixing 8 failing smart_plug tests and restoring 100% coverage.
Also includes prior in-progress work from the working tree: the
wake_alarm Progress/View/Hardware field-grouping refactor,
brother_printer query module + tests, diet_guard foodbank/state/cli
updates, new shared coerce/logging_setup helpers, morning_routine
orchestrator tweaks, dwm window-manager config, gaming scripts, and
misc maintenance/digital-wellbeing script updates.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-06-14 07:19:37 +02:00
|
|
|
assert alarm._progress.current_challenge is old_challenge
|
2026-05-22 22:48:28 +02:00
|
|
|
alarm._stop_beep.set()
|
|
|
|
|
|
2026-05-23 19:51:26 +02:00
|
|
|
def test_update_timer_noop_when_not_active(
|
2026-05-22 22:48:28 +02:00
|
|
|
self,
|
|
|
|
|
mock_tk_module: MagicMock,
|
|
|
|
|
) -> None:
|
2026-05-23 19:51:26 +02:00
|
|
|
"""Timer update is a no-op when alarm is inactive."""
|
2026-05-22 22:48:28 +02:00
|
|
|
alarm = WakeAlarm(demo_mode=True)
|
2026-05-23 19:51:26 +02:00
|
|
|
alarm._active = False
|
2026-05-22 22:48:28 +02:00
|
|
|
alarm._update_timer() # Should not raise
|
|
|
|
|
alarm._stop_beep.set()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class TestBeepLoop:
|
|
|
|
|
"""Tests for the beep loop thread."""
|
|
|
|
|
|
|
|
|
|
def test_beep_loop_stops_on_event(
|
|
|
|
|
self,
|
|
|
|
|
mock_tk_module: MagicMock,
|
|
|
|
|
) -> None:
|
|
|
|
|
"""Beep loop exits when stop event is set."""
|
|
|
|
|
alarm = WakeAlarm(demo_mode=True)
|
|
|
|
|
alarm._stop_beep.set()
|
|
|
|
|
# Loop should exit immediately
|
|
|
|
|
with patch(
|
2026-06-22 12:31:40 +02:00
|
|
|
"wake_alarm._alarm._beep_soft",
|
2026-05-22 22:48:28 +02:00
|
|
|
):
|
|
|
|
|
alarm._beep_loop()
|
|
|
|
|
alarm._stop_beep.set()
|
|
|
|
|
|
|
|
|
|
|
2026-05-23 19:51:26 +02:00
|
|
|
class TestScreenFlash:
|
|
|
|
|
"""Tests for _start_screen_flash and _flash_step."""
|
|
|
|
|
|
|
|
|
|
def test_flash_step_shows_dark_on_flash_off(
|
|
|
|
|
self,
|
|
|
|
|
mock_tk_module: MagicMock,
|
|
|
|
|
) -> None:
|
|
|
|
|
"""When _flash_on=False, the background is set to dark colour."""
|
|
|
|
|
alarm = WakeAlarm(demo_mode=True)
|
|
|
|
|
mock_root = mock_tk_module.Tk.return_value
|
|
|
|
|
mock_root.configure.reset_mock()
|
|
|
|
|
mock_root.after.reset_mock()
|
|
|
|
|
|
feat: split oversized modules for 500-line limit, fix kasa coverage gap
Split diet_guard/_gatelock.py, wake_alarm/_alarm.py, and the
usage_report.py/_usage_report_parsing.py pair into focused
sub-modules so every Python file is <= 500 lines, satisfying
test_file_length.py. Install python-kasa into .venv (declared in
requirements but missing after the 3.13->3.14 venv upgrade),
fixing 8 failing smart_plug tests and restoring 100% coverage.
Also includes prior in-progress work from the working tree: the
wake_alarm Progress/View/Hardware field-grouping refactor,
brother_printer query module + tests, diet_guard foodbank/state/cli
updates, new shared coerce/logging_setup helpers, morning_routine
orchestrator tweaks, dwm window-manager config, gaming scripts, and
misc maintenance/digital-wellbeing script updates.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-06-14 07:19:37 +02:00
|
|
|
alarm._progress.flash_on = False
|
2026-05-23 19:51:26 +02:00
|
|
|
alarm._flash_step()
|
|
|
|
|
|
|
|
|
|
mock_root.configure.assert_called_once_with(bg="#1a1a1a")
|
feat: split oversized modules for 500-line limit, fix kasa coverage gap
Split diet_guard/_gatelock.py, wake_alarm/_alarm.py, and the
usage_report.py/_usage_report_parsing.py pair into focused
sub-modules so every Python file is <= 500 lines, satisfying
test_file_length.py. Install python-kasa into .venv (declared in
requirements but missing after the 3.13->3.14 venv upgrade),
fixing 8 failing smart_plug tests and restoring 100% coverage.
Also includes prior in-progress work from the working tree: the
wake_alarm Progress/View/Hardware field-grouping refactor,
brother_printer query module + tests, diet_guard foodbank/state/cli
updates, new shared coerce/logging_setup helpers, morning_routine
orchestrator tweaks, dwm window-manager config, gaming scripts, and
misc maintenance/digital-wellbeing script updates.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-06-14 07:19:37 +02:00
|
|
|
assert alarm._progress.flash_on is True
|
2026-05-23 19:51:26 +02:00
|
|
|
mock_root.after.assert_called_with(750, alarm._flash_step)
|
|
|
|
|
alarm._stop_beep.set()
|
|
|
|
|
|
|
|
|
|
def test_flash_step_shows_red_on_flash_on(
|
|
|
|
|
self,
|
|
|
|
|
mock_tk_module: MagicMock,
|
|
|
|
|
) -> None:
|
|
|
|
|
"""When _flash_on=True, the background is set to red."""
|
|
|
|
|
alarm = WakeAlarm(demo_mode=True)
|
|
|
|
|
mock_root = mock_tk_module.Tk.return_value
|
|
|
|
|
mock_root.configure.reset_mock()
|
|
|
|
|
mock_root.after.reset_mock()
|
|
|
|
|
|
feat: split oversized modules for 500-line limit, fix kasa coverage gap
Split diet_guard/_gatelock.py, wake_alarm/_alarm.py, and the
usage_report.py/_usage_report_parsing.py pair into focused
sub-modules so every Python file is <= 500 lines, satisfying
test_file_length.py. Install python-kasa into .venv (declared in
requirements but missing after the 3.13->3.14 venv upgrade),
fixing 8 failing smart_plug tests and restoring 100% coverage.
Also includes prior in-progress work from the working tree: the
wake_alarm Progress/View/Hardware field-grouping refactor,
brother_printer query module + tests, diet_guard foodbank/state/cli
updates, new shared coerce/logging_setup helpers, morning_routine
orchestrator tweaks, dwm window-manager config, gaming scripts, and
misc maintenance/digital-wellbeing script updates.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-06-14 07:19:37 +02:00
|
|
|
alarm._progress.flash_on = True
|
2026-05-23 19:51:26 +02:00
|
|
|
alarm._flash_step()
|
|
|
|
|
|
|
|
|
|
mock_root.configure.assert_called_once_with(bg="#ff0000")
|
feat: split oversized modules for 500-line limit, fix kasa coverage gap
Split diet_guard/_gatelock.py, wake_alarm/_alarm.py, and the
usage_report.py/_usage_report_parsing.py pair into focused
sub-modules so every Python file is <= 500 lines, satisfying
test_file_length.py. Install python-kasa into .venv (declared in
requirements but missing after the 3.13->3.14 venv upgrade),
fixing 8 failing smart_plug tests and restoring 100% coverage.
Also includes prior in-progress work from the working tree: the
wake_alarm Progress/View/Hardware field-grouping refactor,
brother_printer query module + tests, diet_guard foodbank/state/cli
updates, new shared coerce/logging_setup helpers, morning_routine
orchestrator tweaks, dwm window-manager config, gaming scripts, and
misc maintenance/digital-wellbeing script updates.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-06-14 07:19:37 +02:00
|
|
|
assert alarm._progress.flash_on is False
|
2026-05-23 19:51:26 +02:00
|
|
|
mock_root.after.assert_called_with(750, alarm._flash_step)
|
|
|
|
|
alarm._stop_beep.set()
|
|
|
|
|
|
|
|
|
|
def test_flash_step_stops_when_inactive(
|
|
|
|
|
self,
|
|
|
|
|
mock_tk_module: MagicMock,
|
|
|
|
|
) -> None:
|
|
|
|
|
"""When alarm is no longer active, _flash_step returns without scheduling."""
|
|
|
|
|
alarm = WakeAlarm(demo_mode=True)
|
|
|
|
|
mock_root = mock_tk_module.Tk.return_value
|
|
|
|
|
alarm._active = False
|
|
|
|
|
mock_root.configure.reset_mock()
|
|
|
|
|
mock_root.after.reset_mock()
|
|
|
|
|
|
|
|
|
|
alarm._flash_step()
|
|
|
|
|
|
|
|
|
|
mock_root.configure.assert_not_called()
|
|
|
|
|
mock_root.after.assert_not_called()
|
|
|
|
|
alarm._stop_beep.set()
|