2022-06-03 08:09:47 -06:00
|
|
|
import pytest
|
|
|
|
|
from django.urls import reverse
|
|
|
|
|
from rest_framework import status
|
|
|
|
|
from rest_framework.test import APIClient
|
|
|
|
|
|
2022-11-29 09:41:56 +01:00
|
|
|
from apps.api.permissions import LegacyAccessControlRole
|
2022-06-03 08:09:47 -06:00
|
|
|
from apps.auth_token.models import ScheduleExportAuthToken
|
|
|
|
|
from apps.schedules.models import OnCallScheduleICal
|
|
|
|
|
|
|
|
|
|
ICAL_URL = "https://calendar.google.com/calendar/ical/amixr.io_37gttuakhrtr75ano72p69rt78%40group.calendar.google.com/private-1d00a680ba5be7426c3eb3ef1616e26d/basic.ics" # noqa
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.django_db
|
|
|
|
|
@pytest.mark.parametrize(
|
|
|
|
|
"role,expected_status",
|
|
|
|
|
[
|
2022-11-29 09:41:56 +01:00
|
|
|
(LegacyAccessControlRole.ADMIN, status.HTTP_200_OK),
|
|
|
|
|
(LegacyAccessControlRole.EDITOR, status.HTTP_200_OK),
|
|
|
|
|
(LegacyAccessControlRole.VIEWER, status.HTTP_403_FORBIDDEN),
|
2022-06-03 08:09:47 -06:00
|
|
|
],
|
|
|
|
|
)
|
|
|
|
|
def test_get_schedule_export_token(
|
|
|
|
|
make_organization_and_user_with_plugin_token,
|
|
|
|
|
make_user_auth_headers,
|
|
|
|
|
make_schedule,
|
|
|
|
|
role,
|
|
|
|
|
expected_status,
|
|
|
|
|
):
|
2022-11-29 09:41:56 +01:00
|
|
|
organization, user, token = make_organization_and_user_with_plugin_token(role)
|
2022-06-03 08:09:47 -06:00
|
|
|
schedule = make_schedule(
|
|
|
|
|
organization,
|
|
|
|
|
schedule_class=OnCallScheduleICal,
|
|
|
|
|
name="test_ical_schedule",
|
|
|
|
|
ical_url_primary=ICAL_URL,
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
ScheduleExportAuthToken.create_auth_token(user=user, organization=organization, schedule=schedule)
|
|
|
|
|
|
|
|
|
|
client = APIClient()
|
|
|
|
|
|
|
|
|
|
url = reverse("api-internal:schedule-export-token", kwargs={"pk": schedule.public_primary_key})
|
|
|
|
|
|
|
|
|
|
response = client.get(url, format="json", **make_user_auth_headers(user, token))
|
|
|
|
|
|
|
|
|
|
assert response.status_code == expected_status
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.django_db
|
|
|
|
|
@pytest.mark.parametrize(
|
|
|
|
|
"role,expected_status",
|
|
|
|
|
[
|
2022-11-29 09:41:56 +01:00
|
|
|
(LegacyAccessControlRole.ADMIN, status.HTTP_404_NOT_FOUND),
|
|
|
|
|
(LegacyAccessControlRole.EDITOR, status.HTTP_404_NOT_FOUND),
|
|
|
|
|
(LegacyAccessControlRole.VIEWER, status.HTTP_403_FORBIDDEN),
|
2022-06-03 08:09:47 -06:00
|
|
|
],
|
|
|
|
|
)
|
|
|
|
|
def test_schedule_export_token_not_found(
|
|
|
|
|
make_organization_and_user_with_plugin_token,
|
|
|
|
|
make_user_auth_headers,
|
|
|
|
|
make_schedule,
|
|
|
|
|
role,
|
|
|
|
|
expected_status,
|
|
|
|
|
):
|
2022-11-29 09:41:56 +01:00
|
|
|
organization, user, token = make_organization_and_user_with_plugin_token(role)
|
2022-06-03 08:09:47 -06:00
|
|
|
schedule = make_schedule(
|
|
|
|
|
organization,
|
|
|
|
|
schedule_class=OnCallScheduleICal,
|
|
|
|
|
name="test_ical_schedule",
|
|
|
|
|
ical_url_primary=ICAL_URL,
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
url = reverse("api-internal:schedule-export-token", kwargs={"pk": schedule.public_primary_key})
|
|
|
|
|
|
|
|
|
|
client = APIClient()
|
|
|
|
|
|
|
|
|
|
response = client.get(url, format="json", **make_user_auth_headers(user, token))
|
|
|
|
|
|
|
|
|
|
assert response.status_code == expected_status
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.django_db
|
|
|
|
|
@pytest.mark.parametrize(
|
|
|
|
|
"role,expected_status",
|
|
|
|
|
[
|
2022-11-29 09:41:56 +01:00
|
|
|
(LegacyAccessControlRole.ADMIN, status.HTTP_201_CREATED),
|
|
|
|
|
(LegacyAccessControlRole.EDITOR, status.HTTP_201_CREATED),
|
|
|
|
|
(LegacyAccessControlRole.VIEWER, status.HTTP_403_FORBIDDEN),
|
2022-06-03 08:09:47 -06:00
|
|
|
],
|
|
|
|
|
)
|
|
|
|
|
def test_schedule_create_export_token(
|
|
|
|
|
make_organization_and_user_with_plugin_token,
|
|
|
|
|
make_user_auth_headers,
|
|
|
|
|
make_schedule,
|
|
|
|
|
role,
|
|
|
|
|
expected_status,
|
|
|
|
|
):
|
2022-11-29 09:41:56 +01:00
|
|
|
organization, user, token = make_organization_and_user_with_plugin_token(role)
|
2022-06-03 08:09:47 -06:00
|
|
|
schedule = make_schedule(
|
|
|
|
|
organization,
|
|
|
|
|
schedule_class=OnCallScheduleICal,
|
|
|
|
|
name="test_ical_schedule",
|
|
|
|
|
ical_url_primary=ICAL_URL,
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
url = reverse("api-internal:schedule-export-token", kwargs={"pk": schedule.public_primary_key})
|
|
|
|
|
|
|
|
|
|
client = APIClient()
|
|
|
|
|
|
|
|
|
|
response = client.post(url, format="json", **make_user_auth_headers(user, token))
|
|
|
|
|
|
|
|
|
|
assert expected_status == response.status_code
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.django_db
|
|
|
|
|
@pytest.mark.parametrize(
|
|
|
|
|
"role,expected_status",
|
|
|
|
|
[
|
2022-11-29 09:41:56 +01:00
|
|
|
(LegacyAccessControlRole.ADMIN, status.HTTP_204_NO_CONTENT),
|
|
|
|
|
(LegacyAccessControlRole.EDITOR, status.HTTP_204_NO_CONTENT),
|
|
|
|
|
(LegacyAccessControlRole.VIEWER, status.HTTP_403_FORBIDDEN),
|
2022-06-03 08:09:47 -06:00
|
|
|
],
|
|
|
|
|
)
|
|
|
|
|
def test_schedule_delete_export_token(
|
|
|
|
|
make_organization_and_user_with_plugin_token,
|
|
|
|
|
make_user_auth_headers,
|
|
|
|
|
make_schedule,
|
|
|
|
|
role,
|
|
|
|
|
expected_status,
|
|
|
|
|
):
|
2022-11-29 09:41:56 +01:00
|
|
|
organization, user, token = make_organization_and_user_with_plugin_token(role)
|
2022-06-03 08:09:47 -06:00
|
|
|
schedule = make_schedule(
|
|
|
|
|
organization,
|
|
|
|
|
schedule_class=OnCallScheduleICal,
|
|
|
|
|
name="test_ical_schedule",
|
|
|
|
|
ical_url_primary=ICAL_URL,
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
instance, _ = ScheduleExportAuthToken.create_auth_token(user=user, organization=organization, schedule=schedule)
|
|
|
|
|
|
|
|
|
|
url = reverse("api-internal:schedule-export-token", kwargs={"pk": schedule.public_primary_key})
|
|
|
|
|
|
|
|
|
|
client = APIClient()
|
|
|
|
|
|
|
|
|
|
response = client.delete(url, format="json", **make_user_auth_headers(user, token))
|
|
|
|
|
|
|
|
|
|
assert expected_status == response.status_code
|
|
|
|
|
|
|
|
|
|
if response.status_code != 403:
|
|
|
|
|
check_token = ScheduleExportAuthToken.objects.filter(id=instance.id)
|
|
|
|
|
|
|
|
|
|
assert len(check_token) == 0
|