2023-09-09 23:30:43 -03:00
|
|
|
import sys
|
|
|
|
from test.support import TestStats
|
|
|
|
|
2023-09-11 04:02:35 -03:00
|
|
|
from .runtests import RunTests
|
|
|
|
from .result import State, TestResult
|
|
|
|
from .utils import (
|
2023-09-10 21:07:18 -03:00
|
|
|
StrPath, TestName, TestTuple, TestList, FilterDict,
|
|
|
|
printlist, count, format_duration)
|
2023-09-09 23:30:43 -03:00
|
|
|
|
|
|
|
|
|
|
|
EXITCODE_BAD_TEST = 2
|
|
|
|
EXITCODE_ENV_CHANGED = 3
|
|
|
|
EXITCODE_NO_TESTS_RAN = 4
|
|
|
|
EXITCODE_RERUN_FAIL = 5
|
|
|
|
EXITCODE_INTERRUPTED = 130
|
|
|
|
|
|
|
|
|
|
|
|
class TestResults:
|
|
|
|
def __init__(self):
|
|
|
|
self.bad: TestList = []
|
|
|
|
self.good: TestList = []
|
|
|
|
self.rerun_bad: TestList = []
|
|
|
|
self.skipped: TestList = []
|
|
|
|
self.resource_denied: TestList = []
|
|
|
|
self.env_changed: TestList = []
|
|
|
|
self.run_no_tests: TestList = []
|
|
|
|
self.rerun: TestList = []
|
|
|
|
self.bad_results: list[TestResult] = []
|
|
|
|
|
|
|
|
self.interrupted: bool = False
|
|
|
|
self.test_times: list[tuple[float, TestName]] = []
|
|
|
|
self.stats = TestStats()
|
|
|
|
# used by --junit-xml
|
|
|
|
self.testsuite_xml: list[str] = []
|
|
|
|
|
|
|
|
def get_executed(self):
|
|
|
|
return (set(self.good) | set(self.bad) | set(self.skipped)
|
|
|
|
| set(self.resource_denied) | set(self.env_changed)
|
|
|
|
| set(self.run_no_tests))
|
|
|
|
|
|
|
|
def no_tests_run(self):
|
|
|
|
return not any((self.good, self.bad, self.skipped, self.interrupted,
|
|
|
|
self.env_changed))
|
|
|
|
|
|
|
|
def get_state(self, fail_env_changed):
|
|
|
|
state = []
|
|
|
|
if self.bad:
|
|
|
|
state.append("FAILURE")
|
|
|
|
elif fail_env_changed and self.env_changed:
|
|
|
|
state.append("ENV CHANGED")
|
|
|
|
elif self.no_tests_run():
|
|
|
|
state.append("NO TESTS RAN")
|
|
|
|
|
|
|
|
if self.interrupted:
|
|
|
|
state.append("INTERRUPTED")
|
|
|
|
if not state:
|
|
|
|
state.append("SUCCESS")
|
|
|
|
|
|
|
|
return ', '.join(state)
|
|
|
|
|
|
|
|
def get_exitcode(self, fail_env_changed, fail_rerun):
|
|
|
|
exitcode = 0
|
|
|
|
if self.bad:
|
|
|
|
exitcode = EXITCODE_BAD_TEST
|
|
|
|
elif self.interrupted:
|
|
|
|
exitcode = EXITCODE_INTERRUPTED
|
|
|
|
elif fail_env_changed and self.env_changed:
|
|
|
|
exitcode = EXITCODE_ENV_CHANGED
|
|
|
|
elif self.no_tests_run():
|
|
|
|
exitcode = EXITCODE_NO_TESTS_RAN
|
|
|
|
elif fail_rerun and self.rerun:
|
|
|
|
exitcode = EXITCODE_RERUN_FAIL
|
|
|
|
return exitcode
|
|
|
|
|
|
|
|
def accumulate_result(self, result: TestResult, runtests: RunTests):
|
|
|
|
test_name = result.test_name
|
|
|
|
rerun = runtests.rerun
|
|
|
|
fail_env_changed = runtests.fail_env_changed
|
|
|
|
|
|
|
|
match result.state:
|
|
|
|
case State.PASSED:
|
|
|
|
self.good.append(test_name)
|
|
|
|
case State.ENV_CHANGED:
|
|
|
|
self.env_changed.append(test_name)
|
|
|
|
case State.SKIPPED:
|
|
|
|
self.skipped.append(test_name)
|
|
|
|
case State.RESOURCE_DENIED:
|
|
|
|
self.resource_denied.append(test_name)
|
|
|
|
case State.INTERRUPTED:
|
|
|
|
self.interrupted = True
|
|
|
|
case State.DID_NOT_RUN:
|
|
|
|
self.run_no_tests.append(test_name)
|
|
|
|
case _:
|
|
|
|
if result.is_failed(fail_env_changed):
|
|
|
|
self.bad.append(test_name)
|
|
|
|
self.bad_results.append(result)
|
|
|
|
else:
|
|
|
|
raise ValueError(f"invalid test state: {result.state!r}")
|
|
|
|
|
|
|
|
if result.has_meaningful_duration() and not rerun:
|
|
|
|
self.test_times.append((result.duration, test_name))
|
|
|
|
if result.stats is not None:
|
|
|
|
self.stats.accumulate(result.stats)
|
|
|
|
if rerun:
|
|
|
|
self.rerun.append(test_name)
|
|
|
|
|
|
|
|
xml_data = result.xml_data
|
|
|
|
if xml_data:
|
2023-09-11 00:27:37 -03:00
|
|
|
self.add_junit(xml_data)
|
2023-09-09 23:30:43 -03:00
|
|
|
|
|
|
|
def need_rerun(self):
|
|
|
|
return bool(self.bad_results)
|
|
|
|
|
|
|
|
def prepare_rerun(self) -> (TestTuple, FilterDict):
|
|
|
|
tests: TestList = []
|
|
|
|
match_tests_dict = {}
|
|
|
|
for result in self.bad_results:
|
|
|
|
tests.append(result.test_name)
|
|
|
|
|
|
|
|
match_tests = result.get_rerun_match_tests()
|
|
|
|
# ignore empty match list
|
|
|
|
if match_tests:
|
|
|
|
match_tests_dict[result.test_name] = match_tests
|
|
|
|
|
|
|
|
# Clear previously failed tests
|
|
|
|
self.rerun_bad.extend(self.bad)
|
|
|
|
self.bad.clear()
|
|
|
|
self.bad_results.clear()
|
|
|
|
|
|
|
|
return (tuple(tests), match_tests_dict)
|
|
|
|
|
|
|
|
def add_junit(self, xml_data: list[str]):
|
|
|
|
import xml.etree.ElementTree as ET
|
|
|
|
for e in xml_data:
|
|
|
|
try:
|
|
|
|
self.testsuite_xml.append(ET.fromstring(e))
|
|
|
|
except ET.ParseError:
|
|
|
|
print(xml_data, file=sys.__stderr__)
|
|
|
|
raise
|
|
|
|
|
|
|
|
def write_junit(self, filename: StrPath):
|
|
|
|
if not self.testsuite_xml:
|
|
|
|
# Don't create empty XML file
|
|
|
|
return
|
|
|
|
|
|
|
|
import xml.etree.ElementTree as ET
|
|
|
|
root = ET.Element("testsuites")
|
|
|
|
|
|
|
|
# Manually count the totals for the overall summary
|
|
|
|
totals = {'tests': 0, 'errors': 0, 'failures': 0}
|
|
|
|
for suite in self.testsuite_xml:
|
|
|
|
root.append(suite)
|
|
|
|
for k in totals:
|
|
|
|
try:
|
|
|
|
totals[k] += int(suite.get(k, 0))
|
|
|
|
except ValueError:
|
|
|
|
pass
|
|
|
|
|
|
|
|
for k, v in totals.items():
|
|
|
|
root.set(k, str(v))
|
|
|
|
|
|
|
|
with open(filename, 'wb') as f:
|
|
|
|
for s in ET.tostringlist(root):
|
|
|
|
f.write(s)
|
|
|
|
|
2023-09-11 00:27:37 -03:00
|
|
|
def display_result(self, tests: TestTuple, quiet: bool, print_slowest: bool):
|
2023-09-09 23:30:43 -03:00
|
|
|
if self.interrupted:
|
|
|
|
print("Test suite interrupted by signal SIGINT.")
|
|
|
|
|
|
|
|
omitted = set(tests) - self.get_executed()
|
|
|
|
if omitted:
|
|
|
|
print()
|
|
|
|
print(count(len(omitted), "test"), "omitted:")
|
|
|
|
printlist(omitted)
|
|
|
|
|
|
|
|
if self.good and not quiet:
|
|
|
|
print()
|
|
|
|
if (not self.bad
|
|
|
|
and not self.skipped
|
|
|
|
and not self.interrupted
|
|
|
|
and len(self.good) > 1):
|
|
|
|
print("All", end=' ')
|
|
|
|
print(count(len(self.good), "test"), "OK.")
|
|
|
|
|
|
|
|
if print_slowest:
|
|
|
|
self.test_times.sort(reverse=True)
|
|
|
|
print()
|
|
|
|
print("10 slowest tests:")
|
|
|
|
for test_time, test in self.test_times[:10]:
|
|
|
|
print("- %s: %s" % (test, format_duration(test_time)))
|
|
|
|
|
|
|
|
if self.bad:
|
|
|
|
print()
|
|
|
|
print(count(len(self.bad), "test"), "failed:")
|
|
|
|
printlist(self.bad)
|
|
|
|
|
|
|
|
if self.env_changed:
|
|
|
|
print()
|
|
|
|
print("{} altered the execution environment:".format(
|
|
|
|
count(len(self.env_changed), "test")))
|
|
|
|
printlist(self.env_changed)
|
|
|
|
|
|
|
|
if self.skipped and not quiet:
|
|
|
|
print()
|
|
|
|
print(count(len(self.skipped), "test"), "skipped:")
|
|
|
|
printlist(self.skipped)
|
|
|
|
|
|
|
|
if self.resource_denied and not quiet:
|
|
|
|
print()
|
|
|
|
print(count(len(self.resource_denied), "test"), "skipped (resource denied):")
|
|
|
|
printlist(self.resource_denied)
|
|
|
|
|
|
|
|
if self.rerun:
|
|
|
|
print()
|
|
|
|
print("%s:" % count(len(self.rerun), "re-run test"))
|
|
|
|
printlist(self.rerun)
|
|
|
|
|
|
|
|
if self.run_no_tests:
|
|
|
|
print()
|
|
|
|
print(count(len(self.run_no_tests), "test"), "run no tests:")
|
|
|
|
printlist(self.run_no_tests)
|
|
|
|
|
|
|
|
def display_summary(self, first_runtests: RunTests, filtered: bool):
|
|
|
|
# Total tests
|
|
|
|
stats = self.stats
|
|
|
|
text = f'run={stats.tests_run:,}'
|
|
|
|
if filtered:
|
|
|
|
text = f"{text} (filtered)"
|
|
|
|
report = [text]
|
|
|
|
if stats.failures:
|
|
|
|
report.append(f'failures={stats.failures:,}')
|
|
|
|
if stats.skipped:
|
|
|
|
report.append(f'skipped={stats.skipped:,}')
|
|
|
|
report = ' '.join(report)
|
|
|
|
print(f"Total tests: {report}")
|
|
|
|
|
|
|
|
# Total test files
|
|
|
|
all_tests = [self.good, self.bad, self.rerun,
|
|
|
|
self.skipped,
|
|
|
|
self.env_changed, self.run_no_tests]
|
|
|
|
run = sum(map(len, all_tests))
|
|
|
|
text = f'run={run}'
|
|
|
|
if not first_runtests.forever:
|
|
|
|
ntest = len(first_runtests.tests)
|
|
|
|
text = f"{text}/{ntest}"
|
|
|
|
if filtered:
|
|
|
|
text = f"{text} (filtered)"
|
|
|
|
report = [text]
|
|
|
|
for name, tests in (
|
|
|
|
('failed', self.bad),
|
|
|
|
('env_changed', self.env_changed),
|
|
|
|
('skipped', self.skipped),
|
|
|
|
('resource_denied', self.resource_denied),
|
|
|
|
('rerun', self.rerun),
|
|
|
|
('run_no_tests', self.run_no_tests),
|
|
|
|
):
|
|
|
|
if tests:
|
|
|
|
report.append(f'{name}={len(tests)}')
|
|
|
|
report = ' '.join(report)
|
|
|
|
print(f"Total test files: {report}")
|