Files
wehub-resource-sync 7a0da7932b
Backwards Compatibility / Verify Encryption Constants (push) Waiting to run
Backwards Compatibility / PyPI Version Compatibility (push) Waiting to run
Backwards Compatibility / Database Migration Tests (push) Waiting to run
CodeQL Advanced / Analyze (javascript-typescript) (push) Waiting to run
CodeQL Advanced / Analyze (python) (push) Waiting to run
Docker Tests (Consolidated) / UI Tests (Puppeteer) [research-form] (push) Blocked by required conditions
Docker Tests (Consolidated) / UI Tests (Puppeteer) [research-metrics] (push) Blocked by required conditions
Docker Tests (Consolidated) / UI Tests (Puppeteer) [research-workflow] (push) Blocked by required conditions
Docker Tests (Consolidated) / UI Tests (Puppeteer) [settings-core] (push) Blocked by required conditions
Docker Tests (Consolidated) / UI Tests (Puppeteer) [settings-pages] (push) Blocked by required conditions
Docker Tests (Consolidated) / UI Tests (Puppeteer) [history-news] (push) Blocked by required conditions
Docker Tests (Consolidated) / UI Tests (Puppeteer) [library] (push) Blocked by required conditions
Docker Tests (Consolidated) / UI Tests (Puppeteer) [link-analytics] (push) Blocked by required conditions
Docker Tests (Consolidated) / UI Tests (Puppeteer) [mobile] (push) Blocked by required conditions
Docker Tests (Consolidated) / detect-changes (push) Waiting to run
Docker Tests (Consolidated) / Build Test Image (push) Waiting to run
Docker Tests (Consolidated) / All Pytest Tests + Coverage (push) Blocked by required conditions
Docker Tests (Consolidated) / UI Tests (Puppeteer) [accessibility] (push) Blocked by required conditions
Docker Tests (Consolidated) / UI Tests (Puppeteer) [api-crud] (push) Blocked by required conditions
Docker Tests (Consolidated) / UI Tests (Puppeteer) [auth-login] (push) Blocked by required conditions
Docker Tests (Consolidated) / UI Tests (Puppeteer) [auth-pages] (push) Blocked by required conditions
Docker Tests (Consolidated) / UI Tests (Puppeteer) [auth-register] (push) Blocked by required conditions
Docker Tests (Consolidated) / UI Tests (Puppeteer) [chat-core] (push) Blocked by required conditions
Docker Tests (Consolidated) / UI Tests (Puppeteer) [chat-lifecycle] (push) Blocked by required conditions
Docker Tests (Consolidated) / UI Tests (Puppeteer) [error-benchmark] (push) Blocked by required conditions
Docker Tests (Consolidated) / UI Tests (Puppeteer) (push) Blocked by required conditions
Docker Tests (Consolidated) / Accessibility Tests (push) Blocked by required conditions
Docker Tests (Consolidated) / LLM Unit Tests (push) Blocked by required conditions
Docker Tests (Consolidated) / LLM Example Tests (push) Blocked by required conditions
Docker Tests (Consolidated) / Production Image Smoke Test (push) Blocked by required conditions
Docker Tests (Consolidated) / Infrastructure Tests (push) Blocked by required conditions
OSSF Scorecard / OSSF Security Scorecard Analysis (push) Waiting to run
OSV-Scanner (Scheduled) / scan-scheduled (push) Failing after 0s
Create Release / test-gate (push) Has been cancelled
Create Release / release-gate (push) Has been cancelled
Create Release / ci-gate (push) Has been cancelled
Create Release / version-check (push) Has been cancelled
Create Release / e2e-test-gate (push) Has been cancelled
Create Release / responsive-test-gate (push) Has been cancelled
Create Release / compat-test-gate (push) Has been cancelled
Create Release / compose-integration-gate (push) Has been cancelled
Create Release / vulture-gate (push) Has been cancelled
Create Release / build (push) Has been cancelled
Create Release / provenance (push) Has been cancelled
Create Release / prerelease-docker (push) Has been cancelled
Create Release / publish-docker (push) Has been cancelled
Create Release / create-release (push) Has been cancelled
Create Release / cleanup-changelog (push) Has been cancelled
Create Release / trigger-pypi (push) Has been cancelled
Create Release / monitor-pypi (push) Has been cancelled
Create Release / Clean up orphan prerelease tags and signatures (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 13:08:55 +08:00

149 lines
5.4 KiB
Python

"""Test session persistence after login."""
import json
import time
from loguru import logger
class TestSessionPersistence:
"""Test session persistence functionality."""
def test_session_after_login(self, client):
"""Test that session persists after login."""
# Create unique test username to avoid conflicts
# audit: PUNCHLIST reviewed 2026-05 — issue resolved by prior PR (recommendation: REFACTOR_SPLIT).
test_username = f"testuser_session_{int(time.time() * 1000)}"
test_password = "TestPass123"
# Get login page
response = client.get("/auth/login")
assert response.status_code == 200
logger.info(f"GET /auth/login -> {response.status_code}")
# Register/Login
response = client.post(
"/auth/register",
data={
"username": test_username,
"password": test_password,
"confirm_password": test_password,
"acknowledge": "true",
},
follow_redirects=False,
)
# Login
response = client.post(
"/auth/login",
data={
"username": test_username,
"password": test_password,
},
follow_redirects=False,
)
logger.info(f"POST /auth/login -> {response.status_code}")
# Check if we're logged in by verifying successful redirect
assert (
response.status_code == 302
) # Should redirect after successful login
# Access home page
response = client.get("/", follow_redirects=False)
logger.info(f"GET / -> {response.status_code}")
# Should not redirect to login
if response.status_code == 302:
location = response.headers.get("Location", "")
assert "/auth/login" not in location, (
"Session was lost! Redirected back to login"
)
else:
assert response.status_code == 200
# Check if we're actually logged in
assert (
b"logout" in response.data.lower()
or b"dashboard" in response.data.lower()
)
logger.info("✅ Successfully logged in and session preserved!")
def test_auth_check_persistence(self, authenticated_client):
"""Test auth check endpoint with persistent session."""
response = authenticated_client.get("/auth/check")
assert response.status_code == 200
logger.info(f"GET /auth/check -> {response.status_code}")
data = json.loads(response.data)
logger.info(f"Auth check data: {data}")
assert data.get("authenticated") is True
assert "username" in data
logger.info(f"✅ Authenticated as: {data.get('username')}")
def test_api_access_persistence(self, authenticated_client):
"""Test API access with persistent session."""
response = authenticated_client.get("/settings/api")
assert response.status_code == 200
logger.info(f"GET /settings/api -> {response.status_code}")
logger.info("✅ API access works!")
data = json.loads(response.data)
assert data["status"] == "success"
assert "settings" in data
def test_multiple_requests_session(self, authenticated_client):
"""Test that session persists across multiple requests."""
endpoints = [
"/auth/check",
"/settings/api",
"/history/api",
"/metrics/api/metrics",
]
for endpoint in endpoints:
response = authenticated_client.get(endpoint)
assert response.status_code == 200
logger.info(f"✅ {endpoint} -> {response.status_code}")
def test_session_after_page_navigation(self, authenticated_client):
"""Test session persists through page navigation."""
pages = ["/", "/history", "/settings", "/metrics/"]
for page in pages:
response = authenticated_client.get(page)
assert response.status_code == 200
# Should not redirect to login
assert b"login" not in response.request.url.encode()
logger.info(f"✅ Successfully accessed {page}")
def test_session_integrity_check(self, authenticated_client):
"""Test session integrity check endpoint."""
response = authenticated_client.get("/auth/integrity-check")
assert response.status_code == 200
data = json.loads(response.data)
assert "integrity" in data
assert "username" in data
logger.info(
f"✅ Session integrity verified for user: {data['username']}"
)
def test_logout_clears_session(self, authenticated_client):
"""Test that logout properly clears the session."""
# First verify we're logged in
response = authenticated_client.get("/auth/check")
data = json.loads(response.data)
assert data["authenticated"] is True
# Logout
response = authenticated_client.post(
"/auth/logout", follow_redirects=True
)
assert response.status_code == 200
# Try to access protected endpoint
response = authenticated_client.get("/settings/api")
# Should either get 401 or redirect to login
assert response.status_code in [401, 302]
logger.info("✅ Session properly cleared after logout")