Upload
This commit is contained in:
@@ -0,0 +1,350 @@
|
||||
# Acceptance Tests
|
||||
|
||||
## Purpose
|
||||
Comprehensive test catalog derived from the current codebase. Each test is runnable in Simulation and described for Real Box hardware. Behaviors not implemented are explicitly marked.
|
||||
|
||||
## Prerequisites
|
||||
- Repo root
|
||||
- Python 3
|
||||
- Box API running for Simulation: `python3 box/main.py run`
|
||||
- GUI optional: `cd gui && npm run dev`
|
||||
|
||||
## Step-by-step
|
||||
Use the tests below in order or individually.
|
||||
|
||||
---
|
||||
|
||||
## Test A: Box Start & box_id
|
||||
|
||||
1) Goal
|
||||
- Verify box_id is created once and persists.
|
||||
|
||||
2) Preconditions
|
||||
- Simulation: `box/data/box.json` may be missing.
|
||||
- Real Box: storage is empty or fresh install.
|
||||
|
||||
3) Procedure – Simulation / Emulation
|
||||
- Start Box:
|
||||
```
|
||||
python3 box/main.py run
|
||||
```
|
||||
- Check box_id in API:
|
||||
```
|
||||
curl http://127.0.0.1:8000/status
|
||||
```
|
||||
- Inspect file:
|
||||
```
|
||||
cat box/data/box.json
|
||||
```
|
||||
|
||||
4) Procedure – Real Box (Hardware)
|
||||
- Power on device.
|
||||
- Open status UI (if available) or API endpoint.
|
||||
|
||||
5) Expected Result
|
||||
- `/status` contains `box_id` with format `klangkiste-<10 chars a-z0-9>`.
|
||||
- `box/data/box.json` contains `box_id` and is stable across restarts.
|
||||
|
||||
6) Deviations / Troubleshooting
|
||||
- `box_id` missing: check write permissions for `box/data/`.
|
||||
- `box_id` changes: indicates manual deletion of `box/data/box.json`.
|
||||
|
||||
---
|
||||
|
||||
## Test B: WLAN Ersteinrichtung (Setup WebGUI)
|
||||
|
||||
1) Goal
|
||||
- Configure WiFi profile via setup UI and reach WIFI_ONLINE.
|
||||
|
||||
2) Preconditions
|
||||
- No WiFi profiles stored.
|
||||
|
||||
3) Procedure – Simulation / Emulation
|
||||
- Reset WiFi profiles:
|
||||
```
|
||||
curl -X POST http://127.0.0.1:8000/command \
|
||||
-H "Content-Type: application/json" \
|
||||
-d '{"command":"wifi_reset"}'
|
||||
```
|
||||
- Open Setup UI:
|
||||
```
|
||||
http://127.0.0.1:9000/setup
|
||||
```
|
||||
- Choose SSID and enter password, click "Verbinden".
|
||||
- Check status:
|
||||
```
|
||||
curl http://127.0.0.1:8000/status
|
||||
```
|
||||
|
||||
4) Procedure – Real Box (Hardware)
|
||||
- Power on device.
|
||||
- Connect to device AP SSID (not implemented in code).
|
||||
- Open setup page and submit WiFi credentials.
|
||||
|
||||
5) Expected Result
|
||||
- `wifi_state = WIFI_ONLINE`
|
||||
- `connected_ssid` matches selected SSID
|
||||
- `wifi_profiles_count` increments
|
||||
|
||||
6) Deviations / Troubleshooting
|
||||
- Setup UI unreachable: port 9000 occupied or Box not running.
|
||||
- Not testable with current code: AP SSID and real WiFi connect.
|
||||
|
||||
---
|
||||
|
||||
## Test C: Persistenz & Neustart
|
||||
|
||||
1) Goal
|
||||
- Ensure resume state and WiFi profiles persist across restarts.
|
||||
|
||||
2) Preconditions
|
||||
- At least one WiFi profile stored.
|
||||
- Playback started once.
|
||||
|
||||
3) Procedure – Simulation / Emulation
|
||||
- Add WiFi profile (if needed):
|
||||
```
|
||||
curl -X POST http://127.0.0.1:8000/command \
|
||||
-H "Content-Type: application/json" \
|
||||
-d '{"command":"wifi_add_profile","payload":{"ssid":"HomeWiFi","password":"secret","priority":10}}'
|
||||
```
|
||||
- Start playback:
|
||||
```
|
||||
curl -X POST http://127.0.0.1:8000/command \
|
||||
-H "Content-Type: application/json" \
|
||||
-d '{"command":"nfc_on","payload":{"uid":"UID_1"}}'
|
||||
```
|
||||
- Stop playback:
|
||||
```
|
||||
curl -X POST http://127.0.0.1:8000/command \
|
||||
-H "Content-Type: application/json" \
|
||||
-d '{"command":"nfc_off","payload":{"uid":"UID_1"}}'
|
||||
```
|
||||
- Restart Box process.
|
||||
- Check status:
|
||||
```
|
||||
curl http://127.0.0.1:8000/status
|
||||
```
|
||||
|
||||
4) Procedure – Real Box (Hardware)
|
||||
- Start playback via NFC.
|
||||
- Power cycle device.
|
||||
- Verify WiFi profile and resume state persist.
|
||||
|
||||
5) Expected Result
|
||||
- `box/data/state.json` contains `resume`.
|
||||
- `box/data/secrets.enc` exists and contains profiles (encrypted).
|
||||
- After restart, `wifi_state` is not UNCONFIGURED.
|
||||
|
||||
6) Deviations / Troubleshooting
|
||||
- Resume missing: check `box/data/state.json`.
|
||||
- WiFi profiles missing: check `box/data/secrets.enc` creation.
|
||||
|
||||
---
|
||||
|
||||
## Test D: HTTP API Status & Commands
|
||||
|
||||
1) Goal
|
||||
- Verify /status and /command are functional.
|
||||
|
||||
2) Preconditions
|
||||
- Box running.
|
||||
|
||||
3) Procedure – Simulation / Emulation
|
||||
- Status:
|
||||
```
|
||||
curl http://127.0.0.1:8000/status
|
||||
```
|
||||
- Command:
|
||||
```
|
||||
curl -X POST http://127.0.0.1:8000/command \
|
||||
-H "Content-Type: application/json" \
|
||||
-d '{"command":"play_pause"}'
|
||||
```
|
||||
|
||||
4) Procedure – Real Box (Hardware)
|
||||
- Same as above once API is reachable in real network.
|
||||
|
||||
5) Expected Result
|
||||
- HTTP 200 responses.
|
||||
- `/status` fields updated after commands.
|
||||
|
||||
6) Deviations / Troubleshooting
|
||||
- CORS errors: ensure API is running.
|
||||
- 400 errors: check payload requirements.
|
||||
|
||||
---
|
||||
|
||||
## Test E: GUI Steuerung
|
||||
|
||||
1) Goal
|
||||
- Verify GUI can control playback and display status.
|
||||
|
||||
2) Preconditions
|
||||
- Box running on 127.0.0.1:8000.
|
||||
- GUI running on 127.0.0.1:5174.
|
||||
|
||||
3) Procedure – Simulation / Emulation
|
||||
- Open GUI:
|
||||
```
|
||||
http://127.0.0.1:5174
|
||||
```
|
||||
- Click Play / Pause, Next, Prev, Vol +, Vol -.
|
||||
- Click NFC UID_1 ON/OFF.
|
||||
- Watch status refresh (polling every 1s).
|
||||
|
||||
4) Procedure – Real Box (Hardware)
|
||||
- Use GUI from another device pointing to Box IP.
|
||||
|
||||
5) Expected Result
|
||||
- `/status` changes after each button.
|
||||
- GUI shows updated status and last_error if present.
|
||||
|
||||
6) Deviations / Troubleshooting
|
||||
- GUI shows "Failed to fetch": verify VITE_BOX_API_URL.
|
||||
|
||||
---
|
||||
|
||||
## Test F: Playback & NFC
|
||||
|
||||
1) Goal
|
||||
- Verify NFC starts playback from tags.
|
||||
|
||||
2) Preconditions
|
||||
- Tags exist in `box/data/box.json`.
|
||||
- Media exists under `box/data/media`.
|
||||
|
||||
3) Procedure – Simulation / Emulation
|
||||
- Start playback:
|
||||
```
|
||||
curl -X POST http://127.0.0.1:8000/command \
|
||||
-H "Content-Type: application/json" \
|
||||
-d '{"command":"nfc_on","payload":{"uid":"UID_1"}}'
|
||||
```
|
||||
- Observe `/status`:
|
||||
```
|
||||
curl http://127.0.0.1:8000/status
|
||||
```
|
||||
|
||||
4) Procedure – Real Box (Hardware)
|
||||
- Place NFC tag mapped to UID_1.
|
||||
|
||||
5) Expected Result
|
||||
- `playback_state.state = PLAYING`
|
||||
- `active_uid = UID_1`
|
||||
|
||||
6) Deviations / Troubleshooting
|
||||
- No playback: check tags in `box/data/box.json` and files in `box/data/media`.
|
||||
|
||||
---
|
||||
|
||||
## Test G: Resume-Logik
|
||||
|
||||
1) Goal
|
||||
- Resume picks up last file index and position per UID.
|
||||
|
||||
2) Preconditions
|
||||
- Playback started at least once for UID_1.
|
||||
|
||||
3) Procedure – Simulation / Emulation
|
||||
- Start playback, wait ~5s.
|
||||
- Stop with `nfc_off`.
|
||||
- Start again with `nfc_on`.
|
||||
|
||||
4) Procedure – Real Box (Hardware)
|
||||
- Place NFC tag, remove, place again.
|
||||
|
||||
5) Expected Result
|
||||
- Resume uses stored `file_index` and `position`.
|
||||
- `box/data/state.json` contains resume for UID_1.
|
||||
|
||||
6) Deviations / Troubleshooting
|
||||
- Resume resets to 0: check `state.json` and path changes.
|
||||
|
||||
---
|
||||
|
||||
## Test H: Ordner- & Rekursionslogik
|
||||
|
||||
1) Goal
|
||||
- Verify recursive ordering (DFS, folders first, lexicographic).
|
||||
|
||||
2) Preconditions
|
||||
- Nested media structure in `box/data/media`.
|
||||
|
||||
3) Procedure – Simulation / Emulation
|
||||
- Create nested structure in `box/data/media/book_6/CD1/...`.
|
||||
- Point a tag to `media/book_6` in `box/data/box.json`.
|
||||
- Start playback with `nfc_on`.
|
||||
|
||||
4) Procedure – Real Box (Hardware)
|
||||
- Copy nested folders to the device media path.
|
||||
- Start playback via NFC.
|
||||
|
||||
5) Expected Result
|
||||
- Files play in DFS order: subfolders sorted, then files.
|
||||
|
||||
6) Deviations / Troubleshooting
|
||||
- Ordering unexpected: check folder names and lexicographic sort.
|
||||
|
||||
---
|
||||
|
||||
## Test I: Offline Scenarios
|
||||
|
||||
1) Goal
|
||||
- Verify WiFi and Spotify states in offline/online flows.
|
||||
|
||||
2) Preconditions
|
||||
- Box running.
|
||||
|
||||
3) Procedure – Simulation / Emulation
|
||||
- WiFi reset:
|
||||
```
|
||||
curl -X POST http://127.0.0.1:8000/command \
|
||||
-H "Content-Type: application/json" \
|
||||
-d '{"command":"wifi_reset"}'
|
||||
```
|
||||
- Spotify clear:
|
||||
```
|
||||
curl -X POST http://127.0.0.1:8000/command \
|
||||
-H "Content-Type: application/json" \
|
||||
-d '{"command":"spotify_clear"}'
|
||||
```
|
||||
|
||||
4) Procedure – Real Box (Hardware)
|
||||
- Not testable with current code: real network loss and Spotify connectivity.
|
||||
|
||||
5) Expected Result
|
||||
- `wifi_state = WIFI_UNCONFIGURED`
|
||||
- `spotify_status = NOT_CONFIGURED`
|
||||
|
||||
6) Deviations / Troubleshooting
|
||||
- Status unchanged: ensure you read `/status` after command.
|
||||
|
||||
---
|
||||
|
||||
## Test J: Fehlerfälle
|
||||
|
||||
1) Goal
|
||||
- Verify error sound and error reporting.
|
||||
|
||||
2) Preconditions
|
||||
- Box running.
|
||||
|
||||
3) Procedure – Simulation / Emulation
|
||||
- Trigger error:
|
||||
```
|
||||
curl -X POST http://127.0.0.1:8000/command \
|
||||
-H "Content-Type: application/json" \
|
||||
-d '{"command":"trigger_error","payload":{"type":"uid_unmapped"}}'
|
||||
```
|
||||
- Check `/status` for `last_error`.
|
||||
|
||||
4) Procedure – Real Box (Hardware)
|
||||
- Not testable with current code: actual error sound output.
|
||||
|
||||
5) Expected Result
|
||||
- `playback_state.last_error` equals error type.
|
||||
- Box returns to `IDLE` after error.
|
||||
|
||||
6) Deviations / Troubleshooting
|
||||
- No error shown: verify `/status` and that errors are not cleared automatically.
|
||||
@@ -0,0 +1,75 @@
|
||||
# Debugging Guide
|
||||
|
||||
## Purpose
|
||||
Fast diagnosis guide: "If X happens, check Y" with separate paths for Simulation and Real Box.
|
||||
|
||||
## Prerequisites
|
||||
- Box running (simulation or device)
|
||||
- Access to `/status` and data files
|
||||
|
||||
## Step-by-step
|
||||
Use the sections below by symptom.
|
||||
|
||||
## Simulation (IDE)
|
||||
### If GUI shows "Failed to fetch"
|
||||
- Check API is running:
|
||||
```
|
||||
curl http://127.0.0.1:8000/status
|
||||
```
|
||||
- Verify GUI API base:
|
||||
- `VITE_BOX_API_URL` or default `http://localhost:8000`
|
||||
|
||||
### If playback does not start
|
||||
- Check tags:
|
||||
```
|
||||
cat box/data/box.json
|
||||
```
|
||||
- Check media files:
|
||||
```
|
||||
ls -la box/data/media
|
||||
```
|
||||
- Check `/status`:
|
||||
```
|
||||
curl http://127.0.0.1:8000/status
|
||||
```
|
||||
|
||||
### If resume does not persist
|
||||
- Check state file:
|
||||
```
|
||||
cat box/data/state.json
|
||||
```
|
||||
- Ensure playback was stopped via `nfc_off` or end-of-media.
|
||||
|
||||
### If setup UI not reachable
|
||||
- Check port 9000 free.
|
||||
- Ensure Box is running.
|
||||
|
||||
## Real Box (Hardware)
|
||||
### If device not reachable in browser
|
||||
- Ensure it is powered on and connected to the same network.
|
||||
- Check the IP shown by your router.
|
||||
|
||||
### If NFC does nothing
|
||||
- Confirm tag UID exists in `box.json`.
|
||||
- Confirm NFC hardware is working (not implemented in code).
|
||||
|
||||
### If audio is silent
|
||||
- Audio backend is mock in current code.
|
||||
- Not testable with current code.
|
||||
|
||||
## Files to inspect
|
||||
- `box/data/box.json`: identity, tags, settings
|
||||
- `box/data/state.json`: resume and wifi state
|
||||
- `box/data/secrets.enc`: encrypted secrets
|
||||
|
||||
## Status fields to watch
|
||||
- `wifi_state`, `ip_address`, `connected_ssid`
|
||||
- `playback_state.state`, `playback_state.active_uid`
|
||||
- `playback_state.position`, `playback_state.file_index`
|
||||
- `playback_state.last_error`
|
||||
|
||||
## Troubleshooting
|
||||
- 400 from `/command`:
|
||||
- Check required payload fields in `docs/api.md`.
|
||||
- No change after command:
|
||||
- Poll `/status` after sending.
|
||||
Reference in New Issue
Block a user