Commit Graph
8 Commits
Author SHA1 Message Date
gurix b62a1d10c1 fix: rotate wecker.log to prevent unbounded growth 2026-06-18 16:41:30 +02:00
gurix 7e8e915024 fix: use fcntl file lock to prevent PID file race condition 2026-06-18 15:27:21 +02:00
Markus Graf 558c4ff5b6 Add isRinging query to check alarm state via API
Features:
- New GraphQL query 'isRinging' returns true/false if wecker is active
- Checks the wecker process via PID file (PID_FILE in common.py)

DRY refactoring:
- Extract PID_FILE into shared common.py module
- Both wecker.py and api/schema.py import from common
- DRY enforcement tests verify identity (is) not just equality

Tests:
- test_is_ringing_returns_false_when_not_running
- test_is_ringing_returns_true_when_running
- test_pid_file_defined_once_across_modules (DRY enforcement)
- test_pid_file_same_shared_constant_in_api (DRY enforcement)
- Cleaned up unused imports in test_single_instance.py

Docs:
- Updated README.md with isRinging query documentation
2026-05-19 15:15:05 +02:00
Markus Graf 6c088661fd Implement single instance enforcement using PID file 2026-05-19 14:39:51 +02:00
Markus Graf ff79224560 feat: make command parameter optional in set_alarm mutation 2026-05-11 15:05:29 +02:00
Markus Graf 5b5b845e41 Fix premature evaluation after blinking completes
When transitioning from STATE_BLINKING to STATE_WAIT_FOR_INPUT, the script used a stale timestamp `now` from before the blocking `blink_led` function. This caused the puzzle to immediately evaluate as failed. Updated to use `time.time()` after blinking finishes to ensure the user gets the full 3 seconds to enter their answer.
2026-05-10 07:41:00 +02:00
Markus Graf a7c4febd67 test: add tests and refactor wecker.py state machine for testability 2026-05-09 22:31:28 +02:00
Markus Graf f44e0c5fdb Initial commit: Add smart arcade button alarm clock 2026-04-30 13:32:32 +02:00