175 lines
4.5 KiB
Python
175 lines
4.5 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.apps.saves.models import Association
|
|
from hotpocket_common.constants import AssociationsSearchMode
|
|
|
|
|
|
@pytest.mark.django_db
|
|
def test_ok(authenticated_client: Client,
|
|
association_out,
|
|
):
|
|
# When
|
|
result = authenticated_client.post(
|
|
reverse('ui.associations.delete', args=(association_out.pk,)),
|
|
data={
|
|
'canhazconfirm': 'hai',
|
|
},
|
|
)
|
|
|
|
# Then
|
|
asserts.assertRedirects(
|
|
result,
|
|
reverse(
|
|
'ui.associations.browse',
|
|
query=[('mode', AssociationsSearchMode.ARCHIVED.value)],
|
|
),
|
|
fetch_redirect_response=False,
|
|
)
|
|
|
|
association_object = Association.objects.get(pk=association_out.pk)
|
|
assert association_object.updated_at > association_out.updated_at
|
|
assert association_object.deleted_at is not None
|
|
|
|
|
|
@pytest.mark.django_db
|
|
def test_ok_htmx(authenticated_client: Client,
|
|
association_out,
|
|
):
|
|
# When
|
|
result = authenticated_client.post(
|
|
reverse('ui.associations.delete', args=(association_out.pk,)),
|
|
headers={
|
|
'HX-Request': 'true',
|
|
},
|
|
data={
|
|
'canhazconfirm': 'hai',
|
|
},
|
|
)
|
|
|
|
# Then
|
|
assert result.status_code == http.HTTPStatus.OK
|
|
|
|
expected_payload = {
|
|
'status': 'ok',
|
|
'result': True,
|
|
}
|
|
assert result.json() == expected_payload
|
|
|
|
|
|
@pytest.mark.django_db
|
|
def test_invalid_all_missing(authenticated_client: Client,
|
|
association_out,
|
|
):
|
|
# When
|
|
result = authenticated_client.post(
|
|
reverse('ui.associations.delete', args=(association_out.pk,)),
|
|
data={
|
|
},
|
|
)
|
|
|
|
# Then
|
|
assert result.status_code == http.HTTPStatus.OK
|
|
|
|
association_object = Association.objects.get(pk=association_out.pk)
|
|
assert association_object.updated_at == association_out.updated_at
|
|
assert association_object.deleted_at is None
|
|
|
|
assert 'canhazconfirm' in result.context['form'].errors
|
|
|
|
|
|
@pytest.mark.django_db
|
|
def test_invalid_all_empty(authenticated_client: Client,
|
|
association_out,
|
|
):
|
|
# When
|
|
result = authenticated_client.post(
|
|
reverse('ui.associations.delete', args=(association_out.pk,)),
|
|
data={
|
|
'canhazconfirm': '',
|
|
},
|
|
)
|
|
|
|
# Then
|
|
assert result.status_code == http.HTTPStatus.OK
|
|
|
|
association_object = Association.objects.get(pk=association_out.pk)
|
|
assert association_object.updated_at == association_out.updated_at
|
|
assert association_object.deleted_at is None
|
|
|
|
assert 'canhazconfirm' in result.context['form'].errors
|
|
|
|
|
|
@pytest.mark.django_db
|
|
def test_other_account_association(authenticated_client: Client,
|
|
other_account_association_out,
|
|
):
|
|
# When
|
|
result = authenticated_client.post(
|
|
reverse('ui.associations.delete', args=(other_account_association_out.pk,)),
|
|
data={
|
|
'canhazconfirm': 'hai',
|
|
},
|
|
)
|
|
|
|
# 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.post(
|
|
reverse('ui.associations.delete', args=(association_out.pk,)),
|
|
data={
|
|
'canhazconfirm': 'hai',
|
|
},
|
|
)
|
|
|
|
# Then
|
|
asserts.assertRedirects(
|
|
result,
|
|
reverse(
|
|
'ui.accounts.login',
|
|
query=[
|
|
('next', reverse('ui.associations.delete', args=(association_out.pk,))),
|
|
],
|
|
),
|
|
fetch_redirect_response=False,
|
|
)
|
|
|
|
|
|
@pytest.mark.django_db
|
|
def test_anonymous(client: Client,
|
|
association_out,
|
|
):
|
|
# When
|
|
result = client.post(
|
|
reverse('ui.associations.delete', args=(association_out.pk,)),
|
|
data={
|
|
'canhazconfirm': 'hai',
|
|
},
|
|
)
|
|
|
|
# Then
|
|
asserts.assertRedirects(
|
|
result,
|
|
reverse(
|
|
'ui.accounts.login',
|
|
query=[
|
|
('next', reverse('ui.associations.delete', args=(association_out.pk,))),
|
|
],
|
|
),
|
|
fetch_redirect_response=False,
|
|
)
|