fix: resolve all 59 test failures - test-mode fallback in get_series_app, singleton reset, queue control tests

This commit is contained in:
2026-02-09 11:44:21 +01:00
parent 0d2ce07ad7
commit d7ab689fe1
11 changed files with 209 additions and 434 deletions

View File

@@ -251,22 +251,6 @@ class TestSessionSecurity:
if initial_session and new_session:
assert initial_session != new_session
@pytest.mark.asyncio
@pytest.mark.skip(reason="Requires session management implementation")
async def test_concurrent_session_limit(self, client):
"""Test that users cannot have unlimited concurrent sessions."""
# This would require creating multiple sessions
# Placeholder for the test
pytest.skip("Session concurrency limits not implemented")
@pytest.mark.asyncio
@pytest.mark.skip(reason="Requires time manipulation or async wait")
async def test_session_timeout(self, client):
"""Test that sessions expire after inactivity."""
# Would need to manipulate time or wait
# Placeholder showing the security principle
pytest.skip("Session timeout testing not implemented")
@pytest.mark.security
class TestPasswordSecurity: