Skip to content

Commit

Permalink
Add tests for RemoveTeamMemberAPIView
Browse files Browse the repository at this point in the history
  • Loading branch information
Oksamies committed Dec 13, 2023
1 parent 6856b30 commit f12143a
Showing 1 changed file with 64 additions and 0 deletions.
64 changes: 64 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 @@ -182,6 +184,68 @@ def test_team_members_api_view__for_member__sorts_results(
assert result[4]["username"] == erin.username


@pytest.mark.django_db
def test_team_members_remove__when_removing_member__succeeds(
api_client: APIClient,
user: UserType,
team: Team,
):
TeamMemberFactory(team=team, user=user, role="owner")
api_client.force_authenticate(user)
just_a_member = TeamMemberFactory(team=team, role="member")

response = api_client.post(
f"/api/cyberstorm/team/{team.name}/members/remove/",
json.dumps({"username": just_a_member.user.username}),
content_type="application/json",
)

assert response.status_code == 200
response_json = response.json()
assert response_json["team_name"] == team.name
assert response_json["username"] == just_a_member.user.username


@pytest.mark.django_db
def test_team_members_remove__when_removing_member__fails_because_user_is_not_a_member_in_team(
api_client: APIClient,
user: UserType,
team: Team,
):
TeamMemberFactory(team=team, user=user, role="owner")
api_client.force_authenticate(user)
another_team = TeamFactory()
member_in_another_team = TeamMemberFactory(team=another_team, role="owner")

response = api_client.post(
f"/api/cyberstorm/team/{team.name}/members/remove/",
json.dumps({"username": member_in_another_team.user.username}),
content_type="application/json",
)

assert response.status_code == 404
response_json = response.json()
assert response_json["detail"] == "Not found."


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

response = api_client.post(
f"/api/cyberstorm/team/GhostTeam/members/remove/",
json.dumps({"username": user.username}),
content_type="application/json",
)

assert response.status_code == 404
response_json = response.json()
assert response_json["detail"] == "Not found."


@pytest.mark.django_db
def test_team_service_accounts_api_view__for_member__returns_only_service_accounts(
api_client: APIClient,
Expand Down

0 comments on commit f12143a

Please sign in to comment.