112 lines
3.0 KiB
Python
112 lines
3.0 KiB
Python
# -*- coding: utf-8 -*-
|
|
# type: ignore
|
|
from __future__ import annotations
|
|
|
|
import http
|
|
|
|
from django.test import Client
|
|
from django.urls import reverse
|
|
import pytest
|
|
from pytest_django import asserts
|
|
|
|
from hotpocket_backend_testing.services.saves import AssociationsTestingService
|
|
|
|
|
|
@pytest.mark.django_db
|
|
def test_ok(authenticated_client: Client,
|
|
starred_association_out,
|
|
):
|
|
# When
|
|
result = authenticated_client.get(
|
|
reverse('ui.associations.unstar', args=(starred_association_out.pk,)),
|
|
)
|
|
|
|
# Then
|
|
asserts.assertRedirects(
|
|
result,
|
|
reverse('ui.associations.browse'),
|
|
fetch_redirect_response=False,
|
|
)
|
|
|
|
AssociationsTestingService().assert_not_starred(
|
|
pk=starred_association_out.pk, reference=starred_association_out,
|
|
)
|
|
|
|
|
|
@pytest.mark.django_db
|
|
def test_ok_htmx(authenticated_client: Client,
|
|
starred_association_out,
|
|
):
|
|
# When
|
|
result = authenticated_client.get(
|
|
reverse('ui.associations.unstar', args=(starred_association_out.pk,)),
|
|
headers={
|
|
'HX-Request': 'true',
|
|
},
|
|
)
|
|
|
|
# Then
|
|
assert result.status_code == http.HTTPStatus.OK
|
|
|
|
asserts.assertTemplateUsed('ui/associations/association_card.html')
|
|
assert result.context['association'].pk == starred_association_out.pk
|
|
assert hasattr(result.context['association'], 'target') is True
|
|
assert result.context['association'].target.pk == starred_association_out.target.pk
|
|
|
|
|
|
@pytest.mark.django_db
|
|
def test_other_account_association(authenticated_client: Client,
|
|
other_account_starred_association_out,
|
|
):
|
|
# When
|
|
result = authenticated_client.get(
|
|
reverse('ui.associations.unstar', args=(other_account_starred_association_out.pk,)),
|
|
)
|
|
|
|
# Then
|
|
assert result.status_code == http.HTTPStatus.FORBIDDEN
|
|
|
|
|
|
@pytest.mark.django_db
|
|
def test_inactive_account(inactive_account_client: Client,
|
|
association_out,
|
|
):
|
|
# When
|
|
result = inactive_account_client.get(
|
|
reverse('ui.associations.unstar', args=(association_out.pk,)),
|
|
)
|
|
|
|
# Then
|
|
asserts.assertRedirects(
|
|
result,
|
|
reverse(
|
|
'ui.accounts.login',
|
|
query=[
|
|
('next', reverse('ui.associations.unstar', args=(association_out.pk,))),
|
|
],
|
|
),
|
|
fetch_redirect_response=False,
|
|
)
|
|
|
|
|
|
@pytest.mark.django_db
|
|
def test_anonymous(client: Client,
|
|
association_out,
|
|
):
|
|
# When
|
|
result = client.get(
|
|
reverse('ui.associations.unstar', args=(association_out.pk,)),
|
|
)
|
|
|
|
# Then
|
|
asserts.assertRedirects(
|
|
result,
|
|
reverse(
|
|
'ui.accounts.login',
|
|
query=[
|
|
('next', reverse('ui.associations.unstar', args=(association_out.pk,))),
|
|
],
|
|
),
|
|
fetch_redirect_response=False,
|
|
)
|