You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

48 lines
1.6 KiB

from hc.api.models import Check
from hc.test import BaseTestCase
class AddCheckTestCase(BaseTestCase):
def test_it_works(self):
url = "/checks/add/"
self.client.login(username="[email protected]", password="password")
r = self.client.post(url)
self.assertRedirects(r, "/checks/")
check = Check.objects.get()
self.assertEqual(check.project, self.project)
def test_it_handles_unset_current_project(self):
self.profile.current_project = None
self.profile.save()
url = "/checks/add/"
self.client.login(username="[email protected]", password="password")
r = self.client.post(url)
self.assertRedirects(r, "/checks/")
check = Check.objects.get()
self.assertEqual(check.project, self.project)
def test_team_access_works(self):
url = "/checks/add/"
self.client.login(username="[email protected]", password="password")
self.client.post(url)
check = Check.objects.get()
# Added by bob, but should belong to alice (bob has team access)
self.assertEqual(check.project, self.project)
def test_it_rejects_get(self):
url = "/checks/add/"
self.client.login(username="[email protected]", password="password")
r = self.client.get(url)
self.assertEqual(r.status_code, 405)
def test_it_obeys_check_limit(self):
self.profile.check_limit = 0
self.profile.save()
url = "/checks/add/"
self.client.login(username="[email protected]", password="password")
r = self.client.post(url)
self.assertEqual(r.status_code, 400)