Skip to content

Commit

Permalink
Add tests for TeamCreateAPIView
Browse files Browse the repository at this point in the history
  • Loading branch information
Oksamies committed Dec 12, 2023
1 parent f078a48 commit 525bf78
Showing 1 changed file with 44 additions and 0 deletions.
44 changes: 44 additions & 0 deletions django/thunderstore/api/cyberstorm/tests/test_team.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import json

import pytest
from django.contrib.auth import get_user_model
from rest_framework.test import APIClient
Expand Down Expand Up @@ -223,3 +225,45 @@ def test_team_service_accounts_api_view__for_member__sorts_results(
assert result[0]["name"] == alice.first_name
assert result[1]["name"] == bob.first_name
assert result[2]["name"] == charlie.first_name


@pytest.mark.django_db
def test_team_create__when_creating_a_team__succeeds(
api_client: APIClient,
user: UserType,
):
api_client.force_authenticate(user)

response = api_client.post(
"/api/cyberstorm/teams/create/",
json.dumps({"name": "CoolestTeamNameEver"}),
content_type="application/json",
)

assert response.status_code == 200
response_json = response.json()
assert response_json["name"] == "CoolestTeamNameEver"
assert len(
Team.objects.get(name="CoolestTeamNameEver").members.filter(
user__username=user.username
)
)


@pytest.mark.django_db
def test_team_create__when_creating_a_team__fails_because_team_with_provided_name_exists(
api_client: APIClient,
user: UserType,
team: Team,
):
api_client.force_authenticate(user)

response = api_client.post(
"/api/cyberstorm/teams/create/",
json.dumps({"name": team.name}),
content_type="application/json",
)

assert response.status_code == 400
response_json = response.json()
assert "A team with the provided name already exists" in response_json["name"]

0 comments on commit 525bf78

Please sign in to comment.