forked from twisted/twisted
-
Notifications
You must be signed in to change notification settings - Fork 0
/
test_format.py
431 lines (346 loc) · 12.4 KB
/
test_format.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
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
# Copyright (c) Twisted Matrix Laboratories.
# See LICENSE for details.
"""
Test cases for L{twisted.logger._format}.
"""
from twisted.python.test.test_tzhelper import mktime, addTZCleanup, setTZ
try:
from time import tzset
# We should upgrade to a version of pyflakes that does not require this.
tzset
except ImportError:
tzset = None
from twisted.trial import unittest
from twisted.trial.unittest import SkipTest
from twisted.python.compat import _PY3, unicode
from .._levels import LogLevel
from .._format import (
formatEvent, formatUnformattableEvent, formatTime,
formatEventAsClassicLogText, formatWithCall,
)
class FormattingTests(unittest.TestCase):
"""
Tests for basic event formatting functions.
"""
def test_formatEvent(self):
"""
L{formatEvent} will format an event according to several rules:
- A string with no formatting instructions will be passed straight
through.
- PEP 3101 strings will be formatted using the keys and values of
the event as named fields.
- PEP 3101 keys ending with C{()} will be treated as instructions
to call that key (which ought to be a callable) before
formatting.
L{formatEvent} will always return L{unicode}, and if given bytes, will
always treat its format string as UTF-8 encoded.
"""
def format(logFormat, **event):
event["log_format"] = logFormat
result = formatEvent(event)
self.assertIs(type(result), unicode)
return result
self.assertEqual(u"", format(b""))
self.assertEqual(u"", format(u""))
self.assertEqual(u"abc", format("{x}", x="abc"))
self.assertEqual(
u"no, yes.",
format(
"{not_called}, {called()}.",
not_called="no", called=lambda: "yes"
)
)
self.assertEqual(u"S\xe1nchez", format(b"S\xc3\xa1nchez"))
badResult = format(b"S\xe1nchez")
self.assertIn(u"Unable to format event", badResult)
maybeResult = format(b"S{a!s}nchez", a=b"\xe1")
# The behavior of unicode.format("{x}", x=bytes) differs on py2 and
# py3. Perhaps we should make our modified formatting more consistent
# than this? -glyph
if not _PY3:
self.assertIn(u"Unable to format event", maybeResult)
else:
self.assertIn(u"Sb'\\xe1'nchez", maybeResult)
xe1 = unicode(repr(b"\xe1"))
self.assertIn(u"S" + xe1 + "nchez", format(b"S{a!r}nchez", a=b"\xe1"))
def test_formatEventNoFormat(self):
"""
Formatting an event with no format.
"""
event = dict(foo=1, bar=2)
result = formatEvent(event)
self.assertEqual(u"", result)
def test_formatEventWeirdFormat(self):
"""
Formatting an event with a bogus format.
"""
event = dict(log_format=object(), foo=1, bar=2)
result = formatEvent(event)
self.assertIn("Log format must be unicode or bytes", result)
self.assertIn(repr(event), result)
def test_formatUnformattableEvent(self):
"""
Formatting an event that's just plain out to get us.
"""
event = dict(log_format="{evil()}", evil=lambda: 1 / 0)
result = formatEvent(event)
self.assertIn("Unable to format event", result)
self.assertIn(repr(event), result)
def test_formatUnformattableEventWithUnformattableKey(self):
"""
Formatting an unformattable event that has an unformattable key.
"""
event = {
"log_format": "{evil()}",
"evil": lambda: 1 / 0,
Unformattable(): "gurk",
}
result = formatEvent(event)
self.assertIn("MESSAGE LOST: unformattable object logged:", result)
self.assertIn("Recoverable data:", result)
self.assertIn("Exception during formatting:", result)
def test_formatUnformattableEventWithUnformattableValue(self):
"""
Formatting an unformattable event that has an unformattable value.
"""
event = dict(
log_format="{evil()}",
evil=lambda: 1 / 0,
gurk=Unformattable(),
)
result = formatEvent(event)
self.assertIn("MESSAGE LOST: unformattable object logged:", result)
self.assertIn("Recoverable data:", result)
self.assertIn("Exception during formatting:", result)
def test_formatUnformattableEventWithUnformattableErrorOMGWillItStop(self):
"""
Formatting an unformattable event that has an unformattable value.
"""
event = dict(
log_format="{evil()}",
evil=lambda: 1 / 0,
recoverable="okay",
)
# Call formatUnformattableEvent() directly with a bogus exception.
result = formatUnformattableEvent(event, Unformattable())
self.assertIn("MESSAGE LOST: unformattable object logged:", result)
self.assertIn(repr("recoverable") + " = " + repr("okay"), result)
class TimeFormattingTests(unittest.TestCase):
"""
Tests for time formatting functions.
"""
def setUp(self):
addTZCleanup(self)
def test_formatTimeWithDefaultFormat(self):
"""
Default time stamp format is RFC 3339 and offset respects the timezone
as set by the standard C{TZ} environment variable and L{tzset} API.
"""
if tzset is None:
raise SkipTest(
"Platform cannot change timezone; unable to verify offsets."
)
def testForTimeZone(name, expectedDST, expectedSTD):
setTZ(name)
localDST = mktime((2006, 6, 30, 0, 0, 0, 4, 181, 1))
localSTD = mktime((2007, 1, 31, 0, 0, 0, 2, 31, 0))
self.assertEqual(formatTime(localDST), expectedDST)
self.assertEqual(formatTime(localSTD), expectedSTD)
# UTC
testForTimeZone(
"UTC+00",
u"2006-06-30T00:00:00+0000",
u"2007-01-31T00:00:00+0000",
)
# West of UTC
testForTimeZone(
"EST+05EDT,M4.1.0,M10.5.0",
u"2006-06-30T00:00:00-0400",
u"2007-01-31T00:00:00-0500",
)
# East of UTC
testForTimeZone(
"CEST-01CEDT,M4.1.0,M10.5.0",
u"2006-06-30T00:00:00+0200",
u"2007-01-31T00:00:00+0100",
)
# No DST
testForTimeZone(
"CST+06",
u"2006-06-30T00:00:00-0600",
u"2007-01-31T00:00:00-0600",
)
def test_formatTimeWithNoTime(self):
"""
If C{when} argument is L{None}, we get the default output.
"""
self.assertEqual(formatTime(None), u"-")
self.assertEqual(formatTime(None, default=u"!"), u"!")
def test_formatTimeWithNoFormat(self):
"""
If C{timeFormat} argument is L{None}, we get the default output.
"""
t = mktime((2013, 9, 24, 11, 40, 47, 1, 267, 1))
self.assertEqual(formatTime(t, timeFormat=None), u"-")
self.assertEqual(formatTime(t, timeFormat=None, default=u"!"), u"!")
def test_formatTimeWithAlternateTimeFormat(self):
"""
Alternate time format in output.
"""
t = mktime((2013, 9, 24, 11, 40, 47, 1, 267, 1))
self.assertEqual(formatTime(t, timeFormat="%Y/%W"), u"2013/38")
def test_formatTimePercentF(self):
"""
"%f" supported in time format.
"""
self.assertEqual(formatTime(1.23456, timeFormat="%f"), u"234560")
class ClassicLogFormattingTests(unittest.TestCase):
"""
Tests for classic text log event formatting functions.
"""
def test_formatTimeDefault(self):
"""
Time is first field. Default time stamp format is RFC 3339 and offset
respects the timezone as set by the standard C{TZ} environment variable
and L{tzset} API.
"""
if tzset is None:
raise SkipTest(
"Platform cannot change timezone; unable to verify offsets."
)
addTZCleanup(self)
setTZ("UTC+00")
t = mktime((2013, 9, 24, 11, 40, 47, 1, 267, 1))
event = dict(log_format=u"XYZZY", log_time=t)
self.assertEqual(
formatEventAsClassicLogText(event),
u"2013-09-24T11:40:47+0000 [-#-] XYZZY\n",
)
def test_formatTimeCustom(self):
"""
Time is first field. Custom formatting function is an optional
argument.
"""
formatTime = lambda t: u"__{0}__".format(t)
event = dict(log_format=u"XYZZY", log_time=12345)
self.assertEqual(
formatEventAsClassicLogText(event, formatTime=formatTime),
u"__12345__ [-#-] XYZZY\n",
)
def test_formatNamespace(self):
"""
Namespace is first part of second field.
"""
event = dict(log_format=u"XYZZY", log_namespace="my.namespace")
self.assertEqual(
formatEventAsClassicLogText(event),
u"- [my.namespace#-] XYZZY\n",
)
def test_formatLevel(self):
"""
Level is second part of second field.
"""
event = dict(log_format=u"XYZZY", log_level=LogLevel.warn)
self.assertEqual(
formatEventAsClassicLogText(event),
u"- [-#warn] XYZZY\n",
)
def test_formatSystem(self):
"""
System is second field.
"""
event = dict(log_format=u"XYZZY", log_system=u"S.Y.S.T.E.M.")
self.assertEqual(
formatEventAsClassicLogText(event),
u"- [S.Y.S.T.E.M.] XYZZY\n",
)
def test_formatSystemRulz(self):
"""
System is not supplanted by namespace and level.
"""
event = dict(
log_format=u"XYZZY",
log_namespace="my.namespace",
log_level=LogLevel.warn,
log_system=u"S.Y.S.T.E.M.",
)
self.assertEqual(
formatEventAsClassicLogText(event),
u"- [S.Y.S.T.E.M.] XYZZY\n",
)
def test_formatSystemUnformattable(self):
"""
System is not supplanted by namespace and level.
"""
event = dict(log_format=u"XYZZY", log_system=Unformattable())
self.assertEqual(
formatEventAsClassicLogText(event),
u"- [UNFORMATTABLE] XYZZY\n",
)
def test_formatFormat(self):
"""
Formatted event is last field.
"""
event = dict(log_format=u"id:{id}", id="123")
self.assertEqual(
formatEventAsClassicLogText(event),
u"- [-#-] id:123\n",
)
def test_formatNoFormat(self):
"""
No format string.
"""
event = dict(id="123")
self.assertIs(
formatEventAsClassicLogText(event),
None
)
def test_formatEmptyFormat(self):
"""
Empty format string.
"""
event = dict(log_format="", id="123")
self.assertIs(
formatEventAsClassicLogText(event),
None
)
def test_formatFormatMultiLine(self):
"""
If the formatted event has newlines, indent additional lines.
"""
event = dict(log_format=u'XYZZY\nA hollow voice says:\n"Plugh"')
self.assertEqual(
formatEventAsClassicLogText(event),
u'- [-#-] XYZZY\n\tA hollow voice says:\n\t"Plugh"\n',
)
class FormatFieldTests(unittest.TestCase):
"""
Tests for format field functions.
"""
def test_formatWithCall(self):
"""
L{formatWithCall} is an extended version of L{unicode.format} that
will interpret a set of parentheses "C{()}" at the end of a format key
to mean that the format key ought to be I{called} rather than
stringified.
"""
self.assertEqual(
formatWithCall(
u"Hello, {world}. {callme()}.",
dict(world="earth", callme=lambda: "maybe")
),
"Hello, earth. maybe."
)
self.assertEqual(
formatWithCall(
u"Hello, {repr()!r}.",
dict(repr=lambda: "repr")
),
"Hello, 'repr'."
)
class Unformattable(object):
"""
An object that raises an exception from C{__repr__}.
"""
def __repr__(self):
return str(1 / 0)