2019-09-03 17:15:31 +02:00
|
|
|
from urllib.parse import urlencode
|
|
|
|
|
2017-11-16 00:43:10 +01:00
|
|
|
from zerver.lib.test_classes import WebhookTestCase
|
|
|
|
|
2020-01-14 22:06:24 +01:00
|
|
|
|
2016-12-06 00:41:14 +01:00
|
|
|
class PapertrailHookTests(WebhookTestCase):
|
2021-02-12 08:20:45 +01:00
|
|
|
STREAM_NAME = "papertrail"
|
2018-03-16 22:53:50 +01:00
|
|
|
URL_TEMPLATE = "/api/v1/external/papertrail?&api_key={api_key}&stream={stream}"
|
2021-02-12 08:20:45 +01:00
|
|
|
FIXTURE_DIR_NAME = "papertrail"
|
2016-12-06 00:41:14 +01:00
|
|
|
|
2017-11-04 07:47:46 +01:00
|
|
|
def test_short_message(self) -> None:
|
2020-04-09 21:51:58 +02:00
|
|
|
expected_topic = "logs"
|
2019-04-17 22:51:57 +02:00
|
|
|
expected_message = """
|
|
|
|
[Search for "Important stuff"](https://papertrailapp.com/searches/42) found **2** matches:
|
|
|
|
|
|
|
|
May 18 20:30:02 - abc - cron OR server1:
|
|
|
|
``` quote
|
|
|
|
message body
|
|
|
|
```
|
|
|
|
May 18 20:30:02 - server1 - cron OR server1:
|
|
|
|
``` quote
|
|
|
|
A short event
|
2016-12-06 00:41:14 +01:00
|
|
|
```
|
2019-04-17 22:51:57 +02:00
|
|
|
""".strip()
|
2016-12-06 00:41:14 +01:00
|
|
|
|
2020-08-23 15:49:24 +02:00
|
|
|
self.check_webhook(
|
|
|
|
"short_post",
|
|
|
|
expected_topic,
|
|
|
|
expected_message,
|
|
|
|
content_type="application/x-www-form-urlencoded",
|
|
|
|
)
|
2016-12-06 00:41:14 +01:00
|
|
|
|
2017-11-04 07:47:46 +01:00
|
|
|
def test_long_message(self) -> None:
|
2020-04-09 21:51:58 +02:00
|
|
|
expected_topic = "logs"
|
2019-04-17 22:51:57 +02:00
|
|
|
expected_message = """
|
|
|
|
[Search for "Important stuff"](https://papertrailapp.com/searches/42) found **5** matches:
|
|
|
|
|
|
|
|
May 18 20:30:02 - abc - cron OR server1:
|
|
|
|
``` quote
|
|
|
|
message body 1
|
2016-12-06 00:41:14 +01:00
|
|
|
```
|
2019-04-17 22:51:57 +02:00
|
|
|
May 18 20:30:02 - abc - cron OR server1:
|
|
|
|
``` quote
|
|
|
|
message body 2
|
2016-12-06 00:41:14 +01:00
|
|
|
```
|
2019-04-17 22:51:57 +02:00
|
|
|
May 18 20:30:02 - abc - cron OR server1:
|
|
|
|
``` quote
|
|
|
|
message body 3
|
|
|
|
```
|
|
|
|
May 18 20:30:02 - abc - cron OR server1:
|
|
|
|
``` quote
|
|
|
|
message body 4
|
|
|
|
```
|
|
|
|
[See more](https://papertrailapp.com/searches/42)
|
|
|
|
""".strip()
|
|
|
|
|
2020-08-23 15:49:24 +02:00
|
|
|
self.check_webhook(
|
|
|
|
"long_post",
|
|
|
|
expected_topic,
|
|
|
|
expected_message,
|
|
|
|
content_type="application/x-www-form-urlencoded",
|
|
|
|
)
|
2016-12-06 00:41:14 +01:00
|
|
|
|
2019-09-03 17:15:31 +02:00
|
|
|
def test_incorrect_message(self) -> None:
|
|
|
|
with self.assertRaises(AssertionError) as e:
|
2020-08-23 15:49:24 +02:00
|
|
|
self.check_webhook(
|
|
|
|
"incorrect_post", "", "", content_type="application/x-www-form-urlencoded"
|
|
|
|
)
|
2019-09-03 17:15:31 +02:00
|
|
|
|
2020-06-21 05:15:08 +02:00
|
|
|
self.assertIn("events key is missing from payload", e.exception.args[0])
|
2019-09-03 17:15:31 +02:00
|
|
|
|
2018-05-10 19:34:01 +02:00
|
|
|
def get_body(self, fixture_name: str) -> str:
|
2019-09-03 17:15:31 +02:00
|
|
|
# Papertrail webhook sends a POST request with payload parameter
|
|
|
|
# containing the JSON body. Documented here:
|
|
|
|
# https://help.papertrailapp.com/kb/how-it-works/web-hooks#encoding
|
|
|
|
body = self.webhook_fixture_data("papertrail", fixture_name, file_type="json")
|
2021-02-12 08:20:45 +01:00
|
|
|
return urlencode({"payload": body})
|