2026-03-16 22:46:48 +01:00
|
|
|
"""Tests for screen_locker initialization, logging, and basic operations."""
|
|
|
|
|
|
|
|
|
|
from __future__ import annotations
|
|
|
|
|
|
|
|
|
|
from datetime import datetime, timezone
|
|
|
|
|
import json
|
2026-03-21 17:51:36 +01:00
|
|
|
import tkinter as tk
|
2026-03-16 22:46:48 +01:00
|
|
|
from typing import TYPE_CHECKING, Any
|
|
|
|
|
from unittest.mock import MagicMock
|
|
|
|
|
|
|
|
|
|
import pytest
|
|
|
|
|
|
|
|
|
|
from python_pkg.screen_locker.tests.conftest import create_locker
|
|
|
|
|
|
|
|
|
|
if TYPE_CHECKING:
|
|
|
|
|
from pathlib import Path
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class TestScreenLockerInit:
|
|
|
|
|
"""Tests for ScreenLocker initialization."""
|
|
|
|
|
|
|
|
|
|
def test_init_demo_mode(
|
|
|
|
|
self, mock_tk: MagicMock, mock_sys_exit: MagicMock, tmp_path: Path
|
|
|
|
|
) -> None:
|
|
|
|
|
"""Test initialization in demo mode."""
|
|
|
|
|
locker = create_locker(mock_tk, tmp_path, demo_mode=True)
|
|
|
|
|
|
|
|
|
|
assert locker.demo_mode is True
|
|
|
|
|
assert locker.lockout_time == 10
|
|
|
|
|
mock_sys_exit.assert_not_called()
|
|
|
|
|
|
|
|
|
|
def test_init_production_mode(
|
|
|
|
|
self, mock_tk: MagicMock, mock_sys_exit: MagicMock, tmp_path: Path
|
|
|
|
|
) -> None:
|
|
|
|
|
"""Test initialization in production mode."""
|
|
|
|
|
locker = create_locker(mock_tk, tmp_path, demo_mode=False)
|
|
|
|
|
|
|
|
|
|
assert locker.demo_mode is False
|
|
|
|
|
assert locker.lockout_time == 1800
|
|
|
|
|
mock_sys_exit.assert_not_called()
|
|
|
|
|
|
|
|
|
|
def test_init_exits_if_logged_today(
|
|
|
|
|
self, mock_tk: MagicMock, mock_sys_exit: MagicMock, tmp_path: Path
|
|
|
|
|
) -> None:
|
|
|
|
|
"""Test that init exits early if workout logged today."""
|
|
|
|
|
mock_sys_exit.side_effect = SystemExit(0)
|
|
|
|
|
|
|
|
|
|
with pytest.raises(SystemExit):
|
|
|
|
|
create_locker(mock_tk, tmp_path, has_logged=True)
|
|
|
|
|
|
|
|
|
|
mock_sys_exit.assert_called_once_with(0)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class TestHasLoggedToday:
|
|
|
|
|
"""Tests for has_logged_today method."""
|
|
|
|
|
|
|
|
|
|
def test_no_log_file(
|
|
|
|
|
self,
|
|
|
|
|
mock_tk: MagicMock,
|
Reduce per-file-ignores by fixing lint violations across codebase
Fix ruff violations in ~15 source files and ~60+ test files to minimize
per-file-ignores in pyproject.toml. Remaining ignores are justified with
comments explaining why each suppression is necessary.
Source fixes: FBT003 (keyword args), S310 (URL validation), SLF001
(private access), T201 (print→logging), C901 (complexity), E501 (line
length), E402 (import order).
Test fixes: SIM117 (combined with), FBT (boolean args), PERF203 (try in
loop), S310/S607 (URLs/executables), E402/E501 (imports/lines), S108
(tmp paths), PLR0913 (too many args), ARG (unused args), ANN (type
annotations), RUF059 (unused unpacked vars), PT019 (fixture naming).
Remaining per-file-ignores (with justifications):
- Tests: ARG, D, PLC0415, PLR2004, S101, SLF001
- music_gen sources: PLC0415 (heavy ML lazy imports)
- moviepy_showcase: PLC0415 (circular dependency)
- generate_images: PLR0913 (matplotlib helpers need many params)
- praca_magisterska_video: E501, E402 (long paths, mpl.use)
2026-03-25 18:58:05 +01:00
|
|
|
mock_sys_exit: MagicMock,
|
2026-03-16 22:46:48 +01:00
|
|
|
tmp_path: Path,
|
|
|
|
|
) -> None:
|
|
|
|
|
"""Test when log file doesn't exist."""
|
|
|
|
|
log_file = tmp_path / "workout_log.json"
|
|
|
|
|
locker = create_locker(mock_tk, tmp_path)
|
|
|
|
|
|
|
|
|
|
locker.log_file = log_file
|
|
|
|
|
assert locker.has_logged_today() is False
|
|
|
|
|
|
|
|
|
|
def test_empty_log_file(
|
|
|
|
|
self,
|
|
|
|
|
mock_tk: MagicMock,
|
Reduce per-file-ignores by fixing lint violations across codebase
Fix ruff violations in ~15 source files and ~60+ test files to minimize
per-file-ignores in pyproject.toml. Remaining ignores are justified with
comments explaining why each suppression is necessary.
Source fixes: FBT003 (keyword args), S310 (URL validation), SLF001
(private access), T201 (print→logging), C901 (complexity), E501 (line
length), E402 (import order).
Test fixes: SIM117 (combined with), FBT (boolean args), PERF203 (try in
loop), S310/S607 (URLs/executables), E402/E501 (imports/lines), S108
(tmp paths), PLR0913 (too many args), ARG (unused args), ANN (type
annotations), RUF059 (unused unpacked vars), PT019 (fixture naming).
Remaining per-file-ignores (with justifications):
- Tests: ARG, D, PLC0415, PLR2004, S101, SLF001
- music_gen sources: PLC0415 (heavy ML lazy imports)
- moviepy_showcase: PLC0415 (circular dependency)
- generate_images: PLR0913 (matplotlib helpers need many params)
- praca_magisterska_video: E501, E402 (long paths, mpl.use)
2026-03-25 18:58:05 +01:00
|
|
|
mock_sys_exit: MagicMock,
|
2026-03-16 22:46:48 +01:00
|
|
|
tmp_path: Path,
|
|
|
|
|
) -> None:
|
|
|
|
|
"""Test when log file is empty/invalid JSON."""
|
|
|
|
|
log_file = tmp_path / "workout_log.json"
|
|
|
|
|
log_file.write_text("")
|
|
|
|
|
|
|
|
|
|
locker = create_locker(mock_tk, tmp_path)
|
|
|
|
|
locker.log_file = log_file
|
|
|
|
|
assert locker.has_logged_today() is False
|
|
|
|
|
|
|
|
|
|
def test_invalid_json(
|
|
|
|
|
self,
|
|
|
|
|
mock_tk: MagicMock,
|
Reduce per-file-ignores by fixing lint violations across codebase
Fix ruff violations in ~15 source files and ~60+ test files to minimize
per-file-ignores in pyproject.toml. Remaining ignores are justified with
comments explaining why each suppression is necessary.
Source fixes: FBT003 (keyword args), S310 (URL validation), SLF001
(private access), T201 (print→logging), C901 (complexity), E501 (line
length), E402 (import order).
Test fixes: SIM117 (combined with), FBT (boolean args), PERF203 (try in
loop), S310/S607 (URLs/executables), E402/E501 (imports/lines), S108
(tmp paths), PLR0913 (too many args), ARG (unused args), ANN (type
annotations), RUF059 (unused unpacked vars), PT019 (fixture naming).
Remaining per-file-ignores (with justifications):
- Tests: ARG, D, PLC0415, PLR2004, S101, SLF001
- music_gen sources: PLC0415 (heavy ML lazy imports)
- moviepy_showcase: PLC0415 (circular dependency)
- generate_images: PLR0913 (matplotlib helpers need many params)
- praca_magisterska_video: E501, E402 (long paths, mpl.use)
2026-03-25 18:58:05 +01:00
|
|
|
mock_sys_exit: MagicMock,
|
2026-03-16 22:46:48 +01:00
|
|
|
tmp_path: Path,
|
|
|
|
|
) -> None:
|
|
|
|
|
"""Test when log file contains invalid JSON."""
|
|
|
|
|
log_file = tmp_path / "workout_log.json"
|
|
|
|
|
log_file.write_text("{invalid json}")
|
|
|
|
|
|
|
|
|
|
locker = create_locker(mock_tk, tmp_path)
|
|
|
|
|
locker.log_file = log_file
|
|
|
|
|
assert locker.has_logged_today() is False
|
|
|
|
|
|
|
|
|
|
def test_today_logged(
|
|
|
|
|
self,
|
|
|
|
|
mock_tk: MagicMock,
|
Reduce per-file-ignores by fixing lint violations across codebase
Fix ruff violations in ~15 source files and ~60+ test files to minimize
per-file-ignores in pyproject.toml. Remaining ignores are justified with
comments explaining why each suppression is necessary.
Source fixes: FBT003 (keyword args), S310 (URL validation), SLF001
(private access), T201 (print→logging), C901 (complexity), E501 (line
length), E402 (import order).
Test fixes: SIM117 (combined with), FBT (boolean args), PERF203 (try in
loop), S310/S607 (URLs/executables), E402/E501 (imports/lines), S108
(tmp paths), PLR0913 (too many args), ARG (unused args), ANN (type
annotations), RUF059 (unused unpacked vars), PT019 (fixture naming).
Remaining per-file-ignores (with justifications):
- Tests: ARG, D, PLC0415, PLR2004, S101, SLF001
- music_gen sources: PLC0415 (heavy ML lazy imports)
- moviepy_showcase: PLC0415 (circular dependency)
- generate_images: PLR0913 (matplotlib helpers need many params)
- praca_magisterska_video: E501, E402 (long paths, mpl.use)
2026-03-25 18:58:05 +01:00
|
|
|
mock_sys_exit: MagicMock,
|
2026-03-16 22:46:48 +01:00
|
|
|
tmp_path: Path,
|
|
|
|
|
) -> None:
|
|
|
|
|
"""Test when today's workout is logged."""
|
|
|
|
|
log_file = tmp_path / "workout_log.json"
|
|
|
|
|
today = datetime.now(tz=timezone.utc).strftime("%Y-%m-%d")
|
|
|
|
|
log_file.write_text(json.dumps({today: {"workout": "data"}}))
|
|
|
|
|
|
|
|
|
|
locker = create_locker(mock_tk, tmp_path)
|
|
|
|
|
locker.log_file = log_file
|
|
|
|
|
assert locker.has_logged_today() is True
|
|
|
|
|
|
|
|
|
|
def test_other_day_logged(
|
|
|
|
|
self,
|
|
|
|
|
mock_tk: MagicMock,
|
Reduce per-file-ignores by fixing lint violations across codebase
Fix ruff violations in ~15 source files and ~60+ test files to minimize
per-file-ignores in pyproject.toml. Remaining ignores are justified with
comments explaining why each suppression is necessary.
Source fixes: FBT003 (keyword args), S310 (URL validation), SLF001
(private access), T201 (print→logging), C901 (complexity), E501 (line
length), E402 (import order).
Test fixes: SIM117 (combined with), FBT (boolean args), PERF203 (try in
loop), S310/S607 (URLs/executables), E402/E501 (imports/lines), S108
(tmp paths), PLR0913 (too many args), ARG (unused args), ANN (type
annotations), RUF059 (unused unpacked vars), PT019 (fixture naming).
Remaining per-file-ignores (with justifications):
- Tests: ARG, D, PLC0415, PLR2004, S101, SLF001
- music_gen sources: PLC0415 (heavy ML lazy imports)
- moviepy_showcase: PLC0415 (circular dependency)
- generate_images: PLR0913 (matplotlib helpers need many params)
- praca_magisterska_video: E501, E402 (long paths, mpl.use)
2026-03-25 18:58:05 +01:00
|
|
|
mock_sys_exit: MagicMock,
|
2026-03-16 22:46:48 +01:00
|
|
|
tmp_path: Path,
|
|
|
|
|
) -> None:
|
|
|
|
|
"""Test when only other days are logged."""
|
|
|
|
|
log_file = tmp_path / "workout_log.json"
|
|
|
|
|
log_file.write_text(json.dumps({"2020-01-01": {"workout": "data"}}))
|
|
|
|
|
|
|
|
|
|
locker = create_locker(mock_tk, tmp_path)
|
|
|
|
|
locker.log_file = log_file
|
|
|
|
|
assert locker.has_logged_today() is False
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class TestSaveWorkoutLog:
|
|
|
|
|
"""Tests for save_workout_log method."""
|
|
|
|
|
|
|
|
|
|
def test_save_to_new_file(
|
|
|
|
|
self,
|
|
|
|
|
mock_tk: MagicMock,
|
Reduce per-file-ignores by fixing lint violations across codebase
Fix ruff violations in ~15 source files and ~60+ test files to minimize
per-file-ignores in pyproject.toml. Remaining ignores are justified with
comments explaining why each suppression is necessary.
Source fixes: FBT003 (keyword args), S310 (URL validation), SLF001
(private access), T201 (print→logging), C901 (complexity), E501 (line
length), E402 (import order).
Test fixes: SIM117 (combined with), FBT (boolean args), PERF203 (try in
loop), S310/S607 (URLs/executables), E402/E501 (imports/lines), S108
(tmp paths), PLR0913 (too many args), ARG (unused args), ANN (type
annotations), RUF059 (unused unpacked vars), PT019 (fixture naming).
Remaining per-file-ignores (with justifications):
- Tests: ARG, D, PLC0415, PLR2004, S101, SLF001
- music_gen sources: PLC0415 (heavy ML lazy imports)
- moviepy_showcase: PLC0415 (circular dependency)
- generate_images: PLR0913 (matplotlib helpers need many params)
- praca_magisterska_video: E501, E402 (long paths, mpl.use)
2026-03-25 18:58:05 +01:00
|
|
|
mock_sys_exit: MagicMock,
|
2026-03-16 22:46:48 +01:00
|
|
|
tmp_path: Path,
|
|
|
|
|
) -> None:
|
|
|
|
|
"""Test saving to a new log file."""
|
|
|
|
|
log_file = tmp_path / "workout_log.json"
|
|
|
|
|
locker = create_locker(mock_tk, tmp_path)
|
|
|
|
|
locker.log_file = log_file
|
|
|
|
|
locker.workout_data = {"type": "running"}
|
|
|
|
|
locker.save_workout_log()
|
|
|
|
|
|
|
|
|
|
assert log_file.exists()
|
|
|
|
|
with log_file.open() as f:
|
|
|
|
|
data: dict[str, Any] = json.load(f)
|
|
|
|
|
today = datetime.now(tz=timezone.utc).strftime("%Y-%m-%d")
|
|
|
|
|
assert today in data
|
|
|
|
|
assert data[today]["workout_data"]["type"] == "running"
|
|
|
|
|
|
|
|
|
|
def test_save_to_existing_file(
|
|
|
|
|
self,
|
|
|
|
|
mock_tk: MagicMock,
|
Reduce per-file-ignores by fixing lint violations across codebase
Fix ruff violations in ~15 source files and ~60+ test files to minimize
per-file-ignores in pyproject.toml. Remaining ignores are justified with
comments explaining why each suppression is necessary.
Source fixes: FBT003 (keyword args), S310 (URL validation), SLF001
(private access), T201 (print→logging), C901 (complexity), E501 (line
length), E402 (import order).
Test fixes: SIM117 (combined with), FBT (boolean args), PERF203 (try in
loop), S310/S607 (URLs/executables), E402/E501 (imports/lines), S108
(tmp paths), PLR0913 (too many args), ARG (unused args), ANN (type
annotations), RUF059 (unused unpacked vars), PT019 (fixture naming).
Remaining per-file-ignores (with justifications):
- Tests: ARG, D, PLC0415, PLR2004, S101, SLF001
- music_gen sources: PLC0415 (heavy ML lazy imports)
- moviepy_showcase: PLC0415 (circular dependency)
- generate_images: PLR0913 (matplotlib helpers need many params)
- praca_magisterska_video: E501, E402 (long paths, mpl.use)
2026-03-25 18:58:05 +01:00
|
|
|
mock_sys_exit: MagicMock,
|
2026-03-16 22:46:48 +01:00
|
|
|
tmp_path: Path,
|
|
|
|
|
) -> None:
|
|
|
|
|
"""Test saving appends to existing log file."""
|
|
|
|
|
log_file = tmp_path / "workout_log.json"
|
|
|
|
|
log_file.write_text(json.dumps({"2020-01-01": {"old": "data"}}))
|
|
|
|
|
|
|
|
|
|
locker = create_locker(mock_tk, tmp_path)
|
|
|
|
|
locker.log_file = log_file
|
|
|
|
|
locker.workout_data = {"type": "strength"}
|
|
|
|
|
locker.save_workout_log()
|
|
|
|
|
|
|
|
|
|
with log_file.open() as f:
|
|
|
|
|
data: dict[str, Any] = json.load(f)
|
|
|
|
|
assert "2020-01-01" in data
|
|
|
|
|
today = datetime.now(tz=timezone.utc).strftime("%Y-%m-%d")
|
|
|
|
|
assert today in data
|
|
|
|
|
|
|
|
|
|
def test_save_with_corrupted_existing_file(
|
|
|
|
|
self,
|
|
|
|
|
mock_tk: MagicMock,
|
Reduce per-file-ignores by fixing lint violations across codebase
Fix ruff violations in ~15 source files and ~60+ test files to minimize
per-file-ignores in pyproject.toml. Remaining ignores are justified with
comments explaining why each suppression is necessary.
Source fixes: FBT003 (keyword args), S310 (URL validation), SLF001
(private access), T201 (print→logging), C901 (complexity), E501 (line
length), E402 (import order).
Test fixes: SIM117 (combined with), FBT (boolean args), PERF203 (try in
loop), S310/S607 (URLs/executables), E402/E501 (imports/lines), S108
(tmp paths), PLR0913 (too many args), ARG (unused args), ANN (type
annotations), RUF059 (unused unpacked vars), PT019 (fixture naming).
Remaining per-file-ignores (with justifications):
- Tests: ARG, D, PLC0415, PLR2004, S101, SLF001
- music_gen sources: PLC0415 (heavy ML lazy imports)
- moviepy_showcase: PLC0415 (circular dependency)
- generate_images: PLR0913 (matplotlib helpers need many params)
- praca_magisterska_video: E501, E402 (long paths, mpl.use)
2026-03-25 18:58:05 +01:00
|
|
|
mock_sys_exit: MagicMock,
|
2026-03-16 22:46:48 +01:00
|
|
|
tmp_path: Path,
|
|
|
|
|
) -> None:
|
|
|
|
|
"""Test saving when existing file is corrupted."""
|
|
|
|
|
log_file = tmp_path / "workout_log.json"
|
|
|
|
|
log_file.write_text("not valid json")
|
|
|
|
|
|
|
|
|
|
locker = create_locker(mock_tk, tmp_path)
|
|
|
|
|
locker.log_file = log_file
|
|
|
|
|
locker.workout_data = {"type": "running"}
|
|
|
|
|
locker.save_workout_log()
|
|
|
|
|
|
|
|
|
|
with log_file.open() as f:
|
|
|
|
|
data: dict[str, Any] = json.load(f)
|
|
|
|
|
today = datetime.now(tz=timezone.utc).strftime("%Y-%m-%d")
|
|
|
|
|
assert today in data
|
|
|
|
|
|
|
|
|
|
def test_save_with_write_error(
|
|
|
|
|
self,
|
|
|
|
|
mock_tk: MagicMock,
|
Reduce per-file-ignores by fixing lint violations across codebase
Fix ruff violations in ~15 source files and ~60+ test files to minimize
per-file-ignores in pyproject.toml. Remaining ignores are justified with
comments explaining why each suppression is necessary.
Source fixes: FBT003 (keyword args), S310 (URL validation), SLF001
(private access), T201 (print→logging), C901 (complexity), E501 (line
length), E402 (import order).
Test fixes: SIM117 (combined with), FBT (boolean args), PERF203 (try in
loop), S310/S607 (URLs/executables), E402/E501 (imports/lines), S108
(tmp paths), PLR0913 (too many args), ARG (unused args), ANN (type
annotations), RUF059 (unused unpacked vars), PT019 (fixture naming).
Remaining per-file-ignores (with justifications):
- Tests: ARG, D, PLC0415, PLR2004, S101, SLF001
- music_gen sources: PLC0415 (heavy ML lazy imports)
- moviepy_showcase: PLC0415 (circular dependency)
- generate_images: PLR0913 (matplotlib helpers need many params)
- praca_magisterska_video: E501, E402 (long paths, mpl.use)
2026-03-25 18:58:05 +01:00
|
|
|
mock_sys_exit: MagicMock,
|
2026-03-16 22:46:48 +01:00
|
|
|
tmp_path: Path,
|
|
|
|
|
) -> None:
|
|
|
|
|
"""Test saving handles write errors gracefully."""
|
|
|
|
|
log_file = tmp_path / "nonexistent_dir" / "workout_log.json"
|
|
|
|
|
|
|
|
|
|
locker = create_locker(mock_tk, tmp_path)
|
|
|
|
|
locker.log_file = log_file
|
|
|
|
|
locker.workout_data = {"type": "running"}
|
|
|
|
|
# Should not raise, just log warning
|
|
|
|
|
locker.save_workout_log()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class TestRun:
|
|
|
|
|
"""Tests for run method."""
|
|
|
|
|
|
|
|
|
|
def test_run_starts_mainloop(
|
|
|
|
|
self,
|
|
|
|
|
mock_tk: MagicMock,
|
Reduce per-file-ignores by fixing lint violations across codebase
Fix ruff violations in ~15 source files and ~60+ test files to minimize
per-file-ignores in pyproject.toml. Remaining ignores are justified with
comments explaining why each suppression is necessary.
Source fixes: FBT003 (keyword args), S310 (URL validation), SLF001
(private access), T201 (print→logging), C901 (complexity), E501 (line
length), E402 (import order).
Test fixes: SIM117 (combined with), FBT (boolean args), PERF203 (try in
loop), S310/S607 (URLs/executables), E402/E501 (imports/lines), S108
(tmp paths), PLR0913 (too many args), ARG (unused args), ANN (type
annotations), RUF059 (unused unpacked vars), PT019 (fixture naming).
Remaining per-file-ignores (with justifications):
- Tests: ARG, D, PLC0415, PLR2004, S101, SLF001
- music_gen sources: PLC0415 (heavy ML lazy imports)
- moviepy_showcase: PLC0415 (circular dependency)
- generate_images: PLR0913 (matplotlib helpers need many params)
- praca_magisterska_video: E501, E402 (long paths, mpl.use)
2026-03-25 18:58:05 +01:00
|
|
|
mock_sys_exit: MagicMock,
|
2026-03-16 22:46:48 +01:00
|
|
|
tmp_path: Path,
|
|
|
|
|
) -> None:
|
|
|
|
|
"""Test run starts the tkinter mainloop."""
|
|
|
|
|
locker = create_locker(mock_tk, tmp_path)
|
|
|
|
|
|
|
|
|
|
locker.run()
|
|
|
|
|
|
2026-03-18 22:20:05 +01:00
|
|
|
locker.root.mainloop.assert_called_once()
|
2026-03-16 22:46:48 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
class TestMainEntry:
|
|
|
|
|
"""Tests for main entry point."""
|
|
|
|
|
|
|
|
|
|
def test_main_demo_mode_default(
|
|
|
|
|
self,
|
|
|
|
|
mock_tk: MagicMock,
|
Reduce per-file-ignores by fixing lint violations across codebase
Fix ruff violations in ~15 source files and ~60+ test files to minimize
per-file-ignores in pyproject.toml. Remaining ignores are justified with
comments explaining why each suppression is necessary.
Source fixes: FBT003 (keyword args), S310 (URL validation), SLF001
(private access), T201 (print→logging), C901 (complexity), E501 (line
length), E402 (import order).
Test fixes: SIM117 (combined with), FBT (boolean args), PERF203 (try in
loop), S310/S607 (URLs/executables), E402/E501 (imports/lines), S108
(tmp paths), PLR0913 (too many args), ARG (unused args), ANN (type
annotations), RUF059 (unused unpacked vars), PT019 (fixture naming).
Remaining per-file-ignores (with justifications):
- Tests: ARG, D, PLC0415, PLR2004, S101, SLF001
- music_gen sources: PLC0415 (heavy ML lazy imports)
- moviepy_showcase: PLC0415 (circular dependency)
- generate_images: PLR0913 (matplotlib helpers need many params)
- praca_magisterska_video: E501, E402 (long paths, mpl.use)
2026-03-25 18:58:05 +01:00
|
|
|
mock_sys_exit: MagicMock,
|
2026-03-16 22:46:48 +01:00
|
|
|
tmp_path: Path,
|
|
|
|
|
) -> None:
|
|
|
|
|
"""Test main defaults to demo mode."""
|
|
|
|
|
locker = create_locker(mock_tk, tmp_path, demo_mode=True)
|
|
|
|
|
|
|
|
|
|
assert locker.demo_mode is True
|
|
|
|
|
|
|
|
|
|
def test_main_production_mode_flag(
|
|
|
|
|
self,
|
|
|
|
|
mock_tk: MagicMock,
|
Reduce per-file-ignores by fixing lint violations across codebase
Fix ruff violations in ~15 source files and ~60+ test files to minimize
per-file-ignores in pyproject.toml. Remaining ignores are justified with
comments explaining why each suppression is necessary.
Source fixes: FBT003 (keyword args), S310 (URL validation), SLF001
(private access), T201 (print→logging), C901 (complexity), E501 (line
length), E402 (import order).
Test fixes: SIM117 (combined with), FBT (boolean args), PERF203 (try in
loop), S310/S607 (URLs/executables), E402/E501 (imports/lines), S108
(tmp paths), PLR0913 (too many args), ARG (unused args), ANN (type
annotations), RUF059 (unused unpacked vars), PT019 (fixture naming).
Remaining per-file-ignores (with justifications):
- Tests: ARG, D, PLC0415, PLR2004, S101, SLF001
- music_gen sources: PLC0415 (heavy ML lazy imports)
- moviepy_showcase: PLC0415 (circular dependency)
- generate_images: PLR0913 (matplotlib helpers need many params)
- praca_magisterska_video: E501, E402 (long paths, mpl.use)
2026-03-25 18:58:05 +01:00
|
|
|
mock_sys_exit: MagicMock,
|
2026-03-16 22:46:48 +01:00
|
|
|
tmp_path: Path,
|
|
|
|
|
) -> None:
|
|
|
|
|
"""Test main with --production flag."""
|
|
|
|
|
locker = create_locker(mock_tk, tmp_path, demo_mode=False)
|
|
|
|
|
|
|
|
|
|
assert locker.demo_mode is False
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class TestAdjustShutdownTimeLater:
|
|
|
|
|
"""Tests for _adjust_shutdown_time_later method."""
|
|
|
|
|
|
|
|
|
|
def test_adjust_shutdown_time_later_success(
|
|
|
|
|
self,
|
|
|
|
|
mock_tk: MagicMock,
|
Reduce per-file-ignores by fixing lint violations across codebase
Fix ruff violations in ~15 source files and ~60+ test files to minimize
per-file-ignores in pyproject.toml. Remaining ignores are justified with
comments explaining why each suppression is necessary.
Source fixes: FBT003 (keyword args), S310 (URL validation), SLF001
(private access), T201 (print→logging), C901 (complexity), E501 (line
length), E402 (import order).
Test fixes: SIM117 (combined with), FBT (boolean args), PERF203 (try in
loop), S310/S607 (URLs/executables), E402/E501 (imports/lines), S108
(tmp paths), PLR0913 (too many args), ARG (unused args), ANN (type
annotations), RUF059 (unused unpacked vars), PT019 (fixture naming).
Remaining per-file-ignores (with justifications):
- Tests: ARG, D, PLC0415, PLR2004, S101, SLF001
- music_gen sources: PLC0415 (heavy ML lazy imports)
- moviepy_showcase: PLC0415 (circular dependency)
- generate_images: PLR0913 (matplotlib helpers need many params)
- praca_magisterska_video: E501, E402 (long paths, mpl.use)
2026-03-25 18:58:05 +01:00
|
|
|
mock_sys_exit: MagicMock,
|
2026-03-16 22:46:48 +01:00
|
|
|
tmp_path: Path,
|
|
|
|
|
) -> None:
|
|
|
|
|
"""Test _adjust_shutdown_time_later adds hours successfully."""
|
|
|
|
|
locker = create_locker(mock_tk, tmp_path)
|
2026-03-18 22:20:05 +01:00
|
|
|
object.__setattr__(
|
|
|
|
|
locker, "_read_shutdown_config", MagicMock(return_value=(21, 22, 8))
|
2026-03-16 22:46:48 +01:00
|
|
|
)
|
2026-03-18 22:20:05 +01:00
|
|
|
object.__setattr__(
|
|
|
|
|
locker, "_write_shutdown_config", MagicMock(return_value=True)
|
2026-03-16 22:46:48 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
result = locker._adjust_shutdown_time_later()
|
|
|
|
|
|
|
|
|
|
assert result is True
|
|
|
|
|
locker._write_shutdown_config.assert_called_once_with(23, 23, 8, restore=True)
|
|
|
|
|
|
|
|
|
|
def test_adjust_shutdown_time_later_caps_at_23(
|
|
|
|
|
self,
|
|
|
|
|
mock_tk: MagicMock,
|
Reduce per-file-ignores by fixing lint violations across codebase
Fix ruff violations in ~15 source files and ~60+ test files to minimize
per-file-ignores in pyproject.toml. Remaining ignores are justified with
comments explaining why each suppression is necessary.
Source fixes: FBT003 (keyword args), S310 (URL validation), SLF001
(private access), T201 (print→logging), C901 (complexity), E501 (line
length), E402 (import order).
Test fixes: SIM117 (combined with), FBT (boolean args), PERF203 (try in
loop), S310/S607 (URLs/executables), E402/E501 (imports/lines), S108
(tmp paths), PLR0913 (too many args), ARG (unused args), ANN (type
annotations), RUF059 (unused unpacked vars), PT019 (fixture naming).
Remaining per-file-ignores (with justifications):
- Tests: ARG, D, PLC0415, PLR2004, S101, SLF001
- music_gen sources: PLC0415 (heavy ML lazy imports)
- moviepy_showcase: PLC0415 (circular dependency)
- generate_images: PLR0913 (matplotlib helpers need many params)
- praca_magisterska_video: E501, E402 (long paths, mpl.use)
2026-03-25 18:58:05 +01:00
|
|
|
mock_sys_exit: MagicMock,
|
2026-03-16 22:46:48 +01:00
|
|
|
tmp_path: Path,
|
|
|
|
|
) -> None:
|
|
|
|
|
"""Test _adjust_shutdown_time_later caps hours at 23."""
|
|
|
|
|
locker = create_locker(mock_tk, tmp_path)
|
2026-03-18 22:20:05 +01:00
|
|
|
object.__setattr__(
|
|
|
|
|
locker, "_read_shutdown_config", MagicMock(return_value=(22, 23, 8))
|
2026-03-16 22:46:48 +01:00
|
|
|
)
|
2026-03-18 22:20:05 +01:00
|
|
|
object.__setattr__(
|
|
|
|
|
locker, "_write_shutdown_config", MagicMock(return_value=True)
|
2026-03-16 22:46:48 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
result = locker._adjust_shutdown_time_later()
|
|
|
|
|
|
|
|
|
|
assert result is True
|
|
|
|
|
# 22+2=24 capped to 23, 23+2=25 capped to 23
|
|
|
|
|
locker._write_shutdown_config.assert_called_once_with(23, 23, 8, restore=True)
|
|
|
|
|
|
|
|
|
|
def test_adjust_shutdown_time_later_no_config(
|
|
|
|
|
self,
|
|
|
|
|
mock_tk: MagicMock,
|
Reduce per-file-ignores by fixing lint violations across codebase
Fix ruff violations in ~15 source files and ~60+ test files to minimize
per-file-ignores in pyproject.toml. Remaining ignores are justified with
comments explaining why each suppression is necessary.
Source fixes: FBT003 (keyword args), S310 (URL validation), SLF001
(private access), T201 (print→logging), C901 (complexity), E501 (line
length), E402 (import order).
Test fixes: SIM117 (combined with), FBT (boolean args), PERF203 (try in
loop), S310/S607 (URLs/executables), E402/E501 (imports/lines), S108
(tmp paths), PLR0913 (too many args), ARG (unused args), ANN (type
annotations), RUF059 (unused unpacked vars), PT019 (fixture naming).
Remaining per-file-ignores (with justifications):
- Tests: ARG, D, PLC0415, PLR2004, S101, SLF001
- music_gen sources: PLC0415 (heavy ML lazy imports)
- moviepy_showcase: PLC0415 (circular dependency)
- generate_images: PLR0913 (matplotlib helpers need many params)
- praca_magisterska_video: E501, E402 (long paths, mpl.use)
2026-03-25 18:58:05 +01:00
|
|
|
mock_sys_exit: MagicMock,
|
2026-03-16 22:46:48 +01:00
|
|
|
tmp_path: Path,
|
|
|
|
|
) -> None:
|
|
|
|
|
"""Test _adjust_shutdown_time_later returns False if config missing."""
|
|
|
|
|
locker = create_locker(mock_tk, tmp_path)
|
2026-03-18 22:20:05 +01:00
|
|
|
object.__setattr__(
|
|
|
|
|
locker, "_read_shutdown_config", MagicMock(return_value=None)
|
2026-03-16 22:46:48 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
result = locker._adjust_shutdown_time_later()
|
|
|
|
|
|
|
|
|
|
assert result is False
|
|
|
|
|
|
|
|
|
|
def test_adjust_shutdown_time_later_oserror(
|
|
|
|
|
self,
|
|
|
|
|
mock_tk: MagicMock,
|
Reduce per-file-ignores by fixing lint violations across codebase
Fix ruff violations in ~15 source files and ~60+ test files to minimize
per-file-ignores in pyproject.toml. Remaining ignores are justified with
comments explaining why each suppression is necessary.
Source fixes: FBT003 (keyword args), S310 (URL validation), SLF001
(private access), T201 (print→logging), C901 (complexity), E501 (line
length), E402 (import order).
Test fixes: SIM117 (combined with), FBT (boolean args), PERF203 (try in
loop), S310/S607 (URLs/executables), E402/E501 (imports/lines), S108
(tmp paths), PLR0913 (too many args), ARG (unused args), ANN (type
annotations), RUF059 (unused unpacked vars), PT019 (fixture naming).
Remaining per-file-ignores (with justifications):
- Tests: ARG, D, PLC0415, PLR2004, S101, SLF001
- music_gen sources: PLC0415 (heavy ML lazy imports)
- moviepy_showcase: PLC0415 (circular dependency)
- generate_images: PLR0913 (matplotlib helpers need many params)
- praca_magisterska_video: E501, E402 (long paths, mpl.use)
2026-03-25 18:58:05 +01:00
|
|
|
mock_sys_exit: MagicMock,
|
2026-03-16 22:46:48 +01:00
|
|
|
tmp_path: Path,
|
|
|
|
|
) -> None:
|
|
|
|
|
"""Test _adjust_shutdown_time_later handles OSError."""
|
|
|
|
|
locker = create_locker(mock_tk, tmp_path)
|
2026-03-18 22:20:05 +01:00
|
|
|
object.__setattr__(
|
|
|
|
|
locker,
|
|
|
|
|
"_read_shutdown_config",
|
|
|
|
|
MagicMock(side_effect=OSError("permission denied")),
|
2026-03-16 22:46:48 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
result = locker._adjust_shutdown_time_later()
|
|
|
|
|
|
|
|
|
|
assert result is False
|
2026-03-21 17:51:36 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
class TestGrabInput:
|
|
|
|
|
"""Tests for _grab_input method."""
|
|
|
|
|
|
|
|
|
|
def test_production_global_grab_tcl_error(
|
Reduce per-file-ignores by fixing lint violations across codebase
Fix ruff violations in ~15 source files and ~60+ test files to minimize
per-file-ignores in pyproject.toml. Remaining ignores are justified with
comments explaining why each suppression is necessary.
Source fixes: FBT003 (keyword args), S310 (URL validation), SLF001
(private access), T201 (print→logging), C901 (complexity), E501 (line
length), E402 (import order).
Test fixes: SIM117 (combined with), FBT (boolean args), PERF203 (try in
loop), S310/S607 (URLs/executables), E402/E501 (imports/lines), S108
(tmp paths), PLR0913 (too many args), ARG (unused args), ANN (type
annotations), RUF059 (unused unpacked vars), PT019 (fixture naming).
Remaining per-file-ignores (with justifications):
- Tests: ARG, D, PLC0415, PLR2004, S101, SLF001
- music_gen sources: PLC0415 (heavy ML lazy imports)
- moviepy_showcase: PLC0415 (circular dependency)
- generate_images: PLR0913 (matplotlib helpers need many params)
- praca_magisterska_video: E501, E402 (long paths, mpl.use)
2026-03-25 18:58:05 +01:00
|
|
|
self, mock_tk: MagicMock, mock_sys_exit: MagicMock, tmp_path: Path
|
2026-03-21 17:51:36 +01:00
|
|
|
) -> None:
|
|
|
|
|
"""Test production mode falls back when global grab fails."""
|
|
|
|
|
mock_tk.Tk.return_value.grab_set_global.side_effect = tk.TclError("grab failed")
|
|
|
|
|
locker = create_locker(mock_tk, tmp_path, demo_mode=False)
|
|
|
|
|
assert locker.demo_mode is False
|