-
Notifications
You must be signed in to change notification settings - Fork 8
/
test_legacy_alerting.py
140 lines (100 loc) · 5.44 KB
/
test_legacy_alerting.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
from unittest import TestCase
from unittest.mock import MagicMock, patch
from grafana_api.model import APIModel
from grafana_api.legacy_alerting import Alerting
class LegacyAlertingTestCase(TestCase):
@patch("grafana_api.api.Api.call_the_api")
def test_get_alerts(self, call_the_api_mock):
model: APIModel = APIModel(host=MagicMock(), token=MagicMock())
alerting: Alerting = Alerting(grafana_api_model=model)
call_the_api_mock.return_value = list([dict({"id": "test"})])
self.assertEqual(list([dict({"id": "test"})]), alerting.get_alerts())
@patch("grafana_api.api.Api.call_the_api")
def test_get_alerts_custom_querystring(self, call_the_api_mock):
model: APIModel = APIModel(host=MagicMock(), token=MagicMock())
alerting: Alerting = Alerting(grafana_api_model=model)
call_the_api_mock.return_value = list([dict({"id": "test"})])
self.assertEqual(list([dict({"id": "test"})]), alerting.get_alerts("test"))
def test_get_alerts_empty_api_string(self):
model: APIModel = APIModel(host=MagicMock(), token=MagicMock())
alerting: Alerting = Alerting(grafana_api_model=model)
with self.assertRaises(ValueError):
alerting.get_alerts("")
@patch("grafana_api.api.Api.call_the_api")
def test_get_alerts_no_alerts_available(self, call_the_api_mock):
model: APIModel = APIModel(host=MagicMock(), token=MagicMock())
alerting: Alerting = Alerting(grafana_api_model=model)
call_the_api_mock.return_value = list()
with self.assertRaises(Exception):
alerting.get_alerts()
@patch("grafana_api.api.Api.call_the_api")
def test_get_alerts_by_dashboard_ids(self, call_the_api_mock):
model: APIModel = APIModel(host=MagicMock(), token=MagicMock())
alerting: Alerting = Alerting(grafana_api_model=model)
call_the_api_mock.return_value = list([dict({"id": "test"})])
self.assertEqual(
list([dict({"id": "test"})]),
alerting.get_alerts_by_dashboard_ids(list([1, 2])),
)
def test_get_alerts_by_dashboard_ids_no_dashboard_ids(self):
model: APIModel = APIModel(host=MagicMock(), token=MagicMock())
alerting: Alerting = Alerting(grafana_api_model=model)
with self.assertRaises(ValueError):
alerting.get_alerts_by_dashboard_ids(list())
@patch("grafana_api.api.Api.call_the_api")
def test_get_alerts_by_dashboard_ids_no_alerts_available(self, call_the_api_mock):
model: APIModel = APIModel(host=MagicMock(), token=MagicMock())
alerting: Alerting = Alerting(grafana_api_model=model)
call_the_api_mock.return_value = list()
with self.assertRaises(Exception):
alerting.get_alerts_by_dashboard_ids(list([1, 2]))
@patch("grafana_api.api.Api.call_the_api")
def test_get_alert_by_id(self, call_the_api_mock):
model: APIModel = APIModel(host=MagicMock(), token=MagicMock())
alerting: Alerting = Alerting(grafana_api_model=model)
call_the_api_mock.return_value = dict({"id": "test"})
self.assertEqual(dict({"id": "test"}), alerting.get_alert_by_id(1))
@patch("grafana_api.api.Api.call_the_api")
def test_get_alert_by_id_upper_case_id_result(self, call_the_api_mock):
# ISSUE: https://github.com/grafana/grafana/issues/51141
model: APIModel = APIModel(host=MagicMock(), token=MagicMock())
alerting: Alerting = Alerting(grafana_api_model=model)
call_the_api_mock.return_value = dict(
{"Id": "test", "PanelId": 112, "NewStateDate": "2022-06-17T09:34:08Z"}
)
self.assertEqual(
dict(
{"id": "test", "panelId": 112, "newStateDate": "2022-06-17T09:34:08Z"}
),
alerting.get_alert_by_id(1),
)
def test_get_alert_by_id_no_id(self):
model: APIModel = APIModel(host=MagicMock(), token=MagicMock())
alerting: Alerting = Alerting(grafana_api_model=model)
with self.assertRaises(ValueError):
alerting.get_alert_by_id(0)
@patch("grafana_api.api.Api.call_the_api")
def test_get_alert_by_id_no_alerts_available(self, call_the_api_mock):
model: APIModel = APIModel(host=MagicMock(), token=MagicMock())
alerting: Alerting = Alerting(grafana_api_model=model)
call_the_api_mock.return_value = dict()
with self.assertRaises(Exception):
alerting.get_alert_by_id(1)
@patch("grafana_api.api.Api.call_the_api")
def test_pause_alert_by_id(self, call_the_api_mock):
model: APIModel = APIModel(host=MagicMock(), token=MagicMock())
alerting: Alerting = Alerting(grafana_api_model=model)
call_the_api_mock.return_value = dict({"message": "alert paused"})
self.assertEqual(None, alerting.pause_alert_by_id(1))
def test_pause_alert_by_id_no_id(self):
model: APIModel = APIModel(host=MagicMock(), token=MagicMock())
alerting: Alerting = Alerting(grafana_api_model=model)
with self.assertRaises(ValueError):
alerting.pause_alert_by_id(0)
@patch("grafana_api.api.Api.call_the_api")
def test_pause_alert_by_id_no_alerts_available(self, call_the_api_mock):
model: APIModel = APIModel(host=MagicMock(), token=MagicMock())
alerting: Alerting = Alerting(grafana_api_model=model)
call_the_api_mock.return_value = dict()
with self.assertRaises(Exception):
alerting.pause_alert_by_id(1)