File size: 7,061 Bytes
0588f31 48bf559 0588f31 48bf559 0588f31 48bf559 0588f31 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 | """Route-level tests for /api/auth — register, login, refresh, me, logout, RBAC."""
from __future__ import annotations
def test_register_patient_creates_user_and_returns_tokens(client):
resp = client.post(
"/api/auth/register",
json={
"email": "newbie@test.local",
"password": "SecurePass123",
"full_name": "New Patient",
"role": "patient",
},
)
assert resp.status_code == 200, resp.text
data = resp.json()
assert data["access_token"]
assert "refresh_token" not in data
assert data["user"]["email"] == "newbie@test.local"
assert data["user"]["role"] == "patient"
# Patients don't receive a clinician_code
assert data["user"]["clinician_code"] is None
def test_register_clinician_gets_invite_code(client):
resp = client.post(
"/api/auth/register",
json={
"email": "doctor@test.local",
"password": "SecurePass123",
"full_name": "Dr. New",
"role": "clinician",
},
)
assert resp.status_code == 200
code = resp.json()["user"]["clinician_code"]
assert code and len(code) == 6
def test_register_rejects_duplicate_email(client, patient_user):
resp = client.post(
"/api/auth/register",
json={
"email": patient_user.email,
"password": "SecurePass123",
"full_name": "Duplicate",
"role": "patient",
},
)
assert resp.status_code == 409
def test_register_rejects_short_password(client):
resp = client.post(
"/api/auth/register",
json={
"email": "short@test.local",
"password": "abc",
"full_name": "Short Pass",
"role": "patient",
},
)
# Pydantic min_length validation fires before the 400 from the service
assert resp.status_code in (400, 422)
def test_register_rejects_invalid_role(client):
resp = client.post(
"/api/auth/register",
json={
"email": "wrongrole@test.local",
"password": "SecurePass123",
"full_name": "Wrong Role",
"role": "hacker",
},
)
assert resp.status_code in (400, 422)
def test_login_happy_path(client, patient_user):
resp = client.post(
"/api/auth/login",
json={"email": patient_user.email, "password": "test-password-123"},
)
assert resp.status_code == 200
data = resp.json()
assert data["access_token"]
assert data["user"]["id"] == patient_user.id
def test_login_wrong_password_returns_401(client, patient_user):
resp = client.post(
"/api/auth/login",
json={"email": patient_user.email, "password": "wrong-password"},
)
assert resp.status_code == 401
def test_login_unknown_email_returns_401(client):
resp = client.post(
"/api/auth/login",
json={"email": "ghost@test.local", "password": "whatever123"},
)
assert resp.status_code == 401
def test_me_requires_auth(client):
resp = client.get("/api/auth/me")
assert resp.status_code == 401
def test_me_returns_profile_for_valid_token(client, patient_user, patient_headers):
resp = client.get("/api/auth/me", headers=patient_headers)
assert resp.status_code == 200
assert resp.json()["id"] == patient_user.id
assert resp.json()["role"] == "patient"
def test_me_rejects_refresh_token_as_access(client, patient_user):
"""A refresh token shouldn't be accepted on authenticated routes."""
from app.core.config import get_settings
from app.services.auth import create_refresh_token
refresh = create_refresh_token(patient_user.id, get_settings())
resp = client.get("/api/auth/me", headers={"Authorization": f"Bearer {refresh}"})
assert resp.status_code == 401
def test_refresh_rotates_tokens(client, patient_user):
login = client.post(
"/api/auth/login",
json={"email": patient_user.email, "password": "test-password-123"},
)
assert login.status_code == 200
resp = client.post("/api/auth/refresh")
assert resp.status_code == 200
new_access = resp.json()["access_token"]
assert new_access
ok = client.get("/api/auth/me", headers={"Authorization": f"Bearer {new_access}"})
assert ok.status_code == 200
def test_refresh_rejects_tampered_cookie(client):
"""A garbage cookie value should 401."""
client.cookies.set("refresh_token", "not-a-real-jwt", domain="testserver", path="/api/auth")
resp = client.post("/api/auth/refresh")
assert resp.status_code == 401
def test_logout_records_audit_event(client, patient_user, patient_headers, db):
from app.models.db import AuditLog
resp = client.post("/api/auth/logout", headers=patient_headers)
assert resp.status_code == 200
# Verify an audit row was written
entries = (
db.query(AuditLog)
.filter(
AuditLog.user_id == patient_user.id,
AuditLog.action == "logout",
)
.all()
)
assert len(entries) == 1
def test_patient_cannot_register_with_invalid_clinician_code(client):
resp = client.post(
"/api/auth/register",
json={
"email": "orphan@test.local",
"password": "SecurePass123",
"full_name": "Orphan",
"role": "patient",
"clinician_code": "NOTREAL",
},
)
assert resp.status_code == 404
def test_patient_register_links_to_clinician_via_code(client, clinician_user):
resp = client.post(
"/api/auth/register",
json={
"email": "linked@test.local",
"password": "SecurePass123",
"full_name": "Linked Patient",
"role": "patient",
"clinician_code": clinician_user.clinician_code,
},
)
assert resp.status_code == 200
# The new patient should be linked — verify via /me after login
login = client.post(
"/api/auth/login",
json={"email": "linked@test.local", "password": "SecurePass123"},
)
token = login.json()["access_token"]
# Patient's clinician link isn't exposed on /me; check the DB directly
from app.core.config import get_settings
from app.models.db import User
from app.services.auth import decode_token
payload = decode_token(token, get_settings())
user_id = payload["sub"]
# Need a session to query — use the app's override
# (we don't have direct access to the `db` fixture session here since
# this test commits via the HTTP path)
# Pull the user back via a fresh session on the same engine
from app.models.db import get_db
from tests.conftest import _make_user # noqa: F401 — just to keep import path stable
db_session = next(client.app.dependency_overrides[get_db]())
try:
created = db_session.query(User).filter(User.id == user_id).first()
assert created is not None
assert created.clinician_id == clinician_user.id
finally:
db_session.close()
|