mirror of
https://github.com/healthchecks/healthchecks.git
synced 2024-11-21 23:27:57 +00:00
77 lines
2.4 KiB
Python
77 lines
2.4 KiB
Python
from __future__ import annotations
|
|
|
|
from django.test.utils import override_settings
|
|
|
|
from hc.api.models import Channel
|
|
from hc.test import BaseTestCase
|
|
|
|
|
|
@override_settings(TRELLO_APP_KEY="foo")
|
|
class AddTrelloTestCase(BaseTestCase):
|
|
def setUp(self) -> None:
|
|
super().setUp()
|
|
self.url = f"/projects/{self.project.code}/add_trello/"
|
|
|
|
def test_instructions_work(self) -> None:
|
|
self.client.login(username="alice@example.org", password="password")
|
|
r = self.client.get(self.url)
|
|
self.assertContains(r, "Trello")
|
|
|
|
def test_it_works(self) -> None:
|
|
form = {
|
|
"token": "0" * 64,
|
|
"board_name": "My Board",
|
|
"list_name": "My List",
|
|
"list_id": "1" * 32,
|
|
}
|
|
|
|
self.client.login(username="alice@example.org", password="password")
|
|
r = self.client.post(self.url, form)
|
|
self.assertRedirects(r, self.channels_url)
|
|
|
|
c = Channel.objects.get()
|
|
self.assertEqual(c.kind, "trello")
|
|
self.assertEqual(c.trello.token, "0" * 64)
|
|
self.assertEqual(c.project, self.project)
|
|
|
|
def test_it_handles_256_char_token(self) -> None:
|
|
form = {
|
|
"token": "0" * 256,
|
|
"board_name": "My Board",
|
|
"list_name": "My List",
|
|
"list_id": "1" * 32,
|
|
}
|
|
|
|
self.client.login(username="alice@example.org", password="password")
|
|
self.client.post(self.url, form)
|
|
|
|
c = Channel.objects.get()
|
|
self.assertEqual(c.trello.token, "0" * 256)
|
|
|
|
@override_settings(TRELLO_APP_KEY=None)
|
|
def test_it_requires_trello_app_key(self) -> None:
|
|
self.client.login(username="alice@example.org", password="password")
|
|
r = self.client.get(self.url)
|
|
self.assertEqual(r.status_code, 404)
|
|
|
|
def test_it_requires_rw_access(self) -> None:
|
|
self.bobs_membership.role = "r"
|
|
self.bobs_membership.save()
|
|
|
|
self.client.login(username="bob@example.org", password="password")
|
|
r = self.client.get(self.url)
|
|
self.assertEqual(r.status_code, 403)
|
|
|
|
def test_it_requires_board_name(self) -> None:
|
|
self.client.login(username="alice@example.org", password="password")
|
|
|
|
form = {
|
|
"token": "0" * 64,
|
|
"board_name": "",
|
|
"list_name": "My List",
|
|
"list_id": "1" * 32,
|
|
}
|
|
|
|
r = self.client.post(self.url, form)
|
|
self.assertEqual(r.status_code, 400)
|