mirror of
https://github.com/healthchecks/healthchecks.git
synced 2024-11-24 16:26:49 +00:00
374f034bf9
In check's details page, we have a "Current Status" section. It shows an icon, a status text, and a table with downtime statistics. When the check has received a start signal, the icon also has an animated progress indicator under it. With this change, the status text will also indicate the running state and the elapsed time. Example: "Currently running, started 3 minutes ago".
132 lines
4.5 KiB
Python
132 lines
4.5 KiB
Python
from __future__ import annotations
|
|
|
|
from hc.api.models import Check, Ping
|
|
from hc.test import BaseTestCase
|
|
|
|
|
|
class StatusSingleTestCase(BaseTestCase):
|
|
def setUp(self) -> None:
|
|
super().setUp()
|
|
self.check = Check(project=self.project, name="Alice Was Here")
|
|
self.check.save()
|
|
|
|
self.url = f"/checks/{self.check.code}/status/"
|
|
|
|
def test_it_works(self) -> None:
|
|
self.client.login(username="alice@example.org", password="password")
|
|
r = self.client.get(self.url)
|
|
doc = r.json()
|
|
|
|
self.assertEqual(doc["status"], "new")
|
|
self.assertIn("never received a ping", doc["status_text"])
|
|
self.assertIn("not received any pings yet", doc["events"])
|
|
|
|
def test_status_text_shows_elapsed_run_time(self) -> None:
|
|
p = Ping.objects.create(owner=self.check, n=1, kind="start")
|
|
self.check.status = "new"
|
|
self.check.n_pings = 1
|
|
self.check.last_start = p.created
|
|
self.check.save()
|
|
|
|
self.client.login(username="alice@example.org", password="password")
|
|
r = self.client.get(self.url)
|
|
doc = r.json()
|
|
|
|
self.assertEqual(doc["status"], "new")
|
|
self.assertIn("This check is ready for pings.", doc["status_text"])
|
|
self.assertIn("Currently running, started now.", doc["status_text"])
|
|
|
|
def test_it_returns_403_for_anon_requests(self) -> None:
|
|
r = self.client.get(self.url)
|
|
self.assertEqual(r.status_code, 403)
|
|
|
|
def test_it_returns_events(self) -> None:
|
|
p = Ping.objects.create(owner=self.check, ua="test-user-agent", n=1)
|
|
self.check.status = "up"
|
|
self.check.last_ping = p.created
|
|
self.check.save()
|
|
|
|
self.client.login(username="alice@example.org", password="password")
|
|
r = self.client.get(self.url)
|
|
doc = r.json()
|
|
|
|
self.assertEqual(doc["status"], "up")
|
|
self.assertEqual(doc["updated"], str(p.created.timestamp()))
|
|
self.assertIn("test-user-agent", doc["events"])
|
|
|
|
def test_it_omits_events(self) -> None:
|
|
p = Ping.objects.create(owner=self.check, ua="test-user-agent", n=1)
|
|
self.check.status = "up"
|
|
self.check.last_ping = p.created
|
|
self.check.save()
|
|
|
|
timestamp = str(p.created.timestamp())
|
|
url = self.url + "?u=%s" % timestamp
|
|
|
|
self.client.login(username="alice@example.org", password="password")
|
|
r = self.client.get(url)
|
|
doc = r.json()
|
|
|
|
self.assertNotIn("events", doc)
|
|
|
|
def test_it_allows_cross_team_access(self) -> None:
|
|
self.client.login(username="bob@example.org", password="password")
|
|
r = self.client.get(self.url)
|
|
self.assertEqual(r.status_code, 200)
|
|
|
|
def test_it_handles_manual_resume(self) -> None:
|
|
self.check.status = "paused"
|
|
self.check.manual_resume = True
|
|
self.check.save()
|
|
|
|
self.client.login(username="alice@example.org", password="password")
|
|
r = self.client.get(self.url)
|
|
doc = r.json()
|
|
|
|
self.assertEqual(doc["status"], "paused")
|
|
self.assertIn("will ignore pings until resumed", doc["status_text"])
|
|
self.assertIn("resume-btn", doc["status_text"])
|
|
|
|
def test_resume_requires_rw_access(self) -> None:
|
|
self.bobs_membership.role = "r"
|
|
self.bobs_membership.save()
|
|
|
|
self.check.status = "paused"
|
|
self.check.manual_resume = True
|
|
self.check.save()
|
|
|
|
self.client.login(username="bob@example.org", password="password")
|
|
r = self.client.get(self.url)
|
|
doc = r.json()
|
|
|
|
self.assertEqual(doc["status"], "paused")
|
|
self.assertIn("will ignore pings until resumed", doc["status_text"])
|
|
self.assertNotIn("resume-btn", doc["status_text"])
|
|
|
|
def test_it_shows_ignored_nonzero_exitstatus(self) -> None:
|
|
p = Ping(owner=self.check)
|
|
p.n = 1
|
|
p.kind = "ign"
|
|
p.exitstatus = 123
|
|
p.save()
|
|
|
|
self.client.login(username="alice@example.org", password="password")
|
|
r = self.client.get(self.url)
|
|
doc = r.json()
|
|
|
|
self.assertIn("Ignored", doc["events"])
|
|
|
|
def test_it_handles_log_event(self) -> None:
|
|
p = Ping.objects.create(owner=self.check, kind="log", n=1)
|
|
self.check.status = "up"
|
|
self.check.last_ping = p.created
|
|
self.check.save()
|
|
|
|
self.client.login(username="alice@example.org", password="password")
|
|
r = self.client.get(self.url)
|
|
doc = r.json()
|
|
|
|
self.assertEqual(doc["status"], "up")
|
|
self.assertEqual(doc["updated"], str(p.created.timestamp()))
|
|
self.assertIn("label-log", doc["events"])
|