mirror of
https://github.com/RYDE-WORK/full-stack-fastapi-template.git
synced 2026-01-19 13:13:25 +08:00
28 lines
775 B
Python
28 lines
775 B
Python
from fastapi.testclient import TestClient
|
|
|
|
from app.core.config import settings
|
|
|
|
|
|
def test_get_access_token(client: TestClient) -> None:
|
|
login_data = {
|
|
"username": settings.FIRST_SUPERUSER,
|
|
"password": settings.FIRST_SUPERUSER_PASSWORD,
|
|
}
|
|
r = client.post(f"{settings.API_V1_STR}/login/access-token", data=login_data)
|
|
tokens = r.json()
|
|
assert r.status_code == 200
|
|
assert "access_token" in tokens
|
|
assert tokens["access_token"]
|
|
|
|
|
|
def test_use_access_token(
|
|
client: TestClient, superuser_token_headers: dict[str, str]
|
|
) -> None:
|
|
r = client.post(
|
|
f"{settings.API_V1_STR}/login/test-token",
|
|
headers=superuser_token_headers,
|
|
)
|
|
result = r.json()
|
|
assert r.status_code == 200
|
|
assert "email" in result
|