|
@ -8,8 +8,10 @@ from django.utils.timezone import now |
|
|
from hc.api.models import Channel, Check, Notification, TokenBucket |
|
|
from hc.api.models import Channel, Check, Notification, TokenBucket |
|
|
from hc.test import BaseTestCase |
|
|
from hc.test import BaseTestCase |
|
|
|
|
|
|
|
|
|
|
|
API = "https://api.pushover.net/1" |
|
|
|
|
|
|
|
|
class NotifyTestCase(BaseTestCase): |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class NotifyPushoverTestCase(BaseTestCase): |
|
|
def _setup_data(self, value, status="down", email_verified=True): |
|
|
def _setup_data(self, value, status="down", email_verified=True): |
|
|
self.check = Check(project=self.project) |
|
|
self.check = Check(project=self.project) |
|
|
self.check.status = status |
|
|
self.check.status = status |
|
@ -24,24 +26,27 @@ class NotifyTestCase(BaseTestCase): |
|
|
self.channel.checks.add(self.check) |
|
|
self.channel.checks.add(self.check) |
|
|
|
|
|
|
|
|
@patch("hc.api.transports.requests.request") |
|
|
@patch("hc.api.transports.requests.request") |
|
|
def test_pushover(self, mock_post): |
|
|
|
|
|
|
|
|
def test_it_works(self, mock_post): |
|
|
self._setup_data("123|0") |
|
|
self._setup_data("123|0") |
|
|
mock_post.return_value.status_code = 200 |
|
|
mock_post.return_value.status_code = 200 |
|
|
|
|
|
|
|
|
self.channel.notify(self.check) |
|
|
self.channel.notify(self.check) |
|
|
assert Notification.objects.count() == 1 |
|
|
|
|
|
|
|
|
self.assertEqual(Notification.objects.count(), 1) |
|
|
|
|
|
|
|
|
args, kwargs = mock_post.call_args |
|
|
args, kwargs = mock_post.call_args |
|
|
|
|
|
self.assertEqual(args[1], API + "/messages.json") |
|
|
|
|
|
|
|
|
payload = kwargs["data"] |
|
|
payload = kwargs["data"] |
|
|
self.assertIn("DOWN", payload["title"]) |
|
|
self.assertIn("DOWN", payload["title"]) |
|
|
|
|
|
self.assertEqual(payload["tags"], self.check.unique_key) |
|
|
|
|
|
|
|
|
@patch("hc.api.transports.requests.request") |
|
|
@patch("hc.api.transports.requests.request") |
|
|
def test_pushover_up_priority(self, mock_post): |
|
|
|
|
|
|
|
|
def test_it_supports_up_priority(self, mock_post): |
|
|
self._setup_data("123|0|2", status="up") |
|
|
self._setup_data("123|0|2", status="up") |
|
|
mock_post.return_value.status_code = 200 |
|
|
mock_post.return_value.status_code = 200 |
|
|
|
|
|
|
|
|
self.channel.notify(self.check) |
|
|
self.channel.notify(self.check) |
|
|
assert Notification.objects.count() == 1 |
|
|
|
|
|
|
|
|
self.assertEqual(Notification.objects.count(), 1) |
|
|
|
|
|
|
|
|
args, kwargs = mock_post.call_args |
|
|
args, kwargs = mock_post.call_args |
|
|
payload = kwargs["data"] |
|
|
payload = kwargs["data"] |
|
@ -63,3 +68,21 @@ class NotifyTestCase(BaseTestCase): |
|
|
self.channel.notify(self.check) |
|
|
self.channel.notify(self.check) |
|
|
n = Notification.objects.first() |
|
|
n = Notification.objects.first() |
|
|
self.assertEqual(n.error, "Rate limit exceeded") |
|
|
self.assertEqual(n.error, "Rate limit exceeded") |
|
|
|
|
|
|
|
|
|
|
|
@patch("hc.api.transports.requests.request") |
|
|
|
|
|
def test_it_cancels_emergency_notification(self, mock_post): |
|
|
|
|
|
self._setup_data("123|2|0", status="up") |
|
|
|
|
|
mock_post.return_value.status_code = 200 |
|
|
|
|
|
|
|
|
|
|
|
self.channel.notify(self.check) |
|
|
|
|
|
self.assertEqual(Notification.objects.count(), 1) |
|
|
|
|
|
|
|
|
|
|
|
self.assertEqual(mock_post.call_count, 2) |
|
|
|
|
|
|
|
|
|
|
|
cancel_args, cancel_kwargs = mock_post.call_args_list[0] |
|
|
|
|
|
expected = "/receipts/cancel_by_tag/%s.json" % self.check.unique_key |
|
|
|
|
|
self.assertEqual(cancel_args[1], API + expected) |
|
|
|
|
|
|
|
|
|
|
|
up_args, up_kwargs = mock_post.call_args_list[1] |
|
|
|
|
|
payload = up_kwargs["data"] |
|
|
|
|
|
self.assertIn("UP", payload["title"]) |