mirror of
https://github.com/evroon/bracket.git
synced 2026-07-31 10:16:46 -04:00
83 lines
2.9 KiB
Python
83 lines
2.9 KiB
Python
import pytest
|
|
|
|
from bracket.models.db.user_x_club import UserXClubInsertable, UserXClubRelation
|
|
from bracket.sql.clubs import get_clubs_for_user_id, sql_delete_club
|
|
from bracket.utils.dummy_records import DUMMY_CLUB, DUMMY_MOCK_TIME
|
|
from bracket.utils.http import HTTPMethod
|
|
from tests.integration_tests.api.shared import send_auth_request
|
|
from tests.integration_tests.models import AuthContext
|
|
from tests.integration_tests.sql import inserted_club, inserted_user_x_club
|
|
|
|
|
|
@pytest.mark.asyncio(loop_scope="session")
|
|
async def test_clubs_endpoint(
|
|
startup_and_shutdown_uvicorn_server: None, auth_context: AuthContext
|
|
) -> None:
|
|
assert await send_auth_request(HTTPMethod.GET, "clubs", auth_context, {}) == {
|
|
"data": [
|
|
{
|
|
"created": DUMMY_MOCK_TIME.isoformat().replace("+00:00", "Z"),
|
|
"id": auth_context.club.id,
|
|
"name": "Some Cool Club",
|
|
}
|
|
],
|
|
}
|
|
|
|
|
|
@pytest.mark.asyncio(loop_scope="session")
|
|
async def test_create_club(
|
|
startup_and_shutdown_uvicorn_server: None, auth_context: AuthContext
|
|
) -> None:
|
|
payload = {"name": "Some Cool Club"}
|
|
response = await send_auth_request(HTTPMethod.POST, "clubs", auth_context, json=payload)
|
|
|
|
clubs = await get_clubs_for_user_id(auth_context.user.id)
|
|
club_id = response["data"]["id"]
|
|
|
|
await sql_delete_club(club_id)
|
|
|
|
assert len(clubs) == 2
|
|
assert response["data"]["name"] == payload["name"]
|
|
|
|
|
|
@pytest.mark.asyncio(loop_scope="session")
|
|
async def test_update_club(
|
|
startup_and_shutdown_uvicorn_server: None, auth_context: AuthContext
|
|
) -> None:
|
|
payload = {"name": "Some Cool Club"}
|
|
async with inserted_club(DUMMY_CLUB) as club_inserted:
|
|
async with inserted_user_x_club(
|
|
UserXClubInsertable(
|
|
user_id=auth_context.user.id,
|
|
club_id=club_inserted.id,
|
|
relation=UserXClubRelation.OWNER,
|
|
)
|
|
):
|
|
response = await send_auth_request(
|
|
HTTPMethod.PUT, f"clubs/{club_inserted.id}", auth_context, json=payload
|
|
)
|
|
|
|
clubs = await get_clubs_for_user_id(auth_context.user.id)
|
|
await sql_delete_club(response["data"]["id"])
|
|
|
|
assert len(clubs) == 1
|
|
assert response["data"]["name"] == payload["name"]
|
|
|
|
|
|
@pytest.mark.asyncio(loop_scope="session")
|
|
async def test_delete_club(
|
|
startup_and_shutdown_uvicorn_server: None, auth_context: AuthContext
|
|
) -> None:
|
|
async with inserted_club(DUMMY_CLUB) as club_inserted:
|
|
async with inserted_user_x_club(
|
|
UserXClubInsertable(
|
|
user_id=auth_context.user.id,
|
|
club_id=club_inserted.id,
|
|
relation=UserXClubRelation.OWNER,
|
|
)
|
|
):
|
|
response = await send_auth_request(
|
|
HTTPMethod.DELETE, f"clubs/{club_inserted.id}", auth_context
|
|
)
|
|
assert response["success"] is True
|