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
|
# -*- coding: utf-8 -*-
from __future__ import print_function, absolute_import, division
import os
import re
import pytest
import yatest.common as yc
def clean_traceback(traceback):
traceback = re.sub(br'\033\[(\d|;)+?m', b'', traceback) # strip ANSI codes
traceback = re.sub(br' at 0x[0-9a-fA-F]+', b'', traceback) # remove object ids
return traceback
@pytest.mark.parametrize('mode', [
'default',
'ultratb_color',
'ultratb_verbose',
])
@pytest.mark.parametrize('entry_point', [
'main',
'custom',
])
def test_traceback(mode, entry_point):
tb_tool = yc.build_path('library/python/runtime_py3/test/traceback/traceback')
stdout_path = yc.test_output_path('stdout_raw.txt')
stderr_path = yc.test_output_path('stderr_raw.txt')
filtered_stdout_path = yc.test_output_path('stdout.txt')
filtered_stderr_path = yc.test_output_path('stderr.txt')
env = os.environ.copy()
env.pop('PYTHONPATH', None) # Do not let program peek into its sources on filesystem
if entry_point == 'custom':
env['Y_PYTHON_ENTRY_POINT'] = 'library.python.runtime_py3.test.traceback.crash:main'
proc = yc.execute(
command=[tb_tool, mode],
env=env,
stdout=stdout_path,
stderr=stderr_path,
check_exit_code=False,
)
with open(filtered_stdout_path, 'wb') as f:
f.write(clean_traceback(proc.std_out))
with open(filtered_stderr_path, 'wb') as f:
f.write(clean_traceback(proc.std_err))
return {
'stdout': yc.canonical_file(
filtered_stdout_path,
local=True,
),
'stderr': yc.canonical_file(
filtered_stderr_path,
local=True,
),
}
|