mirror of
https://github.com/evroon/bracket.git
synced 2026-05-01 20:43:03 -04:00
89 lines
3.3 KiB
Python
89 lines
3.3 KiB
Python
from bracket.database import database
|
|
from bracket.models.db.team import Team
|
|
from bracket.schema import teams
|
|
from bracket.utils.db import fetch_one_parsed_certain
|
|
from bracket.utils.dummy_records import DUMMY_MOCK_TIME, DUMMY_TEAM1
|
|
from bracket.utils.http import HTTPMethod
|
|
from tests.integration_tests.api.shared import SUCCESS_RESPONSE, send_tournament_request
|
|
from tests.integration_tests.models import AuthContext
|
|
from tests.integration_tests.sql import assert_row_count_and_clear, inserted_team
|
|
|
|
|
|
async def test_teams_endpoint(
|
|
startup_and_shutdown_uvicorn_server: None, auth_context: AuthContext
|
|
) -> None:
|
|
async with inserted_team(
|
|
DUMMY_TEAM1.copy(update={'tournament_id': auth_context.tournament.id})
|
|
) as team_inserted:
|
|
assert await send_tournament_request(HTTPMethod.GET, 'teams', auth_context, {}) == {
|
|
'data': [
|
|
{
|
|
'active': True,
|
|
'created': DUMMY_MOCK_TIME.isoformat(),
|
|
'id': team_inserted.id,
|
|
'name': 'Team 1',
|
|
'players': [],
|
|
'tournament_id': team_inserted.tournament_id,
|
|
'elo_score': 1200.0,
|
|
'swiss_score': 0.0,
|
|
'wins': 0,
|
|
'draws': 0,
|
|
'losses': 0,
|
|
}
|
|
],
|
|
}
|
|
|
|
|
|
async def test_create_team(
|
|
startup_and_shutdown_uvicorn_server: None, auth_context: AuthContext
|
|
) -> None:
|
|
body = {'name': 'Some new name', 'active': True, 'player_ids': []}
|
|
response = await send_tournament_request(HTTPMethod.POST, 'teams', auth_context, None, body)
|
|
assert response['data']['name'] == body['name']
|
|
await assert_row_count_and_clear(teams, 1)
|
|
|
|
|
|
async def test_create_teams(
|
|
startup_and_shutdown_uvicorn_server: None, auth_context: AuthContext
|
|
) -> None:
|
|
body = {'names': 'Team -1\nTeam -2', 'active': True}
|
|
response = await send_tournament_request(
|
|
HTTPMethod.POST, 'teams_multi', auth_context, None, body
|
|
)
|
|
assert response['success'] is True
|
|
await assert_row_count_and_clear(teams, 2)
|
|
|
|
|
|
async def test_delete_team(
|
|
startup_and_shutdown_uvicorn_server: None, auth_context: AuthContext
|
|
) -> None:
|
|
async with inserted_team(
|
|
DUMMY_TEAM1.copy(update={'tournament_id': auth_context.tournament.id})
|
|
) as team_inserted:
|
|
assert (
|
|
await send_tournament_request(
|
|
HTTPMethod.DELETE, f'teams/{team_inserted.id}', auth_context, {}
|
|
)
|
|
== SUCCESS_RESPONSE
|
|
)
|
|
await assert_row_count_and_clear(teams, 0)
|
|
|
|
|
|
async def test_update_team(
|
|
startup_and_shutdown_uvicorn_server: None, auth_context: AuthContext
|
|
) -> None:
|
|
body = {'name': 'Some new name', 'active': True, 'player_ids': []}
|
|
async with inserted_team(
|
|
DUMMY_TEAM1.copy(update={'tournament_id': auth_context.tournament.id})
|
|
) as team_inserted:
|
|
response = await send_tournament_request(
|
|
HTTPMethod.PUT, f'teams/{team_inserted.id}', auth_context, None, body
|
|
)
|
|
updated_team = await fetch_one_parsed_certain(
|
|
database, Team, query=teams.select().where(teams.c.id == team_inserted.id)
|
|
)
|
|
assert updated_team.name == body['name']
|
|
assert response['data']['name'] == body['name']
|
|
|
|
await assert_row_count_and_clear(teams, 1)
|