junitxml: convert from py.xml to xml.etree.ElementTree
Part of the effort to reduce dependency on the py library. Besides that, py.xml implements its own XML serialization which is pretty scary. I tried to keep the code with minimal changes (though it could use some cleanups). The differences in behavior I have noticed are: - Attributes in the output are not sorted. - Some unneeded escaping is no longer performed, for example escaping `"` to `"` in a text node.
This commit is contained in:
parent
1653c49b1b
commit
f86e4516eb
|
@ -0,0 +1,3 @@
|
||||||
|
The internal ``junitxml`` plugin has rewritten to use ``xml.etree.ElementTree``.
|
||||||
|
The order of attributes in XML elements might differ. Some unneeded escaping is
|
||||||
|
no longer performed.
|
|
@ -12,6 +12,7 @@ import functools
|
||||||
import os
|
import os
|
||||||
import platform
|
import platform
|
||||||
import re
|
import re
|
||||||
|
import xml.etree.ElementTree as ET
|
||||||
from datetime import datetime
|
from datetime import datetime
|
||||||
from typing import Callable
|
from typing import Callable
|
||||||
from typing import Dict
|
from typing import Dict
|
||||||
|
@ -21,14 +22,11 @@ from typing import Optional
|
||||||
from typing import Tuple
|
from typing import Tuple
|
||||||
from typing import Union
|
from typing import Union
|
||||||
|
|
||||||
import py
|
|
||||||
|
|
||||||
import pytest
|
import pytest
|
||||||
from _pytest import deprecated
|
from _pytest import deprecated
|
||||||
from _pytest import nodes
|
from _pytest import nodes
|
||||||
from _pytest import timing
|
from _pytest import timing
|
||||||
from _pytest._code.code import ExceptionRepr
|
from _pytest._code.code import ExceptionRepr
|
||||||
from _pytest.compat import TYPE_CHECKING
|
|
||||||
from _pytest.config import Config
|
from _pytest.config import Config
|
||||||
from _pytest.config import filename_arg
|
from _pytest.config import filename_arg
|
||||||
from _pytest.config.argparsing import Parser
|
from _pytest.config.argparsing import Parser
|
||||||
|
@ -38,19 +36,12 @@ from _pytest.store import StoreKey
|
||||||
from _pytest.terminal import TerminalReporter
|
from _pytest.terminal import TerminalReporter
|
||||||
from _pytest.warnings import _issue_warning_captured
|
from _pytest.warnings import _issue_warning_captured
|
||||||
|
|
||||||
if TYPE_CHECKING:
|
|
||||||
from typing import Type
|
|
||||||
|
|
||||||
|
|
||||||
xml_key = StoreKey["LogXML"]()
|
xml_key = StoreKey["LogXML"]()
|
||||||
|
|
||||||
|
|
||||||
class Junit(py.xml.Namespace):
|
def bin_xml_escape(arg: object) -> str:
|
||||||
pass
|
r"""Visually escape invalid XML characters.
|
||||||
|
|
||||||
|
|
||||||
def bin_xml_escape(arg: object) -> py.xml.raw:
|
|
||||||
r"""Visually escape an object into valid a XML string.
|
|
||||||
|
|
||||||
For example, transforms
|
For example, transforms
|
||||||
'hello\aworld\b'
|
'hello\aworld\b'
|
||||||
|
@ -58,9 +49,6 @@ def bin_xml_escape(arg: object) -> py.xml.raw:
|
||||||
'hello#x07world#x08'
|
'hello#x07world#x08'
|
||||||
Note that the #xABs are *not* XML escapes - missing the ampersand «.
|
Note that the #xABs are *not* XML escapes - missing the ampersand «.
|
||||||
The idea is to escape visually for the user rather than for XML itself.
|
The idea is to escape visually for the user rather than for XML itself.
|
||||||
|
|
||||||
The result is also entity-escaped and wrapped in py.xml.raw() so it can
|
|
||||||
be embedded directly.
|
|
||||||
"""
|
"""
|
||||||
|
|
||||||
def repl(matchobj: Match[str]) -> str:
|
def repl(matchobj: Match[str]) -> str:
|
||||||
|
@ -76,7 +64,7 @@ def bin_xml_escape(arg: object) -> py.xml.raw:
|
||||||
illegal_xml_re = (
|
illegal_xml_re = (
|
||||||
"[^\u0009\u000A\u000D\u0020-\u007E\u0080-\uD7FF\uE000-\uFFFD\u10000-\u10FFFF]"
|
"[^\u0009\u000A\u000D\u0020-\u007E\u0080-\uD7FF\uE000-\uFFFD\u10000-\u10FFFF]"
|
||||||
)
|
)
|
||||||
return py.xml.raw(re.sub(illegal_xml_re, repl, py.xml.escape(str(arg))))
|
return re.sub(illegal_xml_re, repl, str(arg))
|
||||||
|
|
||||||
|
|
||||||
def merge_family(left, right) -> None:
|
def merge_family(left, right) -> None:
|
||||||
|
@ -108,12 +96,12 @@ class _NodeReporter:
|
||||||
self.add_stats = self.xml.add_stats
|
self.add_stats = self.xml.add_stats
|
||||||
self.family = self.xml.family
|
self.family = self.xml.family
|
||||||
self.duration = 0
|
self.duration = 0
|
||||||
self.properties = [] # type: List[Tuple[str, py.xml.raw]]
|
self.properties = [] # type: List[Tuple[str, str]]
|
||||||
self.nodes = [] # type: List[py.xml.Tag]
|
self.nodes = [] # type: List[ET.Element]
|
||||||
self.attrs = {} # type: Dict[str, Union[str, py.xml.raw]]
|
self.attrs = {} # type: Dict[str, str]
|
||||||
|
|
||||||
def append(self, node: py.xml.Tag) -> None:
|
def append(self, node: ET.Element) -> None:
|
||||||
self.xml.add_stats(type(node).__name__)
|
self.xml.add_stats(node.tag)
|
||||||
self.nodes.append(node)
|
self.nodes.append(node)
|
||||||
|
|
||||||
def add_property(self, name: str, value: object) -> None:
|
def add_property(self, name: str, value: object) -> None:
|
||||||
|
@ -122,17 +110,15 @@ class _NodeReporter:
|
||||||
def add_attribute(self, name: str, value: object) -> None:
|
def add_attribute(self, name: str, value: object) -> None:
|
||||||
self.attrs[str(name)] = bin_xml_escape(value)
|
self.attrs[str(name)] = bin_xml_escape(value)
|
||||||
|
|
||||||
def make_properties_node(self) -> Union[py.xml.Tag, str]:
|
def make_properties_node(self) -> Optional[ET.Element]:
|
||||||
"""Return a Junit node containing custom properties, if any.
|
"""Return a Junit node containing custom properties, if any.
|
||||||
"""
|
"""
|
||||||
if self.properties:
|
if self.properties:
|
||||||
return Junit.properties(
|
properties = ET.Element("properties")
|
||||||
[
|
for name, value in self.properties:
|
||||||
Junit.property(name=name, value=value)
|
properties.append(ET.Element("property", name=name, value=value))
|
||||||
for name, value in self.properties
|
return properties
|
||||||
]
|
return None
|
||||||
)
|
|
||||||
return ""
|
|
||||||
|
|
||||||
def record_testreport(self, testreport: TestReport) -> None:
|
def record_testreport(self, testreport: TestReport) -> None:
|
||||||
names = mangle_test_address(testreport.nodeid)
|
names = mangle_test_address(testreport.nodeid)
|
||||||
|
@ -144,7 +130,7 @@ class _NodeReporter:
|
||||||
"classname": ".".join(classnames),
|
"classname": ".".join(classnames),
|
||||||
"name": bin_xml_escape(names[-1]),
|
"name": bin_xml_escape(names[-1]),
|
||||||
"file": testreport.location[0],
|
"file": testreport.location[0],
|
||||||
} # type: Dict[str, Union[str, py.xml.raw]]
|
} # type: Dict[str, str]
|
||||||
if testreport.location[1] is not None:
|
if testreport.location[1] is not None:
|
||||||
attrs["line"] = str(testreport.location[1])
|
attrs["line"] = str(testreport.location[1])
|
||||||
if hasattr(testreport, "url"):
|
if hasattr(testreport, "url"):
|
||||||
|
@ -164,16 +150,17 @@ class _NodeReporter:
|
||||||
temp_attrs[key] = self.attrs[key]
|
temp_attrs[key] = self.attrs[key]
|
||||||
self.attrs = temp_attrs
|
self.attrs = temp_attrs
|
||||||
|
|
||||||
def to_xml(self) -> py.xml.Tag:
|
def to_xml(self) -> ET.Element:
|
||||||
testcase = Junit.testcase(time="%.3f" % self.duration, **self.attrs)
|
testcase = ET.Element("testcase", self.attrs, time="%.3f" % self.duration)
|
||||||
testcase.append(self.make_properties_node())
|
properties = self.make_properties_node()
|
||||||
for node in self.nodes:
|
if properties is not None:
|
||||||
testcase.append(node)
|
testcase.append(properties)
|
||||||
|
testcase.extend(self.nodes)
|
||||||
return testcase
|
return testcase
|
||||||
|
|
||||||
def _add_simple(self, kind: "Type[py.xml.Tag]", message: str, data=None) -> None:
|
def _add_simple(self, tag: str, message: str, data: Optional[str] = None) -> None:
|
||||||
data = bin_xml_escape(data)
|
node = ET.Element(tag, message=message)
|
||||||
node = kind(data, message=message)
|
node.text = bin_xml_escape(data)
|
||||||
self.append(node)
|
self.append(node)
|
||||||
|
|
||||||
def write_captured_output(self, report: TestReport) -> None:
|
def write_captured_output(self, report: TestReport) -> None:
|
||||||
|
@ -203,8 +190,9 @@ class _NodeReporter:
|
||||||
return "\n".join([header.center(80, "-"), content, ""])
|
return "\n".join([header.center(80, "-"), content, ""])
|
||||||
|
|
||||||
def _write_content(self, report: TestReport, content: str, jheader: str) -> None:
|
def _write_content(self, report: TestReport, content: str, jheader: str) -> None:
|
||||||
tag = getattr(Junit, jheader)
|
tag = ET.Element(jheader)
|
||||||
self.append(tag(bin_xml_escape(content)))
|
tag.text = bin_xml_escape(content)
|
||||||
|
self.append(tag)
|
||||||
|
|
||||||
def append_pass(self, report: TestReport) -> None:
|
def append_pass(self, report: TestReport) -> None:
|
||||||
self.add_stats("passed")
|
self.add_stats("passed")
|
||||||
|
@ -212,7 +200,7 @@ class _NodeReporter:
|
||||||
def append_failure(self, report: TestReport) -> None:
|
def append_failure(self, report: TestReport) -> None:
|
||||||
# msg = str(report.longrepr.reprtraceback.extraline)
|
# msg = str(report.longrepr.reprtraceback.extraline)
|
||||||
if hasattr(report, "wasxfail"):
|
if hasattr(report, "wasxfail"):
|
||||||
self._add_simple(Junit.skipped, "xfail-marked test passes unexpectedly")
|
self._add_simple("skipped", "xfail-marked test passes unexpectedly")
|
||||||
else:
|
else:
|
||||||
assert report.longrepr is not None
|
assert report.longrepr is not None
|
||||||
if getattr(report.longrepr, "reprcrash", None) is not None:
|
if getattr(report.longrepr, "reprcrash", None) is not None:
|
||||||
|
@ -220,19 +208,15 @@ class _NodeReporter:
|
||||||
else:
|
else:
|
||||||
message = str(report.longrepr)
|
message = str(report.longrepr)
|
||||||
message = bin_xml_escape(message)
|
message = bin_xml_escape(message)
|
||||||
fail = Junit.failure(message=message)
|
self._add_simple("failure", message, str(report.longrepr))
|
||||||
fail.append(bin_xml_escape(report.longrepr))
|
|
||||||
self.append(fail)
|
|
||||||
|
|
||||||
def append_collect_error(self, report: TestReport) -> None:
|
def append_collect_error(self, report: TestReport) -> None:
|
||||||
# msg = str(report.longrepr.reprtraceback.extraline)
|
# msg = str(report.longrepr.reprtraceback.extraline)
|
||||||
assert report.longrepr is not None
|
assert report.longrepr is not None
|
||||||
self.append(
|
self._add_simple("error", "collection failure", str(report.longrepr))
|
||||||
Junit.error(bin_xml_escape(report.longrepr), message="collection failure")
|
|
||||||
)
|
|
||||||
|
|
||||||
def append_collect_skipped(self, report: TestReport) -> None:
|
def append_collect_skipped(self, report: TestReport) -> None:
|
||||||
self._add_simple(Junit.skipped, "collection skipped", report.longrepr)
|
self._add_simple("skipped", "collection skipped", str(report.longrepr))
|
||||||
|
|
||||||
def append_error(self, report: TestReport) -> None:
|
def append_error(self, report: TestReport) -> None:
|
||||||
assert report.longrepr is not None
|
assert report.longrepr is not None
|
||||||
|
@ -245,18 +229,16 @@ class _NodeReporter:
|
||||||
msg = 'failed on teardown with "{}"'.format(reason)
|
msg = 'failed on teardown with "{}"'.format(reason)
|
||||||
else:
|
else:
|
||||||
msg = 'failed on setup with "{}"'.format(reason)
|
msg = 'failed on setup with "{}"'.format(reason)
|
||||||
self._add_simple(Junit.error, msg, report.longrepr)
|
self._add_simple("error", msg, str(report.longrepr))
|
||||||
|
|
||||||
def append_skipped(self, report: TestReport) -> None:
|
def append_skipped(self, report: TestReport) -> None:
|
||||||
if hasattr(report, "wasxfail"):
|
if hasattr(report, "wasxfail"):
|
||||||
xfailreason = report.wasxfail
|
xfailreason = report.wasxfail
|
||||||
if xfailreason.startswith("reason: "):
|
if xfailreason.startswith("reason: "):
|
||||||
xfailreason = xfailreason[8:]
|
xfailreason = xfailreason[8:]
|
||||||
self.append(
|
xfailreason = bin_xml_escape(xfailreason)
|
||||||
Junit.skipped(
|
skipped = ET.Element("skipped", type="pytest.xfail", message=xfailreason)
|
||||||
"", type="pytest.xfail", message=bin_xml_escape(xfailreason)
|
self.append(skipped)
|
||||||
)
|
|
||||||
)
|
|
||||||
else:
|
else:
|
||||||
assert report.longrepr is not None
|
assert report.longrepr is not None
|
||||||
filename, lineno, skipreason = report.longrepr
|
filename, lineno, skipreason = report.longrepr
|
||||||
|
@ -264,21 +246,17 @@ class _NodeReporter:
|
||||||
skipreason = skipreason[9:]
|
skipreason = skipreason[9:]
|
||||||
details = "{}:{}: {}".format(filename, lineno, skipreason)
|
details = "{}:{}: {}".format(filename, lineno, skipreason)
|
||||||
|
|
||||||
self.append(
|
skipped = ET.Element("skipped", type="pytest.skip", message=skipreason)
|
||||||
Junit.skipped(
|
skipped.text = bin_xml_escape(details)
|
||||||
bin_xml_escape(details),
|
self.append(skipped)
|
||||||
type="pytest.skip",
|
|
||||||
message=bin_xml_escape(skipreason),
|
|
||||||
)
|
|
||||||
)
|
|
||||||
self.write_captured_output(report)
|
self.write_captured_output(report)
|
||||||
|
|
||||||
def finalize(self) -> None:
|
def finalize(self) -> None:
|
||||||
data = self.to_xml().unicode(indent=0)
|
data = self.to_xml()
|
||||||
self.__dict__.clear()
|
self.__dict__.clear()
|
||||||
# Type ignored becuase mypy doesn't like overriding a method.
|
# Type ignored becuase mypy doesn't like overriding a method.
|
||||||
# Also the return value doesn't match...
|
# Also the return value doesn't match...
|
||||||
self.to_xml = lambda: py.xml.raw(data) # type: ignore
|
self.to_xml = lambda: data # type: ignore[assignment]
|
||||||
|
|
||||||
|
|
||||||
def _warn_incompatibility_with_xunit2(
|
def _warn_incompatibility_with_xunit2(
|
||||||
|
@ -502,7 +480,7 @@ class LogXML:
|
||||||
{}
|
{}
|
||||||
) # type: Dict[Tuple[Union[str, TestReport], object], _NodeReporter]
|
) # type: Dict[Tuple[Union[str, TestReport], object], _NodeReporter]
|
||||||
self.node_reporters_ordered = [] # type: List[_NodeReporter]
|
self.node_reporters_ordered = [] # type: List[_NodeReporter]
|
||||||
self.global_properties = [] # type: List[Tuple[str, py.xml.raw]]
|
self.global_properties = [] # type: List[Tuple[str, str]]
|
||||||
|
|
||||||
# List of reports that failed on call but teardown is pending.
|
# List of reports that failed on call but teardown is pending.
|
||||||
self.open_reports = [] # type: List[TestReport]
|
self.open_reports = [] # type: List[TestReport]
|
||||||
|
@ -654,7 +632,7 @@ class LogXML:
|
||||||
def pytest_internalerror(self, excrepr: ExceptionRepr) -> None:
|
def pytest_internalerror(self, excrepr: ExceptionRepr) -> None:
|
||||||
reporter = self.node_reporter("internal")
|
reporter = self.node_reporter("internal")
|
||||||
reporter.attrs.update(classname="pytest", name="internal")
|
reporter.attrs.update(classname="pytest", name="internal")
|
||||||
reporter._add_simple(Junit.error, "internal error", excrepr)
|
reporter._add_simple("error", "internal error", str(excrepr))
|
||||||
|
|
||||||
def pytest_sessionstart(self) -> None:
|
def pytest_sessionstart(self) -> None:
|
||||||
self.suite_start_time = timing.time()
|
self.suite_start_time = timing.time()
|
||||||
|
@ -676,9 +654,8 @@ class LogXML:
|
||||||
)
|
)
|
||||||
logfile.write('<?xml version="1.0" encoding="utf-8"?>')
|
logfile.write('<?xml version="1.0" encoding="utf-8"?>')
|
||||||
|
|
||||||
suite_node = Junit.testsuite(
|
suite_node = ET.Element(
|
||||||
self._get_global_properties_node(),
|
"testsuite",
|
||||||
[x.to_xml() for x in self.node_reporters_ordered],
|
|
||||||
name=self.suite_name,
|
name=self.suite_name,
|
||||||
errors=str(self.stats["error"]),
|
errors=str(self.stats["error"]),
|
||||||
failures=str(self.stats["failure"]),
|
failures=str(self.stats["failure"]),
|
||||||
|
@ -688,7 +665,14 @@ class LogXML:
|
||||||
timestamp=datetime.fromtimestamp(self.suite_start_time).isoformat(),
|
timestamp=datetime.fromtimestamp(self.suite_start_time).isoformat(),
|
||||||
hostname=platform.node(),
|
hostname=platform.node(),
|
||||||
)
|
)
|
||||||
logfile.write(Junit.testsuites([suite_node]).unicode(indent=0))
|
global_properties = self._get_global_properties_node()
|
||||||
|
if global_properties is not None:
|
||||||
|
suite_node.append(global_properties)
|
||||||
|
for node_reporter in self.node_reporters_ordered:
|
||||||
|
suite_node.append(node_reporter.to_xml())
|
||||||
|
testsuites = ET.Element("testsuites")
|
||||||
|
testsuites.append(suite_node)
|
||||||
|
logfile.write(ET.tostring(testsuites, encoding="unicode"))
|
||||||
logfile.close()
|
logfile.close()
|
||||||
|
|
||||||
def pytest_terminal_summary(self, terminalreporter: TerminalReporter) -> None:
|
def pytest_terminal_summary(self, terminalreporter: TerminalReporter) -> None:
|
||||||
|
@ -699,14 +683,12 @@ class LogXML:
|
||||||
_check_record_param_type("name", name)
|
_check_record_param_type("name", name)
|
||||||
self.global_properties.append((name, bin_xml_escape(value)))
|
self.global_properties.append((name, bin_xml_escape(value)))
|
||||||
|
|
||||||
def _get_global_properties_node(self) -> Union[py.xml.Tag, str]:
|
def _get_global_properties_node(self) -> Optional[ET.Element]:
|
||||||
"""Return a Junit node containing custom properties, if any.
|
"""Return a Junit node containing custom properties, if any.
|
||||||
"""
|
"""
|
||||||
if self.global_properties:
|
if self.global_properties:
|
||||||
return Junit.properties(
|
properties = ET.Element("properties")
|
||||||
[
|
for name, value in self.global_properties:
|
||||||
Junit.property(name=name, value=value)
|
properties.append(ET.Element("property", name=name, value=value))
|
||||||
for name, value in self.global_properties
|
return properties
|
||||||
]
|
return None
|
||||||
)
|
|
||||||
return ""
|
|
||||||
|
|
|
@ -323,8 +323,9 @@ class TestPython:
|
||||||
node = dom.find_first_by_tag("testsuite")
|
node = dom.find_first_by_tag("testsuite")
|
||||||
node.assert_attr(errors=1, failures=1, tests=1)
|
node.assert_attr(errors=1, failures=1, tests=1)
|
||||||
first, second = dom.find_by_tag("testcase")
|
first, second = dom.find_by_tag("testcase")
|
||||||
if not first or not second or first == second:
|
assert first
|
||||||
assert 0
|
assert second
|
||||||
|
assert first != second
|
||||||
fnode = first.find_first_by_tag("failure")
|
fnode = first.find_first_by_tag("failure")
|
||||||
fnode.assert_attr(message="Exception: Call Exception")
|
fnode.assert_attr(message="Exception: Call Exception")
|
||||||
snode = second.find_first_by_tag("error")
|
snode = second.find_first_by_tag("error")
|
||||||
|
@ -535,7 +536,7 @@ class TestPython:
|
||||||
node = dom.find_first_by_tag("testsuite")
|
node = dom.find_first_by_tag("testsuite")
|
||||||
tnode = node.find_first_by_tag("testcase")
|
tnode = node.find_first_by_tag("testcase")
|
||||||
fnode = tnode.find_first_by_tag("failure")
|
fnode = tnode.find_first_by_tag("failure")
|
||||||
fnode.assert_attr(message="AssertionError: An error assert 0")
|
fnode.assert_attr(message="AssertionError: An error\nassert 0")
|
||||||
|
|
||||||
@parametrize_families
|
@parametrize_families
|
||||||
def test_failure_escape(self, testdir, run_and_parse, xunit_family):
|
def test_failure_escape(self, testdir, run_and_parse, xunit_family):
|
||||||
|
@ -995,14 +996,14 @@ def test_invalid_xml_escape():
|
||||||
# 0xD, 0xD7FF, 0xE000, 0xFFFD, 0x10000, 0x10FFFF)
|
# 0xD, 0xD7FF, 0xE000, 0xFFFD, 0x10000, 0x10FFFF)
|
||||||
|
|
||||||
for i in invalid:
|
for i in invalid:
|
||||||
got = bin_xml_escape(chr(i)).uniobj
|
got = bin_xml_escape(chr(i))
|
||||||
if i <= 0xFF:
|
if i <= 0xFF:
|
||||||
expected = "#x%02X" % i
|
expected = "#x%02X" % i
|
||||||
else:
|
else:
|
||||||
expected = "#x%04X" % i
|
expected = "#x%04X" % i
|
||||||
assert got == expected
|
assert got == expected
|
||||||
for i in valid:
|
for i in valid:
|
||||||
assert chr(i) == bin_xml_escape(chr(i)).uniobj
|
assert chr(i) == bin_xml_escape(chr(i))
|
||||||
|
|
||||||
|
|
||||||
def test_logxml_path_expansion(tmpdir, monkeypatch):
|
def test_logxml_path_expansion(tmpdir, monkeypatch):
|
||||||
|
|
Loading…
Reference in New Issue