2018-03-01 12:13:15 +01:00
|
|
|
from zerver.lib.test_classes import WebhookTestCase
|
|
|
|
|
2020-01-14 22:06:24 +01:00
|
|
|
|
2018-03-01 12:13:15 +01:00
|
|
|
class FlockHookTests(WebhookTestCase):
|
2021-02-12 08:20:45 +01:00
|
|
|
STREAM_NAME = "test"
|
2020-04-09 21:51:58 +02:00
|
|
|
URL_TEMPLATE = "/api/v1/external/flock?api_key={api_key}&stream={stream}"
|
2020-08-20 20:29:32 +02:00
|
|
|
FIXTURE_DIR_NAME = "flock"
|
2018-03-01 12:13:15 +01:00
|
|
|
|
|
|
|
def test_flock_message(self) -> None:
|
2020-04-09 21:51:58 +02:00
|
|
|
expected_topic = "Flock notifications"
|
|
|
|
expected_message = "This is the welcome message!"
|
2020-08-23 15:49:24 +02:00
|
|
|
self.check_webhook(
|
|
|
|
"messages", expected_topic, expected_message, content_type="application/json"
|
|
|
|
)
|
2018-03-01 12:13:15 +01:00
|
|
|
|
|
|
|
def test_flock_reply(self) -> None:
|
2020-04-09 21:51:58 +02:00
|
|
|
expected_topic = "Flock notifications"
|
|
|
|
expected_message = "It's interesting how high productivity will go..."
|
2020-08-23 15:49:24 +02:00
|
|
|
self.check_webhook(
|
|
|
|
"reply", expected_topic, expected_message, content_type="application/json"
|
|
|
|
)
|
2018-03-01 12:13:15 +01:00
|
|
|
|
|
|
|
def test_flock_note(self) -> None:
|
2020-04-09 21:51:58 +02:00
|
|
|
expected_topic = "Flock notifications"
|
|
|
|
expected_message = "Shared a note"
|
2020-08-23 15:49:24 +02:00
|
|
|
self.check_webhook(
|
|
|
|
"note", expected_topic, expected_message, content_type="application/json"
|
|
|
|
)
|
2018-03-01 12:13:15 +01:00
|
|
|
|
|
|
|
def test_flock_reply_note(self) -> None:
|
2020-04-09 21:51:58 +02:00
|
|
|
expected_topic = "Flock notifications"
|
|
|
|
expected_message = "This is reply to Note."
|
2020-08-23 15:49:24 +02:00
|
|
|
self.check_webhook(
|
|
|
|
"reply_note", expected_topic, expected_message, content_type="application/json"
|
|
|
|
)
|
2018-03-01 12:13:15 +01:00
|
|
|
|
|
|
|
def test_flock_reply_pinned(self) -> None:
|
2020-04-09 21:51:58 +02:00
|
|
|
expected_topic = "Flock notifications"
|
|
|
|
expected_message = "This is reply to pinned message."
|
2020-08-23 15:49:24 +02:00
|
|
|
self.check_webhook(
|
|
|
|
"reply_pinned", expected_topic, expected_message, content_type="application/json"
|
|
|
|
)
|
2018-03-01 12:13:15 +01:00
|
|
|
|
|
|
|
def test_flock_reply_reminder(self) -> None:
|
2020-04-09 21:51:58 +02:00
|
|
|
expected_topic = "Flock notifications"
|
|
|
|
expected_message = "This is a reply to Reminder."
|
2020-08-23 15:49:24 +02:00
|
|
|
self.check_webhook(
|
|
|
|
"reply_reminder", expected_topic, expected_message, content_type="application/json"
|
|
|
|
)
|
2018-03-01 12:13:15 +01:00
|
|
|
|
|
|
|
def test_flock_reply_todo(self) -> None:
|
2020-04-09 21:51:58 +02:00
|
|
|
expected_topic = "Flock notifications"
|
|
|
|
expected_message = "This is a reply to Todo notification."
|
2020-08-23 15:49:24 +02:00
|
|
|
self.check_webhook(
|
|
|
|
"reply_todo", expected_topic, expected_message, content_type="application/json"
|
|
|
|
)
|
2018-03-01 12:13:15 +01:00
|
|
|
|
|
|
|
def test_flock_pinned(self) -> None:
|
2020-04-09 21:51:58 +02:00
|
|
|
expected_topic = "Flock notifications"
|
|
|
|
expected_message = "Rishabh rawat pinned an item to the conversation"
|
2020-08-23 15:49:24 +02:00
|
|
|
self.check_webhook(
|
|
|
|
"pinned", expected_topic, expected_message, content_type="application/json"
|
|
|
|
)
|
2018-03-01 12:13:15 +01:00
|
|
|
|
|
|
|
def test_flock_reminder(self) -> None:
|
2020-04-09 21:51:58 +02:00
|
|
|
expected_topic = "Flock notifications"
|
|
|
|
expected_message = "Rishabh rawat wanted me to remind All"
|
2020-08-23 15:49:24 +02:00
|
|
|
self.check_webhook(
|
|
|
|
"reminder", expected_topic, expected_message, content_type="application/json"
|
|
|
|
)
|
2018-03-01 12:13:15 +01:00
|
|
|
|
|
|
|
def test_flock_todo(self) -> None:
|
2020-04-09 21:51:58 +02:00
|
|
|
expected_topic = "Flock notifications"
|
|
|
|
expected_message = "Rishabh rawat added a to-do in New List 1 list"
|
2020-08-23 15:49:24 +02:00
|
|
|
self.check_webhook(
|
|
|
|
"todo", expected_topic, expected_message, content_type="application/json"
|
|
|
|
)
|