mirror of
https://github.com/bsedin/matrix-webhook.git
synced 2026-04-09 11:25:40 +00:00
Support Grafana v9.x messages, fixes #29
This commit is contained in:
51
tests/test_grafana_9x.py
Normal file
51
tests/test_grafana_9x.py
Normal file
@@ -0,0 +1,51 @@
|
||||
"""
|
||||
Test module for grafana v9 formatter.
|
||||
|
||||
ref https://grafana.com/docs/grafana/latest/alerting/old-alerting/notifications/#webhook
|
||||
"""
|
||||
|
||||
import unittest
|
||||
|
||||
import httpx
|
||||
import nio
|
||||
|
||||
from .start import BOT_URL, FULL_ID, MATRIX_ID, MATRIX_PW, MATRIX_URL
|
||||
|
||||
|
||||
class Grafana9xFormatterTest(unittest.IsolatedAsyncioTestCase):
|
||||
"""Grafana formatter test class."""
|
||||
|
||||
async def test_grafana_body(self):
|
||||
"""Send a markdown message, and check the result."""
|
||||
messages = []
|
||||
client = nio.AsyncClient(MATRIX_URL, MATRIX_ID)
|
||||
|
||||
await client.login(MATRIX_PW)
|
||||
room = await client.room_create()
|
||||
|
||||
with open("tests/example_grafana_9x.json") as f:
|
||||
example_grafana_request = f.read()
|
||||
self.assertEqual(
|
||||
httpx.post(
|
||||
f"{BOT_URL}/{room.room_id}",
|
||||
params={"formatter": "grafana_9x"},
|
||||
content=example_grafana_request,
|
||||
).json(),
|
||||
{"status": 200, "ret": "OK"},
|
||||
)
|
||||
|
||||
sync = await client.sync()
|
||||
messages = await client.room_messages(room.room_id, sync.next_batch)
|
||||
await client.close()
|
||||
|
||||
message = messages.chunk[0]
|
||||
self.assertEqual(message.sender, FULL_ID)
|
||||
expected_body = (
|
||||
"#### [FIRING:1] (TestAlert Grafana)\n**Firing**\n\n\n\nValue: [ metr"
|
||||
"ic='foo' labels={instance=bar} value=10 ]\n\nLabels:\n\n - alertname "
|
||||
"= TestAlert\n\n - instance = Grafana\n\nAnnotations:\n\n - summary = "
|
||||
"Notification test\n\nSilence: https://grafana.example.com/alerting/si"
|
||||
"lence/new?alertmanager=grafana&matcher=alertname%3DTestAlert&matcher="
|
||||
"instance%3DGrafana\n\n\n\n"
|
||||
)
|
||||
self.assertEqual(message.body, expected_body)
|
||||
Reference in New Issue
Block a user