2017-01-30 21:18:41 +01:00
|
|
|
from zerver.lib.test_classes import WebhookTestCase
|
|
|
|
|
2020-01-14 22:06:24 +01:00
|
|
|
|
2017-01-30 21:18:41 +01:00
|
|
|
class SlackWebhookTests(WebhookTestCase):
|
2021-02-12 08:20:45 +01:00
|
|
|
STREAM_NAME = "slack"
|
2017-01-30 21:18:41 +01:00
|
|
|
URL_TEMPLATE = "/api/v1/external/slack?stream={stream}&api_key={api_key}"
|
2021-06-26 09:18:33 +02:00
|
|
|
WEBHOOK_DIR_NAME = "slack"
|
2017-01-30 21:18:41 +01:00
|
|
|
|
2017-11-04 07:47:46 +01:00
|
|
|
def test_slack_channel_to_topic(self) -> None:
|
2017-01-30 21:18:41 +01:00
|
|
|
|
2020-04-09 21:51:58 +02:00
|
|
|
expected_topic = "channel: general"
|
2022-01-08 03:06:51 +01:00
|
|
|
expected_message = "**slack_user**: test"
|
2020-08-23 15:49:24 +02:00
|
|
|
self.check_webhook(
|
|
|
|
"message_info",
|
|
|
|
expected_topic,
|
|
|
|
expected_message,
|
|
|
|
content_type="application/x-www-form-urlencoded",
|
|
|
|
)
|
2017-01-30 21:18:41 +01:00
|
|
|
|
2017-11-04 07:47:46 +01:00
|
|
|
def test_slack_channel_to_stream(self) -> None:
|
2017-01-30 21:18:41 +01:00
|
|
|
|
2021-02-12 08:20:45 +01:00
|
|
|
self.STREAM_NAME = "general"
|
2017-01-30 21:18:41 +01:00
|
|
|
self.url = "{}{}".format(self.url, "&channels_map_to_topics=0")
|
2020-04-09 21:51:58 +02:00
|
|
|
expected_topic = "Message from Slack"
|
2022-01-08 03:06:51 +01:00
|
|
|
expected_message = "**slack_user**: test"
|
2020-08-23 15:49:24 +02:00
|
|
|
self.check_webhook(
|
|
|
|
"message_info",
|
|
|
|
expected_topic,
|
|
|
|
expected_message,
|
|
|
|
content_type="application/x-www-form-urlencoded",
|
|
|
|
)
|
2017-01-30 21:18:41 +01:00
|
|
|
|
2017-11-04 07:47:46 +01:00
|
|
|
def test_missing_data_user_name(self) -> None:
|
2017-01-30 21:18:41 +01:00
|
|
|
|
2021-02-12 08:20:45 +01:00
|
|
|
payload = self.get_body("message_info_missing_user_name")
|
2017-01-30 21:18:41 +01:00
|
|
|
url = self.build_webhook_url()
|
|
|
|
result = self.client_post(url, payload, content_type="application/x-www-form-urlencoded")
|
|
|
|
self.assert_json_error(result, "Missing 'user_name' argument")
|
|
|
|
|
2017-11-04 07:47:46 +01:00
|
|
|
def test_missing_data_channel_name(self) -> None:
|
2017-01-30 21:18:41 +01:00
|
|
|
|
2021-02-12 08:20:45 +01:00
|
|
|
payload = self.get_body("message_info_missing_channel_name")
|
2017-01-30 21:18:41 +01:00
|
|
|
url = self.build_webhook_url()
|
|
|
|
result = self.client_post(url, payload, content_type="application/x-www-form-urlencoded")
|
|
|
|
self.assert_json_error(result, "Missing 'channel_name' argument")
|
|
|
|
|
2017-11-04 07:47:46 +01:00
|
|
|
def test_missing_data_text(self) -> None:
|
2017-01-30 21:18:41 +01:00
|
|
|
|
2021-02-12 08:20:45 +01:00
|
|
|
payload = self.get_body("message_info_missing_text")
|
2017-01-30 21:18:41 +01:00
|
|
|
url = self.build_webhook_url()
|
|
|
|
result = self.client_post(url, payload, content_type="application/x-www-form-urlencoded")
|
|
|
|
self.assert_json_error(result, "Missing 'text' argument")
|
|
|
|
|
2017-11-04 07:47:46 +01:00
|
|
|
def test_invalid_channels_map_to_topics(self) -> None:
|
2017-01-30 21:18:41 +01:00
|
|
|
|
2021-02-12 08:20:45 +01:00
|
|
|
payload = self.get_body("message_info")
|
2017-01-30 21:18:41 +01:00
|
|
|
url = "{}{}".format(self.url, "&channels_map_to_topics=abc")
|
|
|
|
result = self.client_post(url, payload, content_type="application/x-www-form-urlencoded")
|
2021-02-12 08:20:45 +01:00
|
|
|
self.assert_json_error(result, "Error: channels_map_to_topics parameter other than 0 or 1")
|
2017-01-30 21:18:41 +01:00
|
|
|
|
2017-11-09 08:59:34 +01:00
|
|
|
def get_body(self, fixture_name: str) -> str:
|
2017-01-30 21:18:41 +01:00
|
|
|
|
2018-04-20 03:57:21 +02:00
|
|
|
return self.webhook_fixture_data("slack", fixture_name, file_type="txt")
|