docs: Update documentation for auto-update system and integration tests

This commit is contained in:
claudi 2026-01-30 08:43:52 +01:00
parent f701247fab
commit c1133ae8e9
9 changed files with 105 additions and 57 deletions

View file

@ -64,11 +64,21 @@ src/webdrop_bridge/
└── __init__.py Utils module initialization
```
## Source Files
- src/webdrop_bridge/main.py
- src/webdrop_bridge/config.py
- src/webdrop_bridge/core/validator.py
- src/webdrop_bridge/core/drag_interceptor.py
- src/webdrop_bridge/core/updater.py
- src/webdrop_bridge/ui/main_window.py
Structure ready for implementation:
- `src/webdrop_bridge/main.py` (to implement)
- `src/webdrop_bridge/config.py` (to implement)
- `src/webdrop_bridge/core/validator.py` (to implement)
- `src/webdrop_bridge/core/drag_interceptor.py` (to implement)
- `src/webdrop_bridge/core/updater.py` (to implement)
- `src/webdrop_bridge/ui/main_window.py` (to implement)
- `src/webdrop_bridge/utils/logging.py` (to implement)
@ -89,6 +99,14 @@ tests/
└── (ready for test data)
```
## Tests
- tests/unit/test_validator.py
- tests/unit/test_drag_interceptor.py
- tests/integration/test_drag_workflow.py
- tests/integration/test_end_to_end.py
- tests/integration/test_update_flow.py
---
## Build & Automation Files (5)