-
Notifications
You must be signed in to change notification settings - Fork 606
Expand file tree
/
Copy pathtest_general.py
More file actions
662 lines (604 loc) · 18.2 KB
/
test_general.py
File metadata and controls
662 lines (604 loc) · 18.2 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
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
import sys
import os
import pytest
from sentry_sdk.ai.utils import _normalize_data
from sentry_sdk.utils import (
BadDsn,
Dsn,
safe_repr,
exceptions_from_error_tuple,
filename_for_module,
iter_event_stacktraces,
to_base64,
from_base64,
set_in_app_in_frames,
strip_string,
AnnotatedValue,
)
from sentry_sdk.consts import EndpointType
try:
from hypothesis import given
import hypothesis.strategies as st
except ImportError:
pass
else:
any_string = st.one_of(st.binary(), st.text())
@given(x=any_string)
def test_safe_repr_never_broken_for_strings(x):
r = safe_repr(x)
assert isinstance(r, str)
assert "broken repr" not in r
def test_safe_repr_regressions():
assert "лошадь" in safe_repr("лошадь")
@pytest.mark.parametrize("prefix", ("", "abcd", "лошадь"))
@pytest.mark.parametrize("character", "\x00\x07\x1b\n")
def test_safe_repr_non_printable(prefix, character):
"""Check that non-printable characters are escaped"""
string = prefix + character
assert character not in safe_repr(string)
assert character not in safe_repr(string.encode("utf-8"))
def test_abs_path():
"""Check if abs_path is actually an absolute path. This can happen either
with eval/exec like here, or when the file in the frame is relative to
__main__"""
code = compile("1/0", "test.py", "exec")
try:
exec(code, {})
except Exception:
exceptions = exceptions_from_error_tuple(sys.exc_info())
(exception,) = exceptions
frame1, frame2 = frames = exception["stacktrace"]["frames"]
for frame in frames:
assert os.path.abspath(frame["abs_path"]) == frame["abs_path"]
assert frame1["filename"] == "tests/utils/test_general.py"
assert frame2["filename"] == "test.py"
def test_filename():
x = filename_for_module
assert x("bogus", "bogus") == "bogus"
assert x("bogus", "bogus.pyc") == "bogus.py"
assert x("os", os.__file__) == "os.py"
assert x("foo.bar", "path/to/foo/bar.py") == "path/to/foo/bar.py"
import sentry_sdk.utils
assert x("sentry_sdk.utils", sentry_sdk.utils.__file__) == "sentry_sdk/utils.py"
def test_filename_module_file_is_none():
class DummyModule:
__file__ = None
os.sys.modules["foo"] = DummyModule()
assert filename_for_module("foo.bar", "path/to/foo/bar.py") == "path/to/foo/bar.py"
@pytest.mark.parametrize(
"given,expected_envelope",
[
(
"https://foobar@sentry.io/123",
"https://sentry.io/api/123/envelope/",
),
(
"https://foobar@sentry.io/bam/123",
"https://sentry.io/bam/api/123/envelope/",
),
(
"https://foobar@sentry.io/bam/baz/123",
"https://sentry.io/bam/baz/api/123/envelope/",
),
],
)
def test_parse_dsn_paths(given, expected_envelope):
dsn = Dsn(given)
auth = dsn.to_auth()
assert auth.get_api_url() == expected_envelope
assert auth.get_api_url(EndpointType.ENVELOPE) == expected_envelope
@pytest.mark.parametrize(
"given,expected",
[
("https://foobar@sentry.io/123", None),
("https://foobar@o1234.ingest.sentry.io/123", "1234"),
],
)
def test_parse_dsn_org_id(given, expected):
dsn = Dsn(given)
assert dsn.org_id == expected
@pytest.mark.parametrize(
"dsn",
[
"https://foobar@sentry.io"
"https://foobar@sentry.io/"
"https://foobar@sentry.io/asdf"
"https://foobar@sentry.io/asdf/"
"https://foobar@sentry.io/asdf/123/"
],
)
def test_parse_invalid_dsn(dsn):
with pytest.raises(BadDsn):
dsn = Dsn(dsn)
@pytest.mark.parametrize(
"dsn,error_message",
[
("foo://barbaz@sentry.io", "Unsupported scheme 'foo'"),
("https://foobar@", "Missing hostname"),
("https://@sentry.io", "Missing public key"),
],
)
def test_dsn_validations(dsn, error_message):
with pytest.raises(BadDsn) as e:
dsn = Dsn(dsn)
assert str(e.value) == error_message
@pytest.mark.parametrize(
"frame,in_app_include,in_app_exclude,project_root,resulting_frame",
[
[
{
"abs_path": "/home/ubuntu/fastapi/.venv/lib/python3.10/site-packages/fastapi/routing.py",
},
None,
None,
None,
{
"abs_path": "/home/ubuntu/fastapi/.venv/lib/python3.10/site-packages/fastapi/routing.py",
"in_app": False,
},
],
[
{
"module": "fastapi.routing",
"abs_path": "/home/ubuntu/fastapi/.venv/lib/python3.10/site-packages/fastapi/routing.py",
},
None,
None,
None,
{
"module": "fastapi.routing",
"abs_path": "/home/ubuntu/fastapi/.venv/lib/python3.10/site-packages/fastapi/routing.py",
"in_app": False,
},
],
[
{
"module": "fastapi.routing",
"abs_path": "/home/ubuntu/fastapi/.venv/lib/python3.10/site-packages/fastapi/routing.py",
"in_app": True,
},
None,
None,
None,
{
"module": "fastapi.routing",
"abs_path": "/home/ubuntu/fastapi/.venv/lib/python3.10/site-packages/fastapi/routing.py",
"in_app": True,
},
],
[
{
"abs_path": "C:\\Users\\winuser\\AppData\\Roaming\\Python\\Python35\\site-packages\\fastapi\\routing.py",
},
None,
None,
None,
{
"abs_path": "C:\\Users\\winuser\\AppData\\Roaming\\Python\\Python35\\site-packages\\fastapi\\routing.py",
"in_app": False,
},
],
[
{
"module": "fastapi.routing",
"abs_path": "/usr/lib/python2.7/dist-packages/fastapi/routing.py",
},
None,
None,
None,
{
"module": "fastapi.routing",
"abs_path": "/usr/lib/python2.7/dist-packages/fastapi/routing.py",
"in_app": False,
},
],
[
{
"abs_path": "/home/ubuntu/fastapi/main.py",
},
None,
None,
None,
{
"abs_path": "/home/ubuntu/fastapi/main.py",
},
],
[
{
"module": "main",
"abs_path": "/home/ubuntu/fastapi/main.py",
},
None,
None,
None,
{
"module": "main",
"abs_path": "/home/ubuntu/fastapi/main.py",
},
],
# include
[
{
"abs_path": "/home/ubuntu/fastapi/.venv/lib/python3.10/site-packages/fastapi/routing.py",
},
["fastapi"],
None,
None,
{
"abs_path": "/home/ubuntu/fastapi/.venv/lib/python3.10/site-packages/fastapi/routing.py",
"in_app": False, # because there is no module set
},
],
[
{
"module": "fastapi.routing",
"abs_path": "/home/ubuntu/fastapi/.venv/lib/python3.10/site-packages/fastapi/routing.py",
},
["fastapi"],
None,
None,
{
"module": "fastapi.routing",
"abs_path": "/home/ubuntu/fastapi/.venv/lib/python3.10/site-packages/fastapi/routing.py",
"in_app": True,
},
],
[
{
"module": "fastapi.routing",
"abs_path": "/home/ubuntu/fastapi/.venv/lib/python3.10/site-packages/fastapi/routing.py",
"in_app": False,
},
["fastapi"],
None,
None,
{
"module": "fastapi.routing",
"abs_path": "/home/ubuntu/fastapi/.venv/lib/python3.10/site-packages/fastapi/routing.py",
"in_app": False,
},
],
[
{
"abs_path": "C:\\Users\\winuser\\AppData\\Roaming\\Python\\Python35\\site-packages\\fastapi\\routing.py",
},
["fastapi"],
None,
None,
{
"abs_path": "C:\\Users\\winuser\\AppData\\Roaming\\Python\\Python35\\site-packages\\fastapi\\routing.py",
"in_app": False, # because there is no module set
},
],
[
{
"module": "fastapi.routing",
"abs_path": "/usr/lib/python2.7/dist-packages/fastapi/routing.py",
},
["fastapi"],
None,
None,
{
"module": "fastapi.routing",
"abs_path": "/usr/lib/python2.7/dist-packages/fastapi/routing.py",
"in_app": True,
},
],
[
{
"abs_path": "/home/ubuntu/fastapi/main.py",
},
["fastapi"],
None,
None,
{
"abs_path": "/home/ubuntu/fastapi/main.py",
},
],
[
{
"module": "main",
"abs_path": "/home/ubuntu/fastapi/main.py",
},
["fastapi"],
None,
None,
{
"module": "main",
"abs_path": "/home/ubuntu/fastapi/main.py",
},
],
# exclude
[
{
"abs_path": "/home/ubuntu/fastapi/.venv/lib/python3.10/site-packages/fastapi/routing.py",
},
None,
["main"],
None,
{
"abs_path": "/home/ubuntu/fastapi/.venv/lib/python3.10/site-packages/fastapi/routing.py",
"in_app": False,
},
],
[
{
"module": "fastapi.routing",
"abs_path": "/home/ubuntu/fastapi/.venv/lib/python3.10/site-packages/fastapi/routing.py",
},
None,
["main"],
None,
{
"module": "fastapi.routing",
"abs_path": "/home/ubuntu/fastapi/.venv/lib/python3.10/site-packages/fastapi/routing.py",
"in_app": False,
},
],
[
{
"module": "fastapi.routing",
"abs_path": "/home/ubuntu/fastapi/.venv/lib/python3.10/site-packages/fastapi/routing.py",
"in_app": True,
},
None,
["main"],
None,
{
"module": "fastapi.routing",
"abs_path": "/home/ubuntu/fastapi/.venv/lib/python3.10/site-packages/fastapi/routing.py",
"in_app": True,
},
],
[
{
"abs_path": "C:\\Users\\winuser\\AppData\\Roaming\\Python\\Python35\\site-packages\\fastapi\\routing.py",
},
None,
["main"],
None,
{
"abs_path": "C:\\Users\\winuser\\AppData\\Roaming\\Python\\Python35\\site-packages\\fastapi\\routing.py",
"in_app": False,
},
],
[
{
"module": "fastapi.routing",
"abs_path": "/usr/lib/python2.7/dist-packages/fastapi/routing.py",
},
None,
["main"],
None,
{
"module": "fastapi.routing",
"abs_path": "/usr/lib/python2.7/dist-packages/fastapi/routing.py",
"in_app": False,
},
],
[
{
"abs_path": "/home/ubuntu/fastapi/main.py",
},
None,
["main"],
None,
{
"abs_path": "/home/ubuntu/fastapi/main.py",
},
],
[
{
"module": "main",
"abs_path": "/home/ubuntu/fastapi/main.py",
},
None,
["main"],
None,
{
"module": "main",
"abs_path": "/home/ubuntu/fastapi/main.py",
"in_app": False,
},
],
[
{
"module": "fastapi.routing",
},
None,
None,
None,
{
"module": "fastapi.routing",
},
],
[
{
"module": "fastapi.routing",
},
["fastapi"],
None,
None,
{
"module": "fastapi.routing",
"in_app": True,
},
],
[
{
"module": "fastapi.routing",
},
None,
["fastapi"],
None,
{
"module": "fastapi.routing",
"in_app": False,
},
],
# with project_root set
[
{
"module": "main",
"abs_path": "/home/ubuntu/fastapi/main.py",
},
None,
None,
"/home/ubuntu/fastapi",
{
"module": "main",
"abs_path": "/home/ubuntu/fastapi/main.py",
"in_app": True,
},
],
[
{
"module": "main",
"abs_path": "/home/ubuntu/fastapi/main.py",
},
["main"],
None,
"/home/ubuntu/fastapi",
{
"module": "main",
"abs_path": "/home/ubuntu/fastapi/main.py",
"in_app": True,
},
],
[
{
"module": "main",
"abs_path": "/home/ubuntu/fastapi/main.py",
},
None,
["main"],
"/home/ubuntu/fastapi",
{
"module": "main",
"abs_path": "/home/ubuntu/fastapi/main.py",
"in_app": False,
},
],
],
)
def test_set_in_app_in_frames(
frame, in_app_include, in_app_exclude, project_root, resulting_frame
):
new_frames = set_in_app_in_frames(
[frame],
in_app_include=in_app_include,
in_app_exclude=in_app_exclude,
project_root=project_root,
)
assert new_frames[0] == resulting_frame
def test_iter_stacktraces():
assert set(
iter_event_stacktraces(
{
"threads": {"values": [{"stacktrace": 1}]},
"stacktrace": 2,
"exception": {"values": [{"stacktrace": 3}]},
}
)
) == {1, 2, 3}
@pytest.mark.parametrize(
("original", "base64_encoded"),
[
# ascii only
("Dogs are great!", "RG9ncyBhcmUgZ3JlYXQh"),
# emoji
("🐶", "8J+Qtg=="),
# non-ascii
(
"Καλό κορίτσι, Μάιζεϊ!",
"zprOsc67z4wgzrrOv8+Bzq/PhM+DzrksIM6czqzOuc62zrXPiiE=",
),
# mix of ascii and non-ascii
(
"Of margir hundar! Ég geri ráð fyrir að ég þurfi stærra rúm.",
"T2YgbWFyZ2lyIGh1bmRhciEgw4lnIGdlcmkgcsOhw7AgZnlyaXIgYcOwIMOpZyDDvnVyZmkgc3TDpnJyYSByw7ptLg==",
),
],
)
def test_successful_base64_conversion(original, base64_encoded):
# all unicode characters should be handled correctly
assert to_base64(original) == base64_encoded
assert from_base64(base64_encoded) == original
# "to" and "from" should be inverses
assert from_base64(to_base64(original)) == original
assert to_base64(from_base64(base64_encoded)) == base64_encoded
@pytest.mark.parametrize(
"input",
[
1231, # incorrect type
True, # incorrect type
[], # incorrect type
{}, # incorrect type
None, # incorrect type
"yayfordogs", # wrong length
"#dog", # invalid ascii character
"🐶", # non-ascii character
],
)
def test_failed_base64_conversion(input):
# conversion from base64 should fail if given input of the wrong type or
# input which isn't a valid base64 string
assert from_base64(input) is None
# any string can be converted to base64, so only type errors will cause
# failures
if not isinstance(input, str):
assert to_base64(input) is None
@pytest.mark.parametrize(
"input,max_length,result",
[
[None, None, None],
["a" * 256, None, "a" * 256],
[
"a" * 257,
256,
AnnotatedValue(
value="a" * 253 + "...",
metadata={"len": 257, "rem": [["!limit", "x", 253, 256]]},
),
],
["éééé", None, "éééé"],
[
"éééé",
5,
AnnotatedValue(
value="é...", metadata={"len": 8, "rem": [["!limit", "x", 2, 5]]}
),
],
[
"\udfff\udfff\udfff\udfff\udfff\udfff",
5,
AnnotatedValue(
value="\udfff\udfff...",
metadata={
"len": 6,
"rem": [["!limit", "x", 5 - 3, 5]],
},
),
],
],
)
def test_strip_string(input, max_length, result):
assert strip_string(input, max_length) == result
def test_normalize_data_with_pydantic_class():
"""Test that _normalize_data handles Pydantic model classes"""
class TestClass:
name: str = None
def __init__(self, name: str):
self.name = name
def model_dump(self):
return {"name": self.name}
# Test with class (should NOT call model_dump())
result = _normalize_data(TestClass)
assert result == "<ClassType: TestClass>"
# Test with instance (should call model_dump())
instance = TestClass(name="test")
result = _normalize_data(instance)
assert result == {"name": "test"}
# Test with dict containing class
result = _normalize_data({"schema": TestClass, "count": 5})
assert result == {"schema": "<ClassType: TestClass>", "count": 5}