forked from getsentry/sentry-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_crons.py
More file actions
283 lines (216 loc) · 7.93 KB
/
test_crons.py
File metadata and controls
283 lines (216 loc) · 7.93 KB
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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
import pytest
import uuid
import sentry_sdk
from sentry_sdk.crons import capture_checkin
from sentry_sdk import Hub, configure_scope, set_level
try:
from unittest import mock # python 3.3 and above
except ImportError:
import mock # python < 3.3
@sentry_sdk.monitor(monitor_slug="abc123")
def _hello_world(name):
return "Hello, {}".format(name)
@sentry_sdk.monitor(monitor_slug="def456")
def _break_world(name):
1 / 0
return "Hello, {}".format(name)
def _hello_world_contextmanager(name):
with sentry_sdk.monitor(monitor_slug="abc123"):
return "Hello, {}".format(name)
def _break_world_contextmanager(name):
with sentry_sdk.monitor(monitor_slug="def456"):
1 / 0
return "Hello, {}".format(name)
def test_decorator(sentry_init):
sentry_init()
with mock.patch(
"sentry_sdk.crons.decorator.capture_checkin"
) as fake_capture_checking:
result = _hello_world("Grace")
assert result == "Hello, Grace"
# Check for initial checkin
fake_capture_checking.assert_has_calls(
[
mock.call(monitor_slug="abc123", status="in_progress"),
]
)
# Check for final checkin
assert fake_capture_checking.call_args[1]["monitor_slug"] == "abc123"
assert fake_capture_checking.call_args[1]["status"] == "ok"
assert fake_capture_checking.call_args[1]["duration"]
assert fake_capture_checking.call_args[1]["check_in_id"]
def test_decorator_error(sentry_init):
sentry_init()
with mock.patch(
"sentry_sdk.crons.decorator.capture_checkin"
) as fake_capture_checking:
with pytest.raises(ZeroDivisionError):
result = _break_world("Grace")
assert "result" not in locals()
# Check for initial checkin
fake_capture_checking.assert_has_calls(
[
mock.call(monitor_slug="def456", status="in_progress"),
]
)
# Check for final checkin
assert fake_capture_checking.call_args[1]["monitor_slug"] == "def456"
assert fake_capture_checking.call_args[1]["status"] == "error"
assert fake_capture_checking.call_args[1]["duration"]
assert fake_capture_checking.call_args[1]["check_in_id"]
def test_contextmanager(sentry_init):
sentry_init()
with mock.patch(
"sentry_sdk.crons.decorator.capture_checkin"
) as fake_capture_checking:
result = _hello_world_contextmanager("Grace")
assert result == "Hello, Grace"
# Check for initial checkin
fake_capture_checking.assert_has_calls(
[
mock.call(monitor_slug="abc123", status="in_progress"),
]
)
# Check for final checkin
assert fake_capture_checking.call_args[1]["monitor_slug"] == "abc123"
assert fake_capture_checking.call_args[1]["status"] == "ok"
assert fake_capture_checking.call_args[1]["duration"]
assert fake_capture_checking.call_args[1]["check_in_id"]
def test_contextmanager_error(sentry_init):
sentry_init()
with mock.patch(
"sentry_sdk.crons.decorator.capture_checkin"
) as fake_capture_checking:
with pytest.raises(ZeroDivisionError):
result = _break_world_contextmanager("Grace")
assert "result" not in locals()
# Check for initial checkin
fake_capture_checking.assert_has_calls(
[
mock.call(monitor_slug="def456", status="in_progress"),
]
)
# Check for final checkin
assert fake_capture_checking.call_args[1]["monitor_slug"] == "def456"
assert fake_capture_checking.call_args[1]["status"] == "error"
assert fake_capture_checking.call_args[1]["duration"]
assert fake_capture_checking.call_args[1]["check_in_id"]
def test_capture_checkin_simple(sentry_init):
sentry_init()
check_in_id = capture_checkin(
monitor_slug="abc123",
check_in_id="112233",
status=None,
duration=None,
)
assert check_in_id == "112233"
def test_sample_rate_doesnt_affect_crons(sentry_init, capture_envelopes):
sentry_init(sample_rate=0)
envelopes = capture_envelopes()
capture_checkin(check_in_id="112233")
assert len(envelopes) == 1
check_in = envelopes[0].items[0].payload.json
assert check_in["check_in_id"] == "112233"
def test_capture_checkin_new_id(sentry_init):
sentry_init()
with mock.patch("uuid.uuid4") as mock_uuid:
mock_uuid.return_value = uuid.UUID("a8098c1a-f86e-11da-bd1a-00112444be1e")
check_in_id = capture_checkin(
monitor_slug="abc123",
check_in_id=None,
status=None,
duration=None,
)
assert check_in_id == "a8098c1af86e11dabd1a00112444be1e"
def test_end_to_end(sentry_init, capture_envelopes):
sentry_init()
envelopes = capture_envelopes()
capture_checkin(
monitor_slug="abc123",
check_in_id="112233",
duration=123,
status="ok",
)
check_in = envelopes[0].items[0].payload.json
# Check for final checkin
assert check_in["check_in_id"] == "112233"
assert check_in["monitor_slug"] == "abc123"
assert check_in["status"] == "ok"
assert check_in["duration"] == 123
def test_monitor_config(sentry_init, capture_envelopes):
sentry_init()
envelopes = capture_envelopes()
monitor_config = {
"schedule": {"type": "crontab", "value": "0 0 * * *"},
}
capture_checkin(monitor_slug="abc123", monitor_config=monitor_config)
check_in = envelopes[0].items[0].payload.json
# Check for final checkin
assert check_in["monitor_slug"] == "abc123"
assert check_in["monitor_config"] == monitor_config
# Without passing a monitor_config the field is not in the checkin
capture_checkin(monitor_slug="abc123")
check_in = envelopes[1].items[0].payload.json
assert check_in["monitor_slug"] == "abc123"
assert "monitor_config" not in check_in
def test_capture_checkin_sdk_not_initialized():
# Tests that the capture_checkin does not raise an error when Sentry SDK is not initialized.
# sentry_init() is intentionally omitted.
check_in_id = capture_checkin(
monitor_slug="abc123",
check_in_id="112233",
status=None,
duration=None,
)
assert check_in_id == "112233"
def test_scope_data_in_checkin(sentry_init, capture_envelopes):
sentry_init()
envelopes = capture_envelopes()
valid_keys = [
# Mandatory event keys
"type",
"event_id",
"timestamp",
"platform",
# Optional event keys
"release",
"environment",
# Mandatory check-in specific keys
"check_in_id",
"monitor_slug",
"status",
# Optional check-in specific keys
"duration",
"monitor_config",
"contexts", # an event processor adds this
# TODO: These fields need to be checked if valid for checkin:
"_meta",
"tags",
"extra", # an event processor adds this
"modules",
"server_name",
"sdk",
]
hub = Hub.current
with configure_scope() as scope:
# Add some data to the scope
set_level("warning")
hub.add_breadcrumb(message="test breadcrumb")
scope.set_tag("test_tag", "test_value")
scope.set_extra("test_extra", "test_value")
scope.set_context("test_context", {"test_key": "test_value"})
capture_checkin(
monitor_slug="abc123",
check_in_id="112233",
status="ok",
duration=123,
)
(envelope,) = envelopes
check_in_event = envelope.items[0].payload.json
invalid_keys = []
for key in check_in_event.keys():
if key not in valid_keys:
invalid_keys.append(key)
assert len(invalid_keys) == 0, "Unexpected keys found in checkin: {}".format(
invalid_keys
)