2020-02-07 10:04:22 +01:00
|
|
|
from zerver.lib.test_classes import WebhookTestCase
|
|
|
|
|
|
|
|
|
|
|
|
class AlertmanagerHookTests(WebhookTestCase):
|
|
|
|
STREAM_NAME = 'alertmanager'
|
|
|
|
URL_TEMPLATE = "/api/v1/external/alertmanager?&api_key={api_key}&stream={stream}&name=topic&desc=description"
|
|
|
|
FIXTURE_DIR_NAME = 'alertmanager'
|
|
|
|
|
|
|
|
def test_error_issue_message(self) -> None:
|
|
|
|
expected_topic = "andromeda"
|
|
|
|
expected_message = """
|
|
|
|
:alert: **FIRING**
|
|
|
|
* CPU core temperature is 34.75C ([graph](http://cobalt:9090/graph?g0.expr=avg+by%28host%29+%28sensors_temp_input%7Bfeature%3D~%22core_%5B0-9%5D%2B%22%7D%29+%3E+15&g0.tab=0))
|
|
|
|
* CPU core temperature is 17.625C ([graph](http://cobalt:9090/graph?g0.expr=avg+by%28host%29+%28sensors_temp_input%7Bfeature%3D~%22core_%5B0-9%5D%2B%22%7D%29+%3E+15&g0.tab=0))
|
|
|
|
""".strip()
|
|
|
|
|
2020-08-23 15:49:24 +02:00
|
|
|
self.check_webhook(
|
2021-02-12 08:19:30 +01:00
|
|
|
"alert",
|
|
|
|
expected_topic,
|
|
|
|
expected_message,
|
|
|
|
"application/json",
|
2020-02-07 10:04:22 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
def test_single_error_issue_message(self) -> None:
|
|
|
|
expected_topic = "andromeda"
|
|
|
|
expected_message = """
|
|
|
|
:squared_ok: **Resolved** CPU core temperature is 34.75C ([graph](http://cobalt:9090/graph?g0.expr=avg+by%28host%29+%28sensors_temp_input%7Bfeature%3D~%22core_%5B0-9%5D%2B%22%7D%29+%3E+15&g0.tab=0))
|
|
|
|
""".strip()
|
|
|
|
|
2020-08-23 15:49:24 +02:00
|
|
|
self.check_webhook(
|
2021-02-12 08:19:30 +01:00
|
|
|
"single_alert",
|
|
|
|
expected_topic,
|
|
|
|
expected_message,
|
|
|
|
"application/json",
|
2020-02-07 10:04:22 +01:00
|
|
|
)
|