mirror of
https://github.com/grillazz/fastapi-sqlalchemy-asyncpg.git
synced 2025-08-26 16:40:40 +03:00
53 lines
1.7 KiB
Python
53 lines
1.7 KiB
Python
import pytest
|
|
from httpx import AsyncClient
|
|
from starlette import status
|
|
import jwt
|
|
from inline_snapshot import snapshot
|
|
from dirty_equals import IsStr, IsUUID, IsPositiveFloat
|
|
|
|
pytestmark = pytest.mark.anyio
|
|
|
|
|
|
# TODO: parametrize test with diff urls
|
|
async def test_add_user(client: AsyncClient):
|
|
payload = {
|
|
"email": "joe@grillazz.com",
|
|
"first_name": "Joe",
|
|
"last_name": "Garcia",
|
|
"password": "s1lly",
|
|
}
|
|
response = await client.post("/user/", json=payload)
|
|
assert response.status_code == status.HTTP_201_CREATED
|
|
assert response.json() == snapshot(
|
|
{
|
|
"id": IsUUID(4),
|
|
"email": "joe@grillazz.com",
|
|
"first_name": "Joe",
|
|
"last_name": "Garcia",
|
|
"access_token": IsStr(),
|
|
}
|
|
)
|
|
|
|
claimset = jwt.decode(
|
|
response.json()["access_token"], options={"verify_signature": False}
|
|
)
|
|
assert claimset["expiry"] == IsPositiveFloat()
|
|
assert claimset["platform"] == "python-httpx/0.27.2"
|
|
|
|
|
|
# TODO: parametrize test with diff urls including 404 and 401
|
|
async def test_get_token(client: AsyncClient):
|
|
payload = {"email": "joe@grillazz.com", "password": "s1lly"}
|
|
response = await client.post("/user/token", json=payload)
|
|
assert response.status_code == status.HTTP_201_CREATED
|
|
claimset = jwt.decode(
|
|
response.json()["access_token"], options={"verify_signature": False}
|
|
)
|
|
assert claimset["email"] == payload["email"]
|
|
assert claimset["expiry"] == IsPositiveFloat()
|
|
assert claimset["platform"] == "python-httpx/0.27.2"
|
|
|
|
|
|
# TODO: baerer token test
|
|
# TODO: > get token > test endpoint auth with token > expire token on redis > test endpoint auth with token
|