|
|
- import json
-
- from hc.api.models import Channel
- from hc.test import BaseTestCase
-
-
- class ChannelsTestCase(BaseTestCase):
-
- def test_it_formats_complex_slack_value(self):
- ch = Channel(kind="slack", user=self.alice)
- ch.value = json.dumps({
- "ok": True,
- "team_name": "foo-team",
- "incoming_webhook": {
- "url": "http://example.org",
- "channel": "#bar"
- }
- })
- ch.save()
-
- self.client.login(username="[email protected]", password="password")
- r = self.client.get("/integrations/")
- self.assertContains(r, "foo-team", status_code=200)
- self.assertContains(r, "#bar")
-
- def test_it_shows_webhook_post_data(self):
- ch = Channel(kind="webhook", user=self.alice)
- ch.value = "http://down.example.com\nhttp://up.example.com\nfoobar"
- ch.save()
-
- self.client.login(username="[email protected]", password="password")
- r = self.client.get("/integrations/")
-
- self.assertEqual(r.status_code, 200)
- self.assertContains(r, "<td>http://down.example.com</td>")
- self.assertContains(r, "<td>http://up.example.com</td>")
- self.assertContains(r, "<td>foobar</td>")
-
- def test_it_shows_pushover_details(self):
- ch = Channel(kind="po", user=self.alice)
- ch.value = "fake-key|0"
- ch.save()
-
- self.client.login(username="[email protected]", password="password")
- r = self.client.get("/integrations/")
-
- self.assertEqual(r.status_code, 200)
- self.assertContains(r, "fake-key")
- self.assertContains(r, "(normal priority)")
|