from django.test.utils import override_settings
|
|
|
|
from hc.api.models import Channel
|
|
from hc.test import BaseTestCase
|
|
|
|
|
|
@override_settings(PUSHOVER_API_TOKEN="token", PUSHOVER_SUBSCRIPTION_URL="url")
|
|
class AddChannelTestCase(BaseTestCase):
|
|
|
|
def test_it_works(self):
|
|
url = "/integrations/add/"
|
|
form = {"kind": "email", "value": "[email protected]"}
|
|
|
|
self.client.login(username="[email protected]", password="password")
|
|
r = self.client.post(url, form)
|
|
|
|
self.assertRedirects(r, "/integrations/")
|
|
assert Channel.objects.count() == 1
|
|
|
|
def test_team_access_works(self):
|
|
url = "/integrations/add/"
|
|
form = {"kind": "email", "value": "[email protected]"}
|
|
|
|
self.client.login(username="[email protected]", password="password")
|
|
self.client.post(url, form)
|
|
|
|
ch = Channel.objects.get()
|
|
# Added by bob, but should belong to alice (bob has team access)
|
|
self.assertEqual(ch.user, self.alice)
|
|
|
|
def test_it_trims_whitespace(self):
|
|
""" Leading and trailing whitespace should get trimmed. """
|
|
|
|
url = "/integrations/add/"
|
|
form = {"kind": "email", "value": " [email protected] "}
|
|
|
|
self.client.login(username="[email protected]", password="password")
|
|
self.client.post(url, form)
|
|
|
|
q = Channel.objects.filter(value="[email protected]")
|
|
self.assertEqual(q.count(), 1)
|
|
|
|
def test_it_rejects_bad_kind(self):
|
|
url = "/integrations/add/"
|
|
form = {"kind": "dog", "value": "Lassie"}
|
|
|
|
self.client.login(username="[email protected]", password="password")
|
|
r = self.client.post(url, form)
|
|
|
|
assert r.status_code == 400, r.status_code
|
|
|
|
def test_instructions_work(self):
|
|
self.client.login(username="[email protected]", password="password")
|
|
for frag in ("email", "webhook", "pd", "pushover", "slack", "hipchat", "victorops"):
|
|
url = "/integrations/add_%s/" % frag
|
|
r = self.client.get(url)
|
|
self.assertContains(r, "Integration Settings", status_code=200)
|
|
|
|
def test_it_adds_pushover_channel(self):
|
|
self.client.login(username="[email protected]", password="password")
|
|
|
|
session = self.client.session
|
|
session["po_nonce"] = "n"
|
|
session.save()
|
|
|
|
params = "pushover_user_key=a&nonce=n&prio=0"
|
|
r = self.client.get("/integrations/add_pushover/?%s" % params)
|
|
assert r.status_code == 302
|
|
|
|
channels = list(Channel.objects.all())
|
|
assert len(channels) == 1
|
|
assert channels[0].value == "a|0"
|
|
|
|
def test_it_validates_pushover_priority(self):
|
|
self.client.login(username="[email protected]", password="password")
|
|
|
|
session = self.client.session
|
|
session["po_nonce"] = "n"
|
|
session.save()
|
|
|
|
params = "pushover_user_key=a&nonce=n&prio=abc"
|
|
r = self.client.get("/integrations/add_pushover/?%s" % params)
|
|
assert r.status_code == 400
|
|
|
|
def test_it_validates_pushover_nonce(self):
|
|
self.client.login(username="[email protected]", password="password")
|
|
|
|
session = self.client.session
|
|
session["po_nonce"] = "n"
|
|
session.save()
|
|
|
|
params = "pushover_user_key=a&nonce=INVALID&prio=0"
|
|
r = self.client.get("/integrations/add_pushover/?%s" % params)
|
|
assert r.status_code == 403
|
|
|
|
def test_it_adds_two_webhook_urls_and_redirects(self):
|
|
form = {"value_down": "http://foo.com", "value_up": "https://bar.com"}
|
|
|
|
self.client.login(username="[email protected]", password="password")
|
|
r = self.client.post("/integrations/add_webhook/", form)
|
|
self.assertRedirects(r, "/integrations/")
|
|
|
|
c = Channel.objects.get()
|
|
self.assertEqual(c.value, "http://foo.com\nhttps://bar.com")
|
|
|
|
def test_it_adds_webhook_using_team_access(self):
|
|
form = {"value_down": "http://foo.com", "value_up": "https://bar.com"}
|
|
|
|
# Logging in as bob, not alice. Bob has team access so this
|
|
# should work.
|
|
self.client.login(username="[email protected]", password="password")
|
|
self.client.post("/integrations/add_webhook/", form)
|
|
|
|
c = Channel.objects.get()
|
|
self.assertEqual(c.user, self.alice)
|
|
self.assertEqual(c.value, "http://foo.com\nhttps://bar.com")
|
|
|
|
def test_it_rejects_non_http_webhook_urls(self):
|
|
form = {"value_down": "foo", "value_up": "bar"}
|
|
|
|
self.client.login(username="[email protected]", password="password")
|
|
r = self.client.post("/integrations/add_webhook/", form)
|
|
self.assertContains(r, "Enter a valid URL.")
|
|
|
|
self.assertEqual(Channel.objects.count(), 0)
|
|
|
|
def test_it_handles_empty_down_url(self):
|
|
form = {"value_down": "", "value_up": "http://foo.com"}
|
|
|
|
self.client.login(username="[email protected]", password="password")
|
|
self.client.post("/integrations/add_webhook/", form)
|
|
|
|
c = Channel.objects.get()
|
|
self.assertEqual(c.value, "\nhttp://foo.com")
|