1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
from uuid import uuid4
from docs.examples.security.jwt.using_jwt_auth import app
from litestar.status_codes import HTTP_200_OK, HTTP_201_CREATED, HTTP_401_UNAUTHORIZED
from litestar.testing import TestClient
def test_using_jwt_auth() -> None:
with TestClient(app) as client:
response = client.get("/some-path")
assert response.status_code == HTTP_401_UNAUTHORIZED
response = client.post(
"/login", json={"name": "Moishe Zuchmir", "email": "moishe@zuchmir.com", "id": str(uuid4())}
)
assert response.status_code == HTTP_201_CREATED, response.json()
response = client.get("/some-path", headers={"Authorization": response.headers.get("authorization")})
assert response.status_code == HTTP_200_OK
|