Implement comprehensive application flow tests

- Add test_application_flow.py with 22 test cases covering:
  * Setup page functionality and validation
  * Authentication flow and token handling
  * Main application access controls
  * Middleware flow enforcement
  * Integration scenarios
- Fix TestClient redirect following issue in tests
- Update ServerTodo.md and TestsTodo.md to mark completed items
- All application flow features now fully tested (22/22 passing)
This commit is contained in:
2025-10-06 12:53:37 +02:00
parent 3f98dd6ebb
commit 87c4046711
4 changed files with 431 additions and 37 deletions

View File

@@ -9895,3 +9895,21 @@
2025-10-06 12:46:54,539 - src.server.fastapi_app - INFO - Starting AniWorld FastAPI server...
2025-10-06 12:46:54,539 - src.server.fastapi_app - INFO - Anime directory: ./downloads
2025-10-06 12:46:54,539 - src.server.fastapi_app - INFO - Log level: INFO
2025-10-06 12:50:15,612 - src.server.middleware.application_flow_middleware - INFO - Redirecting /app to /setup
2025-10-06 12:50:15,627 - src.server.middleware.application_flow_middleware - INFO - Redirecting / to /login
2025-10-06 12:50:15,628 - httpx - INFO - HTTP Request: GET http://testserver/ "HTTP/1.1 302 Found"
2025-10-06 12:50:15,635 - httpx - INFO - HTTP Request: GET http://testserver/login "HTTP/1.1 200 OK"
2025-10-06 12:50:15,638 - src.server.middleware.application_flow_middleware - INFO - Redirecting /app to /login
2025-10-06 12:50:15,639 - httpx - INFO - HTTP Request: GET http://testserver/app "HTTP/1.1 302 Found"
2025-10-06 12:50:15,644 - httpx - INFO - HTTP Request: GET http://testserver/login "HTTP/1.1 200 OK"
2025-10-06 12:50:34,627 - src.server.fastapi_app - INFO - Shutting down AniWorld FastAPI server...
2025-10-06 12:50:35,567 - src.server.fastapi_app - INFO - Starting AniWorld FastAPI server...
2025-10-06 12:50:35,567 - src.server.fastapi_app - INFO - Anime directory: ./downloads
2025-10-06 12:50:35,567 - src.server.fastapi_app - INFO - Log level: INFO
2025-10-06 12:50:36,619 - src.server.fastapi_app - INFO - Starting AniWorld FastAPI server...
2025-10-06 12:50:36,619 - src.server.fastapi_app - INFO - Anime directory: ./downloads
2025-10-06 12:50:36,619 - src.server.fastapi_app - INFO - Log level: INFO
2025-10-06 12:50:41,135 - src.server.fastapi_app - INFO - Shutting down AniWorld FastAPI server...
2025-10-06 12:50:42,533 - src.server.fastapi_app - INFO - Starting AniWorld FastAPI server...
2025-10-06 12:50:42,533 - src.server.fastapi_app - INFO - Anime directory: ./downloads
2025-10-06 12:50:42,533 - src.server.fastapi_app - INFO - Log level: INFO