-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTEST_exception.py
executable file
·447 lines (415 loc) · 17.5 KB
/
TEST_exception.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
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
#!/usr/bin/env python
__import__('sys').path.append(__import__('os').path.join(__import__('os').path.dirname(__file__), ''))
__import__('testfwk').setup(__file__)
# - prolog marker
import re, sys, logging
from testfwk import DummyObj, TestsuiteStream, create_config, get_logger, run_test, try_catch
from grid_control.gc_exceptions import GCLogHandler, gc_excepthook
from grid_control.logging_setup import GCFormatter
from hpfwk import NestedException, rethrow
from hpfwk.hpf_exceptions import impl_detail
gc_excepthook.restore_old_hook = False
def test(value, name):
try:
def _test(_name):
raise Exception('Test' + _name)
rethrow(value, _test, name)
except Exception:
gc_excepthook(*sys.exc_info())
def modify_log(lines):
skip_next = False
for line in lines:
if skip_next:
skip_next = False
continue
line = line.replace('./testsuite/', '')
line = re.sub(r'\[(.*\.py):\d*\]', r'[\1:<lineno>]', line)
line = re.sub(r'T(.*) (.*) (\d*) (.*)', r'T\1 \2 <lineno> \4', line)
line = re.sub(r'Exception occured in grid-control \[\d+.*\]', 'Exception occured in grid-control...', line)
line = re.sub(r'Exception occured in grid-control \[git .+\]', 'Exception occured in grid-control...', line)
if 'invalid syntax' in line:
line = re.sub('invalid syntax.*', 'invalid syntax <details>', line)
line = re.sub('ZeroDivisionError:.*', 'ZeroDivisionError: <details>', line)
if ('Stack of threads' in line) or ('Stack of thread #' in line):
yield 'Stack of threads...'
break
if 'MainThread' in line:
continue
yield line
TestsuiteStream.set_modify(modify_log)
def t3():
local_3 = DummyObj(a=1, b=2)
try:
return 1/0
except Exception:
raise NestedException('Tier3')
class t2:
def __init__(self):
self._local_2 = 2
self._password = 'secret'
def __repr__(self):
return '<t2 instance>'
def run(self):
try:
t3()
except Exception:
raise NestedException('Tier2')
def t1():
local_1 = 1
local_1x = 'x' * 1000
try:
try:
t2().run()
except Exception:
raise NestedException('Tier1_2')
except Exception:
raise NestedException('Tier1_1')
def t0():
try:
t1()
except Exception:
gc_excepthook(*sys.exc_info())
class BuggedObject(object):
def __repr__(self):
raise Exception('repr failed')
class SlotObject(object):
__slots__ = ('a', 'b',)
def __init__(self):
self.a = 1
self.b = 9
def __repr__(self):
return '<%s instance>' % self.__class__.__name__
def fail(self):
eval('syntax: error')
def tA():
tmp1 = BuggedObject()
tmp2 = 'x' * 1000
tmp3 = SlotObject()
try:
tmp3.fail()
except Exception:
gc_excepthook(*sys.exc_info())
abort_logger = logging.getLogger('abort')
abort_logger.handlers = []
abort_logger.propagate = True
class Test_Fallback:
"""
>>> impl_detail(sys, 'getsizeof', ('HALLO',), -1) < 1000
True
>>> impl_detail(sys, '_test_fun', ('HALLO',), 1001) > 1000
True
"""
class Test_Exception:
"""
>>> get_logger().setFormatter(GCFormatter(ex_context=0, ex_vars=None, ex_fstack=0, ex_tree=10))
>>> test(Exception('Hallo Welt'), '123')
0000-00-00 00:00:00 - exception:CRITICAL - Exception occured in grid-control...
-----
Exception: Hallo Welt
>>> test(NestedException('Hallo Welt'), 'xyz')
0000-00-00 00:00:00 - exception:CRITICAL - Exception occured in grid-control...
-----
NestedException: Hallo Welt
Exception: Testxyz
>>> get_logger().setFormatter(GCFormatter(ex_context=2, ex_vars=None, ex_fstack=10, ex_tree=10))
>>> tA()
0000-00-00 00:00:00 - exception:CRITICAL - Exception occured in grid-control...
-----
Stack #T-01 [<testsuite dir>/TEST_exception.py:<lineno>] tA
| try:
=>| tmp3.fail()
| except Exception:
-----
Local variables:
tmp1 = unable to display!
tmp2 = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx'
tmp3 = <SlotObject instance>
-----
Stack #T-02 [<testsuite dir>/TEST_exception.py:<lineno>] fail
| def fail(self):
=>| eval('syntax: error')
|
-----
Class variables (<SlotObject instance>):
self.a = 1
self.b = 9
-----
File stack:
T|01 <testsuite dir>/TEST_exception.py <lineno> (tA)
T|02 <testsuite dir>/TEST_exception.py <lineno> (fail)
-----
SyntaxError: invalid syntax <details>
('invalid syntax <details>
>>> t0()
0000-00-00 00:00:00 - exception:CRITICAL - Exception occured in grid-control...
-----
Stack #T-01 [<testsuite dir>/TEST_exception.py:<lineno>] t0
| try:
=>| t1()
| except Exception:
-----
Stack #T|00|00-01 [<testsuite dir>/TEST_exception.py:<lineno>] t1
| try:
=>| t2().run()
| except Exception:
-----
Local variables:
local_1 = 1
local_1x = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx'
-----
Stack #T|00|00|00-01 [<testsuite dir>/TEST_exception.py:<lineno>] run
| try:
=>| t3()
| except Exception:
-----
Class variables (<t2 instance>):
self._local_2 = 2
self._password = <redacted>
-----
Stack #T|00|00|00|00-01 [<testsuite dir>/TEST_exception.py:<lineno>] t3
| try:
=>| return 1/0
| except Exception:
-----
Local variables:
local_3 = DummyObj({'a': 1, 'b': 2})
-----
Stack #T|00|00|00-02 [<testsuite dir>/TEST_exception.py:<lineno>] t3
| except Exception:
=>| raise NestedException('Tier3')
|
-----
Local variables:
local_3 = DummyObj({'a': 1, 'b': 2})
-----
Stack #T|00|00-02 [<testsuite dir>/TEST_exception.py:<lineno>] run
| except Exception:
=>| raise NestedException('Tier2')
|
-----
Class variables (<t2 instance>):
self._local_2 = 2
self._password = <redacted>
-----
Stack #T|00-01 [<testsuite dir>/TEST_exception.py:<lineno>] t1
| except Exception:
=>| raise NestedException('Tier1_2')
| except Exception:
-----
Local variables:
local_1 = 1
local_1x = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx'
-----
Stack #T-02 [<testsuite dir>/TEST_exception.py:<lineno>] t1
| except Exception:
=>| raise NestedException('Tier1_1')
|
-----
Local variables:
local_1 = 1
local_1x = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx'
-----
File stack:
T|01 <testsuite dir>/TEST_exception.py <lineno> (t0)
T|00|00|01 <testsuite dir>/TEST_exception.py <lineno> (t1)
T|00|00|00|01 <testsuite dir>/TEST_exception.py <lineno> (run)
T|00|00|00|00|01 <testsuite dir>/TEST_exception.py <lineno> (t3)
T|00|00|00|02 <testsuite dir>/TEST_exception.py <lineno> (t3)
T|00|00|02 <testsuite dir>/TEST_exception.py <lineno> (run)
T|00|01 <testsuite dir>/TEST_exception.py <lineno> (t1)
T|02 <testsuite dir>/TEST_exception.py <lineno> (t1)
-----
NestedException: Tier1_1
NestedException: Tier1_2
NestedException: Tier2
NestedException: Tier3
ZeroDivisionError: <details>
>>> get_logger().setFormatter(GCFormatter(ex_context=1, ex_vars=-1, ex_fstack=0, ex_tree=0))
>>> t0()
0000-00-00 00:00:00 - exception:CRITICAL - Exception occured in grid-control...
-----
Stack #T-01 [<testsuite dir>/TEST_exception.py:<lineno>] t0
=>| t1()
-----
Stack #T|00|00-01 [<testsuite dir>/TEST_exception.py:<lineno>] t1
=>| t2().run()
-----
Stack #T|00|00|00-01 [<testsuite dir>/TEST_exception.py:<lineno>] run
=>| t3()
-----
Stack #T|00|00|00|00-01 [<testsuite dir>/TEST_exception.py:<lineno>] t3
=>| return 1/0
-----
Stack #T|00|00|00-02 [<testsuite dir>/TEST_exception.py:<lineno>] t3
=>| raise NestedException('Tier3')
-----
Stack #T|00|00-02 [<testsuite dir>/TEST_exception.py:<lineno>] run
=>| raise NestedException('Tier2')
-----
Stack #T|00-01 [<testsuite dir>/TEST_exception.py:<lineno>] t1
=>| raise NestedException('Tier1_2')
-----
Stack #T-02 [<testsuite dir>/TEST_exception.py:<lineno>] t1
=>| raise NestedException('Tier1_1')
-----
>>> get_logger().setFormatter(GCFormatter(ex_context=1, ex_vars=200, ex_fstack=0, ex_tree=0))
>>> t0()
0000-00-00 00:00:00 - exception:CRITICAL - Exception occured in grid-control...
-----
Stack #T-01 [<testsuite dir>/TEST_exception.py:<lineno>] t0
=>| t1()
-----
Stack #T|00|00-01 [<testsuite dir>/TEST_exception.py:<lineno>] t1
=>| t2().run()
-----
Local variables:
local_1 = 1
local_1x = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx ... [length:1002]
-----
Stack #T|00|00|00-01 [<testsuite dir>/TEST_exception.py:<lineno>] run
=>| t3()
-----
Class variables (<t2 instance>):
self._local_2 = 2
self._password = <redacted>
-----
Stack #T|00|00|00|00-01 [<testsuite dir>/TEST_exception.py:<lineno>] t3
=>| return 1/0
-----
Local variables:
local_3 = DummyObj({'a': 1, 'b': 2})
-----
Stack #T|00|00|00-02 [<testsuite dir>/TEST_exception.py:<lineno>] t3
=>| raise NestedException('Tier3')
-----
Local variables:
local_3 = DummyObj({'a': 1, 'b': 2})
-----
Stack #T|00|00-02 [<testsuite dir>/TEST_exception.py:<lineno>] run
=>| raise NestedException('Tier2')
-----
Class variables (<t2 instance>):
self._local_2 = 2
self._password = <redacted>
-----
Stack #T|00-01 [<testsuite dir>/TEST_exception.py:<lineno>] t1
=>| raise NestedException('Tier1_2')
-----
Local variables:
local_1 = 1
local_1x = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx ... [length:1002]
-----
Stack #T-02 [<testsuite dir>/TEST_exception.py:<lineno>] t1
=>| raise NestedException('Tier1_1')
-----
Local variables:
local_1 = 1
local_1x = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx ... [length:1002]
-----
>>> get_logger().setFormatter(GCFormatter(ex_context=0, ex_vars=-1, ex_fstack=0, ex_tree=0))
>>> t0()
0000-00-00 00:00:00 - exception:CRITICAL - Exception occured in grid-control...
-----
-----
>>> get_logger().setFormatter(GCFormatter(ex_context=0, ex_vars=-1, ex_fstack=1, ex_tree=0))
>>> t0()
0000-00-00 00:00:00 - exception:CRITICAL - Exception occured in grid-control...
-----
File stack:
T|01 <testsuite dir>/TEST_exception.py <lineno> (t0)
T|00|00|01 <testsuite dir>/TEST_exception.py <lineno> (t1)
T|00|00|00|01 <testsuite dir>/TEST_exception.py <lineno> (run)
T|00|00|00|00|01 <testsuite dir>/TEST_exception.py <lineno> (t3)
T|00|00|00|02 <testsuite dir>/TEST_exception.py <lineno> (t3)
T|00|00|02 <testsuite dir>/TEST_exception.py <lineno> (run)
T|00|01 <testsuite dir>/TEST_exception.py <lineno> (t1)
T|02 <testsuite dir>/TEST_exception.py <lineno> (t1)
-----
>>> get_logger().setFormatter(GCFormatter(ex_context=0, ex_vars=-1, ex_fstack=0, ex_tree=1))
>>> t0()
0000-00-00 00:00:00 - exception:CRITICAL - Exception occured in grid-control...
-----
NestedException: Tier1_1
----------
NestedException: Tier1_2
----------
NestedException: Tier2
----------
NestedException: Tier3
----------
ZeroDivisionError: <details>
>>> try_catch(lambda: GCLogHandler(fn_candidates=[], mode='w'), 'Exception', 'Unable to find writeable debug log path')
caught
>>> try_catch(lambda: GCLogHandler(fn_candidates=[None], mode='w'), 'Exception', 'Unable to find writeable debug log path')
caught
>>> handler = GCLogHandler(fn_candidates=['debug.log'], mode='w')
>>> handler.setFormatter(GCFormatter())
>>> logging.getLogger().addHandler(handler)
>>> stream = TestsuiteStream()
>>> sys.stderr = stream
>>> tA()
0000-00-00 00:00:00 - exception:CRITICAL - Exception occured in grid-control...
-----
SyntaxError: invalid syntax <details>
-----
In case this is caused by a bug, please send the log file:
'.../debug.log'
>>> stream.write(open('debug.log').read())
-----
0000-00-00 00:00:00 - exception:CRITICAL - Exception occured in grid-control...
-----
SyntaxError: invalid syntax <details>
('invalid syntax <details>
>>> GCLogHandler.config_instances.append(create_config(config_dict={'test': {'key': 'value'}}))
>>> GCLogHandler.config_instances.append(None)
>>> tA()
0000-00-00 00:00:00 - exception:CRITICAL - Exception occured in grid-control...
-----
SyntaxError: invalid syntax <details>
-----
In case this is caused by a bug, please send the log file:
'.../debug.log'
>>> stream.write(open('debug.log').read())
----------------------------------------------------------------------
Config instance 0
======================================================================
[global!]
config id ?= unnamed
plugin paths ?= <testsuite dir>
workdir ?= <testsuite dir>/work
workdir base ?= <testsuite dir>
-----
[test]
key = value
-----
----------------------------------------------------------------------
Config instance 1
======================================================================
-> unable to display configuration!
-----
**********************************************************************
-----
List of enums
source:2877|matcher:2878
executable:64623|command:64624
-----
**********************************************************************
-----
0000-00-00 00:00:00 - exception:CRITICAL - Exception occured in grid-control...
-----
SyntaxError: invalid syntax <details>
('invalid syntax <details>
>>> import grid_control
>>> del grid_control.__version__
>>> tA()
0000-00-00 00:00:00 - exception:CRITICAL - Exception occured in grid-control [unknown version]
-----
SyntaxError: invalid syntax <details>
-----
In case this is caused by a bug, please send the log file:
'.../debug.log'
"""
run_test()