Skip to content

Commit

Permalink
Add tests for (de)activating alert profiles
Browse files Browse the repository at this point in the history
  • Loading branch information
johannaengland committed Nov 13, 2023
1 parent ba66164 commit c08f762
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions tests/integration/web/alertprofiles_test.py
Original file line number Diff line number Diff line change
@@ -125,6 +125,23 @@ def test_alertprofiles_activate_profile(db, client, dummy_profile):
assert preference.active_profile == dummy_profile


def test_alertprofiles_activate_profile_with_info_in_key(db, client, dummy_profile):
# remarkably, activation/deactivation of profiles belong in the remove view!
url = reverse('alertprofiles-profile-remove')
response = client.post(
url,
follow=True,
data={
f'activate={dummy_profile.id}': ["Activate"],
},
)
assert response.status_code == 200
assert "Active profile set" in smart_str(response.content)
assert dummy_profile.name in smart_str(response.content)
preference = AlertPreference.objects.get(account=dummy_profile.account)
assert preference.active_profile == dummy_profile


def test_alertprofiles_deactivate_profile(db, client, activated_dummy_profile):
# remarkably, activation/deactivation of profiles belong in the remove view!
url = reverse('alertprofiles-profile-remove')
@@ -143,6 +160,26 @@ def test_alertprofiles_deactivate_profile(db, client, activated_dummy_profile):
assert preference.active_profile is None


def test_alertprofiles_deactivate_profile_with_info_in_key(
db, client, activated_dummy_profile
):
# remarkably, activation/deactivation of profiles belong in the remove view!
url = reverse('alertprofiles-profile-remove')
response = client.post(
url,
follow=True,
data={
f'deactivate={activated_dummy_profile.id}': ["Deactivate"],
},
)
assert response.status_code == 200
print(type(response.content))
assert "was deactivated" in smart_str(response.content)
assert activated_dummy_profile.name in smart_str(response.content)
preference = AlertPreference.objects.get(account=activated_dummy_profile.account)
assert preference.active_profile is None


def test_alertprofiles_add_private_filter_should_succeed(client):
"""Tests that an admin can POST a new private filter"""
url = reverse("alertprofiles-filters-save")

0 comments on commit c08f762

Please sign in to comment.