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
|
################################################################################
# BSD LICENSE
#
# Copyright(c) 2019-2023 Intel Corporation. All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# * Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
# * Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in
# the documentation and/or other materials provided with the
# distribution.
# * Neither the name of Intel Corporation nor the names of its
# contributors may be used to endorse or promote products derived
# from this software without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
################################################################################
import re
import warnings
import pytest
def pytest_addoption(parser):
parser.addoption("--report", action="store_true", dest='report', help='Print Test Report')
def pytest_configure(config):
if config.getoption("--report"):
config.report = TestReport(config)
config.pluginmanager.register(config.report)
def pytest_unconfigure(config):
report = getattr(config, 'report', None)
if report:
del config.report
config.pluginmanager.unregister(report)
class Result:
def __init__(self, nodeid, outcome, priority):
self.nodeid = nodeid
self.result = self.__get_result(outcome)
self.priority = priority
def update(self, outcome):
result = self.__get_result(outcome)
if self.result != result:
if result == "FAIL":
self.result = "FAIL"
elif result == "PASS" and self.result != "FAIL":
self.result = "PASS"
@staticmethod
def __get_result(outcome):
if outcome in ['passed', 'xpassed']:
return 'PASS'
if outcome == 'failed':
return 'FAIL'
if outcome == 'skipped':
return 'SKIP'
if outcome == 'xfailed':
return 'XFAIL'
return ''
class TestReport:
def __init__(self, config):
self.results = {}
self.config = config
# priority os processed test
self.current_priority = None
def report(self, terminalreporter):
terminalreporter.write_sep('=', 'Test Report')
# pylint: disable=consider-using-f-string
terminalreporter.write_line('{:45} | Priority | Result | Comment/Defect ID'\
.format('Test Case Identifier'))
terminalreporter.write_sep('=')
for test in sorted(self.results):
if self.results[test].result == 'PASS':
markup = {'green': True}
elif self.results[test].result in ('FAIL', 'XFAIL'):
markup = {'red': True}
else:
markup = {'yellow': True}
# pylint: disable=consider-using-f-string
terminalreporter.write('{:45} | {:8} | '\
.format(self.results[test].nodeid,
self.results[test].priority if self.results[test].priority else ""))
terminalreporter.write('%-10s' % (self.results[test].result), **markup)
terminalreporter.write('|')
terminalreporter.write_line("")
terminalreporter.write_sep('-')
def pytest_runtest_setup(self, item):
priority = item.get_closest_marker("priority")
if priority:
self.current_priority = priority.args[0]
else:
msg = "Priority missing for " + item.nodeid
warnings.warn(pytest.PytestWarning(msg))
self.current_priority = None
def pytest_runtest_logreport(self, report):
if report.when != "call":
return
# We are interested only on executed tests
if report.outcome == "skipped":
return
nodeid = report.nodeid
nodeid = nodeid.rsplit("::", 1)[1]
nodeid = re.sub(r"\[.*\]$", "", nodeid)
if nodeid not in self.results:
self.results[nodeid] = Result(nodeid, report.outcome, self.current_priority)
else:
self.results[nodeid].update(report.outcome)
def pytest_terminal_summary(self, terminalreporter):
if self.config.getoption("--report"):
self.report(terminalreporter)
|