-
Notifications
You must be signed in to change notification settings - Fork 52
/
Copy pathtest_simple_logger.py
239 lines (182 loc) · 6.81 KB
/
test_simple_logger.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
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
import datetime
import threading
from contextlib import contextmanager
from approvaltests import (
verify,
Options,
run_all_combinations,
verify_logging_for_all_combinations,
)
from approval_utilities.utilities.logger.simple_logger import SimpleLogger
from approvaltests.utilities.logger.simple_logger_approvals import verify_simple_logger
from approval_utilities.utilities.time_utilities import use_utc_timezone
def test_warnings():
def scrubber(text: str) -> str:
return text.replace(__file__, "test_simple_logger.py")
output = SimpleLogger.log_to_string()
SimpleLogger._wrapper.get().log_stack_traces = True
text = "EVERYTHING IS AWFUL!!!!!!"
try:
raise Exception("EVERYTHING IS exceptionally AWFUL!!!!!!")
except Exception as e:
exception = e
SimpleLogger.warning(text)
SimpleLogger.warning(exception)
SimpleLogger.warning(text, exception)
verify(output, options=Options().with_scrubber(scrubber))
def log_from_inner_method():
with SimpleLogger.use_markers():
name = "Example"
SimpleLogger.variable("name", name)
for _ in range(0, 142):
SimpleLogger.hour_glass()
def test_standard_logger():
with verify_simple_logger():
with SimpleLogger.use_markers() as m:
log_from_inner_method()
def test_timestamps():
with use_utc_timezone():
with verify_simple_logger():
count = -1
def create_applesauce_timer():
dates = [
datetime.datetime.fromtimestamp(0.0),
datetime.datetime.fromtimestamp(0.5),
datetime.datetime.fromtimestamp(2.0),
datetime.datetime.fromtimestamp(1050),
datetime.datetime.fromtimestamp(1052),
]
nonlocal count
count = count + 1
return dates[count]
SimpleLogger._wrapper.get().timer = create_applesauce_timer
SimpleLogger.show_timestamps(True)
SimpleLogger.event("1")
SimpleLogger.event("2")
SimpleLogger.event("3")
SimpleLogger.event("4")
SimpleLogger.warning(exception=Exception("Oh no you didn't!"))
# begin-snippet: verify_simple_logger_example
def test_variable():
with verify_simple_logger():
SimpleLogger.variable("dalmatians", 101, show_types=True)
SimpleLogger.variable("dalmatians", 101, show_types=False)
# end-snippet
# begin-snippet: verify_simple_logger_long_example
def test_variable_explict():
output = SimpleLogger.log_to_string()
SimpleLogger.variable("dalmatians", 101, show_types=True)
SimpleLogger.variable("dalmatians", 101, show_types=False)
verify(output)
# end-snippet
def test_variable_with_list():
output = SimpleLogger.log_to_string()
with SimpleLogger.use_markers():
names = ["Jacqueline", "Llewellyn"]
SimpleLogger.variable("names", names, show_types=True)
SimpleLogger.variable("names", names, show_types=False)
verify(output)
def verify_toggle(toggle_name, toggle):
SimpleLogger.show_all(True)
SimpleLogger.event(f"Toggle Off {toggle_name}")
toggle(False)
log_everything()
def test_switching() -> None:
output = SimpleLogger.log_to_string()
verify_toggle("None", lambda a: SimpleLogger.show_all(True)),
verify_toggle("All", SimpleLogger.show_all),
verify_toggle("Query", SimpleLogger.show_queries),
verify_toggle("Message", SimpleLogger.show_messages),
verify_toggle("Variable", SimpleLogger.show_variables),
verify_toggle("Hour Glass", SimpleLogger.show_hour_glass),
verify_toggle("Markers", SimpleLogger.show_markers),
verify_toggle("Events", SimpleLogger.show_events),
verify(output)
def log_everything() -> None:
with SimpleLogger.use_markers():
SimpleLogger.query("Select * from people")
SimpleLogger.variable("Nonsense", "foo")
SimpleLogger.event("Testing")
SimpleLogger.message("Something random")
for a in range(1, 13):
SimpleLogger.hour_glass()
try:
infinity = 1 / 0
except Exception as e:
SimpleLogger.warning(exception=e)
def function_to_run(color, number) -> None:
with SimpleLogger.use_markers():
SimpleLogger.variable("color", color)
SimpleLogger.variable("number", number)
if number == "brie":
raise Exception("AHHHHHH!")
def test_use_markers_with_raised_exception() -> None:
def throw_exception():
with SimpleLogger.use_markers():
raise Exception("Everything is awflu!!?")
output = SimpleLogger.log_to_string()
try:
throw_exception()
except BaseException as e:
SimpleLogger.warning(e)
verify(output)
def test_run_combinations() -> None:
with verify_simple_logger():
run_all_combinations(function_to_run, [["red", "blue"], ["one", "two", "brie"]])
def test_verify_logging_for_all_combinations() -> None:
verify_logging_for_all_combinations(
function_to_run, [["red", "blue"], ["one", "two", "brie"]]
)
# begin-snippet: method_with_inputs
def method_with_inputs(number, name):
with SimpleLogger.use_markers(f"number = {number}, name = {name}"):
# end-snippet
print(f"{number}) {name}")
def test_markers_with_signature() -> None:
output = SimpleLogger.log_to_string()
method_with_inputs(1, "Susan")
verify(output)
# begin-snippet: method_with_inputs_and_outputs
def method_with_inputs_and_outputs(number, announcement):
with SimpleLogger.use_markers(
lambda: f"number = {number}, announcement = {announcement}"
):
# end-snippet
for number in range(number, 0, -1):
print(number)
print(announcement)
def test_markers_with_signature_in_and_out() -> None:
output = SimpleLogger.log_to_string()
method_with_inputs_and_outputs(10, "Blast off")
verify(output)
def test_race_condition() -> None:
whose_turn = 0
@contextmanager
def wait_for(number):
nonlocal whose_turn
while whose_turn < number:
pass
yield
whose_turn += 1
log1 = "Log1"
def thread_1():
nonlocal log1
with wait_for(0):
log1 = SimpleLogger.log_to_string(True)
with wait_for(2):
SimpleLogger.event("event_a")
with wait_for(4):
SimpleLogger.event("event_b")
log2 = "Log2"
def thread_2():
nonlocal log2
with wait_for(1):
log2 = SimpleLogger.log_to_string(True)
with wait_for(3):
SimpleLogger.event("event_a")
with wait_for(5):
SimpleLogger.event("event_b")
threading.Thread(target=thread_1).start()
threading.Thread(target=thread_2).start()
with wait_for(6):
assert f"'{log1}'" == f"'{log2}'"