import json from django.test.utils import override_settings from hc.api.models import Channel from hc.test import BaseTestCase from mock import patch @override_settings(PUSHBULLET_CLIENT_ID="t1", PUSHBULLET_CLIENT_SECRET="s1") class AddPushbulletTestCase(BaseTestCase): url = "/integrations/add_pushbullet/" def test_instructions_work(self): self.client.login(username="alice@example.org", password="password") r = self.client.get(self.url) self.assertContains(r, "Connect Pushbullet") def test_it_shows_instructions(self): self.client.login(username="alice@example.org", password="password") r = self.client.get(self.url) self.assertContains(r, "www.pushbullet.com/authorize", status_code=200) @override_settings(PUSHBULLET_CLIENT_ID=None) def test_it_requires_client_id(self): self.client.login(username="alice@example.org", password="password") r = self.client.get(self.url) self.assertEqual(r.status_code, 404) @patch("hc.front.views.requests.post") def test_it_handles_oauth_response(self, mock_post): oauth_response = {"access_token": "test-token"} mock_post.return_value.text = json.dumps(oauth_response) mock_post.return_value.json.return_value = oauth_response url = self.url + "?code=12345678" self.client.login(username="alice@example.org", password="password") r = self.client.get(url, follow=True) self.assertRedirects(r, "/integrations/") self.assertContains(r, "The Pushbullet integration has been added!") ch = Channel.objects.get() self.assertEqual(ch.value, "test-token")