forked from kaste/PyTest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpytest_exec.py
239 lines (180 loc) · 7.26 KB
/
pytest_exec.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 sublime
from collections import defaultdict
import functools
import os
import re
from .matchers import Matchers
from Default import exec
TB_MODE = re.compile(r"tb[= ](.*?)\s")
def get_trace_back_mode(cmd):
# type: (str) -> str
"""Parses cmd and returns a trace back mode"""
match = TB_MODE.search(' '.join(cmd))
return match.group(1) if match else 'auto'
def broadcast(event, message=None):
sublime.active_window().run_command(event, message)
def get_report_file():
path = os.path.join(sublime.cache_path(), 'PyTest')
if not os.path.isdir(path):
os.makedirs(path)
return os.path.join(path, 'last-run.xml')
class PytestExecCommand(exec.ExecCommand):
def run(self, **kw):
mode = self._tb_mode = get_trace_back_mode(kw['cmd'])
# For the line mode, we don't get useful reports at all.
# Note that if the user already wants a xml-report, he has bad luck,
# bc the last `--junit-xml` wins.
if mode != 'line':
kw['cmd'] += ['--junit-xml={}'.format(get_report_file())]
broadcast('pytest_start', {
'mode': mode,
'cmd': kw['cmd']
})
super(PytestExecCommand, self).run(**kw)
# output_view cannot be dumped through broadcast,
# so we go the ugly mile
from . import PyTest
PyTest.State['pytest_view'] = self.output_view
def finish(self, proc):
super(PytestExecCommand, self).finish(proc)
view = self.output_view
output = get_whole_text(view).strip()
last_line = output[output.rfind('\n'):]
summary = ''
matches = re.finditer(r' ([\d]+) ', last_line)
if matches:
test_count = sum(int(m.group(1)) for m in matches)
summary = "Ran %s tests. " % (test_count)
summary += last_line.replace('=', '')
failures = proc.exit_code() != 0
if failures:
broadcast("pytest_will_fail")
broadcast('pytest_finished', {
"summary": summary,
"failures": failures
})
base_dir = view.settings().get('result_base_dir')
# For the 'line' go with output regex parsing bc the reporter
# isn't useful at all.
if self._tb_mode == 'line':
sublime.set_timeout_async(
functools.partial(
parse_output, output, base_dir, Matchers[self._tb_mode]))
else:
sublime.set_timeout_async(
functools.partial(
parse_result, base_dir, Matchers[self._tb_mode]))
def service_text_queue(self):
self.text_queue_lock.acquire()
is_empty = False
try:
if len(self.text_queue) == 0:
# this can happen if a new build was started, which will clear
# the text_queue
return
characters = self.text_queue.popleft()
is_empty = (len(self.text_queue) == 0)
finally:
self.text_queue_lock.release()
self.output_view.run_command(
'append',
{'characters': characters, 'force': True, 'scroll_to_end': False})
# actually only relevant with instafail
if characters.find('\n') >= 0:
# broadcast('pytest_remember_errors', {
# "errors": parse_output(
# self.output_view, Matchers[self._tb_mode]),
# })
pass
else:
if characters in 'FX':
broadcast("pytest_will_fail")
broadcast('pytest_still_running')
if not is_empty:
sublime.set_timeout(self.service_text_queue, 1)
def get_whole_text(view):
# type: (View) -> str
reg = sublime.Region(0, view.size())
return view.substr(reg)
def parse_result(base_dir, parse_traceback):
from lxml import etree
from . import matchers
fullname = functools.partial(os.path.join, base_dir)
tree = etree.parse(get_report_file())
testcases = tree.xpath('/testsuite/testcase[failure or error]')
all_tracebacks = []
for tc in testcases:
tracebacks = []
file = fullname(tc.attrib['file'])
testcase = get_testcase(tc, file)
failure = tc.find('failure')
if failure is not None:
if 'XPASS' in failure.attrib['message']:
synthetic_traceback = {
'file': file,
'line': int(tc.attrib['line']) + 1,
'text': failure.attrib['message']
}
tracebacks.append(synthetic_traceback)
else:
f_tracebacks = parse_traceback(
failure.text, fullname, testcase)
end = f_tracebacks[-1]
culprit = (matchers.get_culprit(end['text']) or
failure.attrib['message'])
# For long tracebacks, we place the culprit right at the top
# which should be the failing test
if culprit and len(f_tracebacks) > 1:
head = f_tracebacks[0]
head['text'] = 'E ' + culprit + '\n' + head['text']
tracebacks.extend(f_tracebacks)
error = tc.find('error')
if error is not None:
e_tracebacks = parse_traceback(error.text, fullname, testcase)
end = e_tracebacks[-1]
culprit = matchers.get_culprit(end['text'])
if culprit and len(e_tracebacks) > 1:
head = e_tracebacks[0]
head['text'] = 'E ' + culprit + '\n' + head['text']
# For errors in the fixtures ("at teardown" etc.), we place a
# synthetic marker at the failing test
synthetic_traceback = {
'file': file,
'line': int(tc.attrib['line']) + 1,
'text': error.attrib['message'] + ':\n' + culprit
}
tracebacks.append(synthetic_traceback)
tracebacks.extend(e_tracebacks)
system_out = tc.find('system-out')
if system_out is not None:
head = tracebacks[0]
head['text'] = (
head['text'] + '\n------ Output ------\n' + system_out.text)
all_tracebacks.extend(tracebacks)
errs_by_file = defaultdict(list)
for tbck in all_tracebacks:
errs_by_file[tbck['file']].append(tbck)
broadcast('pytest_remember_errors', {
"errors": errs_by_file,
})
def get_testcase(testcase, file):
rel_file = testcase.attrib['file']
name = testcase.attrib['name']
classname = testcase.attrib['classname']
root, _ = os.path.splitext(rel_file)
dotted_filepath = root.replace(os.path.sep, '.')
if classname.startswith(dotted_filepath):
classname = classname[len(dotted_filepath) + 1:]
classname = classname.replace('.', '::').replace('()', '')
return file + '::' + classname + '::' + name
return ''
def parse_output(text, base_dir, get_matches):
# type: (str, str, Callable) -> Dict[Filename, List[Tuple[Line, Text]]]
fullname = functools.partial(os.path.join, base_dir)
matches = get_matches(text, fullname)
errs_by_file = defaultdict(list)
for tbck in matches:
errs_by_file[tbck['file']].append(tbck)
broadcast('pytest_remember_errors', {
"errors": errs_by_file,
})