healthchecks/hc/front/tests/test_remove_check.py
2016-05-09 15:35:13 +03:00

42 lines
1.3 KiB
Python

from hc.api.models import Check
from hc.test import BaseTestCase
class RemoveCheckTestCase(BaseTestCase):
def setUp(self):
super(RemoveCheckTestCase, self).setUp()
self.check = Check(user=self.alice)
self.check.save()
def test_it_works(self):
url = "/checks/%s/remove/" % self.check.code
self.client.login(username="alice@example.org", password="password")
r = self.client.post(url)
self.assertRedirects(r, "/checks/")
assert Check.objects.count() == 0
def test_it_handles_bad_uuid(self):
url = "/checks/not-uuid/remove/"
self.client.login(username="alice@example.org", password="password")
r = self.client.post(url)
assert r.status_code == 400
def test_it_checks_owner(self):
url = "/checks/%s/remove/" % self.check.code
self.client.login(username="charlie@example.org", password="password")
r = self.client.post(url)
assert r.status_code == 403
def test_it_handles_missing_uuid(self):
# Valid UUID but there is no check for it:
url = "/checks/6837d6ec-fc08-4da5-a67f-08a9ed1ccf62/remove/"
self.client.login(username="alice@example.org", password="password")
r = self.client.post(url)
assert r.status_code == 404