mirror of
https://github.com/healthchecks/healthchecks.git
synced 2024-11-27 01:27:51 +00:00
128 lines
4.2 KiB
Python
128 lines
4.2 KiB
Python
from __future__ import annotations
|
|
|
|
import re
|
|
from datetime import timedelta as td
|
|
from unittest.mock import Mock, patch
|
|
|
|
from django.core import mail
|
|
from django.test.utils import override_settings
|
|
from django.utils.timezone import now
|
|
|
|
from hc.accounts.management.commands.senddeletionscheduled import Command
|
|
from hc.accounts.models import Member, Project
|
|
from hc.api.models import Channel, Check
|
|
from hc.test import BaseTestCase
|
|
|
|
MOCK_SLEEP = Mock()
|
|
|
|
|
|
def counts(result: str) -> list[int]:
|
|
"""Extract integer values from command's return value."""
|
|
return [int(s) for s in re.findall(r"\d+", result)]
|
|
|
|
|
|
@override_settings(SITE_NAME="Mychecks")
|
|
@patch("hc.api.management.commands.sendreports.time.sleep", MOCK_SLEEP)
|
|
class SendDeletionScheduledTestCase(BaseTestCase):
|
|
def setUp(self) -> None:
|
|
super().setUp()
|
|
|
|
self.channel = Channel(project=self.project, kind="email")
|
|
self.channel.value = "alerts@example.org"
|
|
self.channel.email_verified = True
|
|
self.channel.save()
|
|
|
|
def test_it_sends_notice(self) -> None:
|
|
self.profile.deletion_scheduled_date = now() + td(days=31)
|
|
self.profile.save()
|
|
|
|
Check.objects.create(project=self.project)
|
|
Check.objects.create(project=self.project)
|
|
|
|
cmd = Command(stdout=Mock())
|
|
result = cmd.handle()
|
|
self.assertEqual(counts(result), [1])
|
|
|
|
email = mail.outbox[0]
|
|
self.assertEqual(email.subject, "Account Deletion Warning")
|
|
self.assertEqual(email.to[0], "alice@example.org")
|
|
self.assertIn("Owner: alice@example.org", email.body)
|
|
self.assertIn("Number of checks in the account: 2", email.body)
|
|
|
|
def test_it_sends_notice_to_team_members(self) -> None:
|
|
self.profile.deletion_scheduled_date = now() + td(days=31)
|
|
self.profile.save()
|
|
|
|
self.bob.last_login = now()
|
|
self.bob.save()
|
|
|
|
cmd = Command(stdout=Mock())
|
|
result = cmd.handle()
|
|
self.assertEqual(counts(result), [1])
|
|
|
|
self.assertEqual(mail.outbox[0].to, ["alice@example.org", "bob@example.org"])
|
|
|
|
def test_it_skips_profiles_with_deletion_scheduled_date_not_set(self) -> None:
|
|
cmd = Command(stdout=Mock())
|
|
result = cmd.handle()
|
|
self.assertEqual(counts(result), [0])
|
|
self.assertEqual(len(mail.outbox), 0)
|
|
|
|
def test_it_skips_profiles_with_deletion_scheduled_date_in_past(self) -> None:
|
|
self.profile.deletion_scheduled_date = now() - td(minutes=1)
|
|
self.profile.save()
|
|
|
|
cmd = Command(stdout=Mock())
|
|
result = cmd.handle()
|
|
self.assertEqual(counts(result), [0])
|
|
self.assertEqual(len(mail.outbox), 0)
|
|
|
|
def test_it_avoids_duplicate_recipients(self) -> None:
|
|
self.profile.deletion_scheduled_date = now() + td(days=31)
|
|
self.profile.save()
|
|
|
|
self.bob.last_login = now()
|
|
self.bob.save()
|
|
|
|
second_project = Project.objects.create(owner=self.alice)
|
|
Member.objects.create(
|
|
user=self.bob, project=second_project, role=Member.Role.REGULAR
|
|
)
|
|
|
|
cmd = Command(stdout=Mock())
|
|
cmd.handle()
|
|
# Bob should be listed as a recipient a single time, despite two memberships:
|
|
self.assertEqual(mail.outbox[0].to, ["alice@example.org", "bob@example.org"])
|
|
|
|
def test_it_notifies_channel(self) -> None:
|
|
self.profile.deletion_scheduled_date = now() + td(days=5)
|
|
self.profile.save()
|
|
|
|
cmd = Command(stdout=Mock())
|
|
cmd.handle()
|
|
|
|
self.assertEqual(mail.outbox[0].subject, "Account Deletion Warning")
|
|
s = "DOWN | Mychecks Account Deletion"
|
|
self.assertTrue(mail.outbox[1].subject.startswith(s))
|
|
|
|
def test_it_does_not_notify_channels_if_more_than_14_days_left(self) -> None:
|
|
self.profile.deletion_scheduled_date = now() + td(days=15, minutes=1)
|
|
self.profile.save()
|
|
|
|
cmd = Command(stdout=Mock())
|
|
cmd.handle()
|
|
|
|
self.assertEqual(len(mail.outbox), 1)
|
|
|
|
def test_it_skips_email_channels_of_team_members(self) -> None:
|
|
self.profile.deletion_scheduled_date = now() + td(days=5)
|
|
self.profile.save()
|
|
|
|
self.channel.value = "alice@example.org"
|
|
self.channel.save()
|
|
|
|
cmd = Command(stdout=Mock())
|
|
cmd.handle()
|
|
|
|
self.assertEqual(len(mail.outbox), 1)
|