-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathtest_debug.py
133 lines (116 loc) · 3.87 KB
/
test_debug.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
from inspect import stack
from pathlib import Path
from unittest import TestCase, mock
from abstra_internals.debug import make_exception_debug_data, make_frame_debug_data
from abstra_internals.settings import Settings
from tests.resources.make_debug.module import func
class TestDebug(TestCase):
def setUp(self) -> None:
Settings.set_root_path(str(Path(__file__).parent))
def test_make_debug_data_from_exception(self):
try:
raise Exception("test")
except Exception as exc:
debug_data = make_exception_debug_data(exc)
self.maxDiff = None
self.assertEqual(
debug_data,
dict(
debug=dict(
stack=[
dict(
filename=__file__,
lineno=16,
name="test_make_debug_data_from_exception",
locals=mock.ANY,
)
]
)
),
)
def test_make_debug_data_from_frames(self):
debug_data = make_frame_debug_data(stack())
self.assertEqual(
debug_data,
dict(
debug=dict(
stack=[
dict(
filename=__file__,
lineno=39,
name="test_make_debug_data_from_frames",
locals=mock.ANY,
)
]
)
),
)
def test_make_debug_data_nested(self):
def outer_func():
raise Exception("test")
try:
func(outer_func)
debug_data = None
except Exception as exc:
debug_data = make_exception_debug_data(exc)
self.maxDiff = None
self.assertEqual(
debug_data,
dict(
debug=dict(
stack=[
dict(
filename=__file__,
lineno=62,
name="test_make_debug_data_nested",
locals=mock.ANY,
),
dict(
filename=str(
(
Path(__file__) / "../resources/make_debug/module.py"
).resolve()
),
lineno=2,
name="func",
locals=mock.ANY,
),
dict(
filename=__file__,
lineno=59,
name="outer_func",
locals=mock.ANY,
),
]
)
),
)
def test_make_debug_data_nested_other_dir(self):
Settings.set_root_path("./resources")
def outer_func():
raise Exception("test")
try:
func(outer_func)
debug_data = None
except Exception as exc:
debug_data = make_exception_debug_data(exc)
self.maxDiff = None
self.assertEqual(
debug_data,
dict(
debug=dict(
stack=[
dict(
filename=str(
(
Path(__file__) / "../resources/make_debug/module.py"
).resolve()
),
lineno=2,
name="func",
locals=mock.ANY,
),
]
)
),
)