2020-04-15 06:06:49 +02:00
|
|
|
from zerver.lib.test_classes import WebhookTestCase
|
|
|
|
|
|
|
|
|
|
|
|
class GrafanaHookTests(WebhookTestCase):
|
2021-02-12 08:20:45 +01:00
|
|
|
STREAM_NAME = "grafana"
|
2020-04-15 06:06:49 +02:00
|
|
|
URL_TEMPLATE = "/api/v1/external/grafana?&api_key={api_key}&stream={stream}"
|
2021-02-12 08:20:45 +01:00
|
|
|
FIXTURE_DIR_NAME = "grafana"
|
2020-04-15 06:06:49 +02:00
|
|
|
|
|
|
|
# Note: Include a test function per each distinct message condition your integration supports
|
|
|
|
def test_alert(self) -> None:
|
|
|
|
expected_topic = "[Alerting] Test notification"
|
|
|
|
expected_message = """
|
|
|
|
[Test rule](http://localhost:3000/)
|
|
|
|
|
|
|
|
Someone is testing the alert notification within grafana.
|
|
|
|
|
|
|
|
**High value:** 100
|
|
|
|
**Higher Value:** 200
|
|
|
|
|
|
|
|
[Click to view visualization](https://grafana.com/assets/img/blog/mixed_styles.png)
|
|
|
|
""".strip()
|
|
|
|
|
|
|
|
# use fixture named helloworld_hello
|
2020-08-23 15:49:24 +02:00
|
|
|
self.check_webhook(
|
|
|
|
"alert",
|
|
|
|
expected_topic,
|
|
|
|
expected_message,
|
|
|
|
content_type="application/x-www-form-urlencoded",
|
|
|
|
)
|
2020-04-15 06:06:49 +02:00
|
|
|
|
|
|
|
def test_no_data_alert(self) -> None:
|
|
|
|
expected_topic = "[Alerting] No Data alert"
|
|
|
|
expected_message = """
|
|
|
|
[No Data alert](http://localhost:3000/d/GG2qhR3Wz/alerttest?fullscreen&edit&tab=alert&panelId=6&orgId=1)
|
|
|
|
|
|
|
|
The panel has no data.
|
|
|
|
|
|
|
|
""".strip()
|
|
|
|
|
|
|
|
# use fixture named helloworld_hello
|
2020-08-23 15:49:24 +02:00
|
|
|
self.check_webhook(
|
|
|
|
"no_data_alert",
|
|
|
|
expected_topic,
|
|
|
|
expected_message,
|
|
|
|
content_type="application/x-www-form-urlencoded",
|
|
|
|
)
|
2020-04-15 06:06:49 +02:00
|
|
|
|
|
|
|
def test_no_message_alert(self) -> None:
|
|
|
|
expected_topic = "[Alerting] No Message alert"
|
|
|
|
expected_message = """
|
|
|
|
[No Message alert](http://localhost:3000/d/GG2qhR3Wz/alerttest?fullscreen&edit&tab=alert&panelId=8&orgId=1)
|
|
|
|
|
|
|
|
**A-series:** 21.573108436586445
|
|
|
|
""".strip()
|
|
|
|
|
|
|
|
# use fixture named helloworld_hello
|
2020-08-23 15:49:24 +02:00
|
|
|
self.check_webhook(
|
|
|
|
"no_message_alert",
|
|
|
|
expected_topic,
|
|
|
|
expected_message,
|
|
|
|
content_type="application/x-www-form-urlencoded",
|
|
|
|
)
|