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.
 
 
 
 
 

84 lines
3.0 KiB

from hc.api.models import Channel, Check
from hc.test import BaseTestCase
class UpdateChannelTestCase(BaseTestCase):
def setUp(self):
super(UpdateChannelTestCase, self).setUp()
self.check = Check(user=self.alice)
self.check.save()
self.channel = Channel(user=self.alice, kind="email")
self.channel.email = "[email protected]"
self.channel.save()
def test_it_works(self):
payload = {
"channel": self.channel.code,
"check-%s" % self.check.code: True
}
self.client.login(username="[email protected]", password="password")
r = self.client.post("/integrations/", data=payload)
self.assertRedirects(r, "/integrations/")
channel = Channel.objects.get(code=self.channel.code)
checks = channel.checks.all()
assert len(checks) == 1
assert checks[0].code == self.check.code
def test_team_access_works(self):
payload = {
"channel": self.channel.code,
"check-%s" % self.check.code: True
}
# Logging in as bob, not alice. Bob has team access so this
# should work.
self.client.login(username="[email protected]", password="password")
r = self.client.post("/integrations/", data=payload, follow=True)
self.assertEqual(r.status_code, 200)
def test_it_checks_channel_user(self):
payload = {"channel": self.channel.code}
self.client.login(username="[email protected]", password="password")
r = self.client.post("/integrations/", data=payload)
# self.channel does not belong to charlie, this should fail--
assert r.status_code == 403
def test_it_checks_check_user(self):
charlies_channel = Channel(user=self.charlie, kind="email")
charlies_channel.email = "[email protected]"
charlies_channel.save()
payload = {
"channel": charlies_channel.code,
"check-%s" % self.check.code: True
}
self.client.login(username="[email protected]", password="password")
r = self.client.post("/integrations/", data=payload)
# mc belongs to charlie but self.check does not--
assert r.status_code == 403
def test_it_handles_missing_channel(self):
# Correct UUID but there is no channel for it:
payload = {"channel": "6837d6ec-fc08-4da5-a67f-08a9ed1ccf62"}
self.client.login(username="[email protected]", password="password")
r = self.client.post("/integrations/", data=payload)
assert r.status_code == 400
def test_it_handles_missing_check(self):
# check- key has a correct UUID but there's no check object for it
payload = {
"channel": self.channel.code,
"check-6837d6ec-fc08-4da5-a67f-08a9ed1ccf62": True
}
self.client.login(username="[email protected]", password="password")
r = self.client.post("/integrations/", data=payload)
assert r.status_code == 400