2026-05-22 16:00:15 +02:00
|
|
|
"""Tests for scheduled skip date feature in screen_lock.py."""
|
|
|
|
|
|
|
|
|
|
from __future__ import annotations
|
|
|
|
|
|
|
|
|
|
from datetime import datetime, timezone
|
|
|
|
|
import json
|
|
|
|
|
from typing import TYPE_CHECKING
|
|
|
|
|
from unittest.mock import MagicMock, patch
|
|
|
|
|
|
|
|
|
|
import pytest
|
|
|
|
|
|
2026-05-28 07:43:06 +02:00
|
|
|
from screen_locker.tests.conftest import create_locker
|
2026-05-22 16:00:15 +02:00
|
|
|
|
|
|
|
|
if TYPE_CHECKING:
|
|
|
|
|
from pathlib import Path
|
|
|
|
|
|
2026-05-28 07:43:06 +02:00
|
|
|
from screen_locker.screen_lock import ScreenLocker
|
2026-05-22 16:00:15 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
class TestIsScheduledSkipToday:
|
|
|
|
|
"""Tests for ScreenLocker._is_scheduled_skip_today."""
|
|
|
|
|
|
|
|
|
|
def _make_locker(self, mock_tk: MagicMock, tmp_path: Path) -> ScreenLocker:
|
|
|
|
|
return create_locker(mock_tk, tmp_path)
|
|
|
|
|
|
|
|
|
|
def test_returns_false_when_file_absent(
|
|
|
|
|
self,
|
|
|
|
|
mock_tk: MagicMock,
|
|
|
|
|
mock_sys_exit: MagicMock,
|
|
|
|
|
tmp_path: Path,
|
|
|
|
|
) -> None:
|
|
|
|
|
"""Returns False when scheduled_skips.json does not exist."""
|
|
|
|
|
locker = self._make_locker(mock_tk, tmp_path)
|
|
|
|
|
skip_file = tmp_path / "scheduled_skips.json"
|
|
|
|
|
with patch(
|
Add auto-fill RunnerUp scan, carrot bonuses, and --status interface
- Refactor RunnerUp verification: extract RunnerUpDbMixin (_runnerup_db.py),
split _scan_and_fill_week_runnerup into a helper _try_fill_runnerup_for_date
to keep cyclomatic complexity ≤10
- Generalise TCX lookup to any date in the ISO week (was today-only); all gap
days Mon→today auto-filled on every startup and 08:30 timer firing
- Add _adjust_shutdown_time_by(): +1h per extra workout beyond the 4-workout
minimum, capped at midnight (hour=24)
- Add _shutdown_base.py: daily reset of shutdown config to a stored base so
the bonus doesn't silently accumulate across days
- Add _extra_benefits.py: streak tracking, skip credits (earn (n-4) credits
for 5+ workout weeks), early-bird extension to 09:00 for eligible weeks
- Add --status mode (_status.py): non-locking CLI view showing per-day
breakdown (✓/✗), RunnerUp auto-scan, bonus status, shutdown time, streak,
skip credits, and early-bird status
- Hook carrot into _check_non_verify_exits: bonus applied whenever auto-fill
pushes weekly count above the minimum
- Pass all pre-commit hooks (ruff, mypy, pylint, bandit, shellcheck,
codespell, max-file-length); 508 tests at 100% branch coverage
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_017auyHmf2ZwQcDAwXaSo7KX
2026-06-28 08:08:35 +02:00
|
|
|
"screen_locker._log_mixin.SCHEDULED_SKIPS_FILE",
|
2026-05-22 16:00:15 +02:00
|
|
|
skip_file,
|
|
|
|
|
):
|
|
|
|
|
assert locker._is_scheduled_skip_today() is False
|
|
|
|
|
|
|
|
|
|
def test_returns_true_when_today_listed(
|
|
|
|
|
self,
|
|
|
|
|
mock_tk: MagicMock,
|
|
|
|
|
mock_sys_exit: MagicMock,
|
|
|
|
|
tmp_path: Path,
|
|
|
|
|
) -> None:
|
|
|
|
|
"""Returns True when today's date is in the skips list."""
|
|
|
|
|
locker = self._make_locker(mock_tk, tmp_path)
|
|
|
|
|
today = datetime.now(tz=timezone.utc).strftime("%Y-%m-%d")
|
|
|
|
|
skip_file = tmp_path / "scheduled_skips.json"
|
|
|
|
|
skip_file.write_text(json.dumps([today]))
|
|
|
|
|
with patch(
|
Add auto-fill RunnerUp scan, carrot bonuses, and --status interface
- Refactor RunnerUp verification: extract RunnerUpDbMixin (_runnerup_db.py),
split _scan_and_fill_week_runnerup into a helper _try_fill_runnerup_for_date
to keep cyclomatic complexity ≤10
- Generalise TCX lookup to any date in the ISO week (was today-only); all gap
days Mon→today auto-filled on every startup and 08:30 timer firing
- Add _adjust_shutdown_time_by(): +1h per extra workout beyond the 4-workout
minimum, capped at midnight (hour=24)
- Add _shutdown_base.py: daily reset of shutdown config to a stored base so
the bonus doesn't silently accumulate across days
- Add _extra_benefits.py: streak tracking, skip credits (earn (n-4) credits
for 5+ workout weeks), early-bird extension to 09:00 for eligible weeks
- Add --status mode (_status.py): non-locking CLI view showing per-day
breakdown (✓/✗), RunnerUp auto-scan, bonus status, shutdown time, streak,
skip credits, and early-bird status
- Hook carrot into _check_non_verify_exits: bonus applied whenever auto-fill
pushes weekly count above the minimum
- Pass all pre-commit hooks (ruff, mypy, pylint, bandit, shellcheck,
codespell, max-file-length); 508 tests at 100% branch coverage
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_017auyHmf2ZwQcDAwXaSo7KX
2026-06-28 08:08:35 +02:00
|
|
|
"screen_locker._log_mixin.SCHEDULED_SKIPS_FILE",
|
2026-05-22 16:00:15 +02:00
|
|
|
skip_file,
|
|
|
|
|
):
|
|
|
|
|
assert locker._is_scheduled_skip_today() is True
|
|
|
|
|
|
|
|
|
|
def test_returns_false_when_today_not_listed(
|
|
|
|
|
self,
|
|
|
|
|
mock_tk: MagicMock,
|
|
|
|
|
mock_sys_exit: MagicMock,
|
|
|
|
|
tmp_path: Path,
|
|
|
|
|
) -> None:
|
|
|
|
|
"""Returns False when today's date is not in the skips list."""
|
|
|
|
|
locker = self._make_locker(mock_tk, tmp_path)
|
|
|
|
|
skip_file = tmp_path / "scheduled_skips.json"
|
|
|
|
|
skip_file.write_text(json.dumps(["1999-01-01", "2000-06-15"]))
|
|
|
|
|
with patch(
|
Add auto-fill RunnerUp scan, carrot bonuses, and --status interface
- Refactor RunnerUp verification: extract RunnerUpDbMixin (_runnerup_db.py),
split _scan_and_fill_week_runnerup into a helper _try_fill_runnerup_for_date
to keep cyclomatic complexity ≤10
- Generalise TCX lookup to any date in the ISO week (was today-only); all gap
days Mon→today auto-filled on every startup and 08:30 timer firing
- Add _adjust_shutdown_time_by(): +1h per extra workout beyond the 4-workout
minimum, capped at midnight (hour=24)
- Add _shutdown_base.py: daily reset of shutdown config to a stored base so
the bonus doesn't silently accumulate across days
- Add _extra_benefits.py: streak tracking, skip credits (earn (n-4) credits
for 5+ workout weeks), early-bird extension to 09:00 for eligible weeks
- Add --status mode (_status.py): non-locking CLI view showing per-day
breakdown (✓/✗), RunnerUp auto-scan, bonus status, shutdown time, streak,
skip credits, and early-bird status
- Hook carrot into _check_non_verify_exits: bonus applied whenever auto-fill
pushes weekly count above the minimum
- Pass all pre-commit hooks (ruff, mypy, pylint, bandit, shellcheck,
codespell, max-file-length); 508 tests at 100% branch coverage
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_017auyHmf2ZwQcDAwXaSo7KX
2026-06-28 08:08:35 +02:00
|
|
|
"screen_locker._log_mixin.SCHEDULED_SKIPS_FILE",
|
2026-05-22 16:00:15 +02:00
|
|
|
skip_file,
|
|
|
|
|
):
|
|
|
|
|
assert locker._is_scheduled_skip_today() is False
|
|
|
|
|
|
|
|
|
|
def test_returns_false_on_corrupt_json(
|
|
|
|
|
self,
|
|
|
|
|
mock_tk: MagicMock,
|
|
|
|
|
mock_sys_exit: MagicMock,
|
|
|
|
|
tmp_path: Path,
|
|
|
|
|
) -> None:
|
|
|
|
|
"""Returns False when the skips file contains invalid JSON."""
|
|
|
|
|
locker = self._make_locker(mock_tk, tmp_path)
|
|
|
|
|
skip_file = tmp_path / "scheduled_skips.json"
|
|
|
|
|
skip_file.write_text("{not valid json}")
|
|
|
|
|
with patch(
|
Add auto-fill RunnerUp scan, carrot bonuses, and --status interface
- Refactor RunnerUp verification: extract RunnerUpDbMixin (_runnerup_db.py),
split _scan_and_fill_week_runnerup into a helper _try_fill_runnerup_for_date
to keep cyclomatic complexity ≤10
- Generalise TCX lookup to any date in the ISO week (was today-only); all gap
days Mon→today auto-filled on every startup and 08:30 timer firing
- Add _adjust_shutdown_time_by(): +1h per extra workout beyond the 4-workout
minimum, capped at midnight (hour=24)
- Add _shutdown_base.py: daily reset of shutdown config to a stored base so
the bonus doesn't silently accumulate across days
- Add _extra_benefits.py: streak tracking, skip credits (earn (n-4) credits
for 5+ workout weeks), early-bird extension to 09:00 for eligible weeks
- Add --status mode (_status.py): non-locking CLI view showing per-day
breakdown (✓/✗), RunnerUp auto-scan, bonus status, shutdown time, streak,
skip credits, and early-bird status
- Hook carrot into _check_non_verify_exits: bonus applied whenever auto-fill
pushes weekly count above the minimum
- Pass all pre-commit hooks (ruff, mypy, pylint, bandit, shellcheck,
codespell, max-file-length); 508 tests at 100% branch coverage
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_017auyHmf2ZwQcDAwXaSo7KX
2026-06-28 08:08:35 +02:00
|
|
|
"screen_locker._log_mixin.SCHEDULED_SKIPS_FILE",
|
2026-05-22 16:00:15 +02:00
|
|
|
skip_file,
|
|
|
|
|
):
|
|
|
|
|
assert locker._is_scheduled_skip_today() is False
|
|
|
|
|
|
|
|
|
|
def test_returns_false_on_read_error(
|
|
|
|
|
self,
|
|
|
|
|
mock_tk: MagicMock,
|
|
|
|
|
mock_sys_exit: MagicMock,
|
|
|
|
|
tmp_path: Path,
|
|
|
|
|
) -> None:
|
|
|
|
|
"""Returns False when the skips file cannot be read (OSError)."""
|
|
|
|
|
locker = self._make_locker(mock_tk, tmp_path)
|
|
|
|
|
skip_file = tmp_path / "scheduled_skips.json"
|
|
|
|
|
skip_file.write_text("[]")
|
|
|
|
|
with (
|
|
|
|
|
patch(
|
Add auto-fill RunnerUp scan, carrot bonuses, and --status interface
- Refactor RunnerUp verification: extract RunnerUpDbMixin (_runnerup_db.py),
split _scan_and_fill_week_runnerup into a helper _try_fill_runnerup_for_date
to keep cyclomatic complexity ≤10
- Generalise TCX lookup to any date in the ISO week (was today-only); all gap
days Mon→today auto-filled on every startup and 08:30 timer firing
- Add _adjust_shutdown_time_by(): +1h per extra workout beyond the 4-workout
minimum, capped at midnight (hour=24)
- Add _shutdown_base.py: daily reset of shutdown config to a stored base so
the bonus doesn't silently accumulate across days
- Add _extra_benefits.py: streak tracking, skip credits (earn (n-4) credits
for 5+ workout weeks), early-bird extension to 09:00 for eligible weeks
- Add --status mode (_status.py): non-locking CLI view showing per-day
breakdown (✓/✗), RunnerUp auto-scan, bonus status, shutdown time, streak,
skip credits, and early-bird status
- Hook carrot into _check_non_verify_exits: bonus applied whenever auto-fill
pushes weekly count above the minimum
- Pass all pre-commit hooks (ruff, mypy, pylint, bandit, shellcheck,
codespell, max-file-length); 508 tests at 100% branch coverage
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_017auyHmf2ZwQcDAwXaSo7KX
2026-06-28 08:08:35 +02:00
|
|
|
"screen_locker._log_mixin.SCHEDULED_SKIPS_FILE",
|
2026-05-22 16:00:15 +02:00
|
|
|
skip_file,
|
|
|
|
|
),
|
|
|
|
|
patch("builtins.open", side_effect=OSError("permission denied")),
|
|
|
|
|
):
|
|
|
|
|
assert locker._is_scheduled_skip_today() is False
|
|
|
|
|
|
|
|
|
|
def test_empty_list_returns_false(
|
|
|
|
|
self,
|
|
|
|
|
mock_tk: MagicMock,
|
|
|
|
|
mock_sys_exit: MagicMock,
|
|
|
|
|
tmp_path: Path,
|
|
|
|
|
) -> None:
|
|
|
|
|
"""Returns False for an empty skips list."""
|
|
|
|
|
locker = self._make_locker(mock_tk, tmp_path)
|
|
|
|
|
skip_file = tmp_path / "scheduled_skips.json"
|
|
|
|
|
skip_file.write_text("[]")
|
|
|
|
|
with patch(
|
Add auto-fill RunnerUp scan, carrot bonuses, and --status interface
- Refactor RunnerUp verification: extract RunnerUpDbMixin (_runnerup_db.py),
split _scan_and_fill_week_runnerup into a helper _try_fill_runnerup_for_date
to keep cyclomatic complexity ≤10
- Generalise TCX lookup to any date in the ISO week (was today-only); all gap
days Mon→today auto-filled on every startup and 08:30 timer firing
- Add _adjust_shutdown_time_by(): +1h per extra workout beyond the 4-workout
minimum, capped at midnight (hour=24)
- Add _shutdown_base.py: daily reset of shutdown config to a stored base so
the bonus doesn't silently accumulate across days
- Add _extra_benefits.py: streak tracking, skip credits (earn (n-4) credits
for 5+ workout weeks), early-bird extension to 09:00 for eligible weeks
- Add --status mode (_status.py): non-locking CLI view showing per-day
breakdown (✓/✗), RunnerUp auto-scan, bonus status, shutdown time, streak,
skip credits, and early-bird status
- Hook carrot into _check_non_verify_exits: bonus applied whenever auto-fill
pushes weekly count above the minimum
- Pass all pre-commit hooks (ruff, mypy, pylint, bandit, shellcheck,
codespell, max-file-length); 508 tests at 100% branch coverage
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_017auyHmf2ZwQcDAwXaSo7KX
2026-06-28 08:08:35 +02:00
|
|
|
"screen_locker._log_mixin.SCHEDULED_SKIPS_FILE",
|
2026-05-22 16:00:15 +02:00
|
|
|
skip_file,
|
|
|
|
|
):
|
|
|
|
|
assert locker._is_scheduled_skip_today() is False
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class TestScheduledSkipEarlyExit:
|
|
|
|
|
"""Tests for _check_non_verify_exits behaviour with scheduled skips."""
|
|
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
|
def _write_today_skip(tmp_path: Path) -> None:
|
|
|
|
|
today = datetime.now(tz=timezone.utc).strftime("%Y-%m-%d")
|
|
|
|
|
skip_file = tmp_path / "scheduled_skips.json"
|
|
|
|
|
skip_file.write_text(json.dumps([today]))
|
|
|
|
|
|
|
|
|
|
def test_exits_on_scheduled_skip_day(
|
|
|
|
|
self,
|
|
|
|
|
mock_tk: MagicMock,
|
|
|
|
|
mock_sys_exit: MagicMock,
|
|
|
|
|
tmp_path: Path,
|
|
|
|
|
) -> None:
|
|
|
|
|
"""Screen locker calls sys.exit(0) when today is a scheduled skip."""
|
|
|
|
|
self._write_today_skip(tmp_path)
|
|
|
|
|
mock_sys_exit.side_effect = SystemExit(0)
|
|
|
|
|
|
|
|
|
|
with pytest.raises(SystemExit):
|
|
|
|
|
create_locker(mock_tk, tmp_path)
|
|
|
|
|
|
|
|
|
|
mock_sys_exit.assert_called_once_with(0)
|
|
|
|
|
|
|
|
|
|
def test_does_not_exit_when_not_scheduled_skip(
|
|
|
|
|
self,
|
|
|
|
|
mock_tk: MagicMock,
|
|
|
|
|
mock_sys_exit: MagicMock,
|
|
|
|
|
tmp_path: Path,
|
|
|
|
|
) -> None:
|
|
|
|
|
"""Screen locker proceeds normally when today is not a scheduled skip."""
|
|
|
|
|
# No file written — _is_scheduled_skip_today returns False
|
|
|
|
|
locker = create_locker(mock_tk, tmp_path)
|
|
|
|
|
|
|
|
|
|
mock_sys_exit.assert_not_called()
|
|
|
|
|
assert locker is not None
|
|
|
|
|
|
|
|
|
|
def test_scheduled_skip_takes_precedence_over_has_logged(
|
|
|
|
|
self,
|
|
|
|
|
mock_tk: MagicMock,
|
|
|
|
|
mock_sys_exit: MagicMock,
|
|
|
|
|
tmp_path: Path,
|
|
|
|
|
) -> None:
|
|
|
|
|
"""Scheduled skip exits before has_logged or other checks run."""
|
|
|
|
|
self._write_today_skip(tmp_path)
|
|
|
|
|
mock_sys_exit.side_effect = SystemExit(0)
|
|
|
|
|
|
|
|
|
|
with pytest.raises(SystemExit):
|
|
|
|
|
create_locker(mock_tk, tmp_path, has_logged=False)
|
|
|
|
|
|
|
|
|
|
mock_sys_exit.assert_called_once_with(0)
|
|
|
|
|
|
|
|
|
|
def test_verify_only_mode_ignores_scheduled_skip(
|
|
|
|
|
self,
|
|
|
|
|
mock_tk: MagicMock,
|
|
|
|
|
mock_sys_exit: MagicMock,
|
|
|
|
|
tmp_path: Path,
|
|
|
|
|
) -> None:
|
|
|
|
|
"""verify_only mode does not consult scheduled skips."""
|
|
|
|
|
self._write_today_skip(tmp_path)
|
|
|
|
|
|
|
|
|
|
# verify_only exits because no sick day log, not because of scheduled skip
|
|
|
|
|
create_locker(
|
|
|
|
|
mock_tk,
|
|
|
|
|
tmp_path,
|
|
|
|
|
verify_only=True,
|
|
|
|
|
is_sick_day_log=False,
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
mock_sys_exit.assert_called_once_with(0)
|