libtest's junit formatter does not produce valid XML for doctests #99813
Labels
A-libtest
Area: `#[test]` / the `test` library
C-bug
Category: This is a bug.
T-compiler
Relevant to the compiler team, which will review and decide on the PR/issue.
T-testing-devex
Relevant to the testing devex team (testing DX), which will review and decide on the PR/issue.
This issue is related to #85563. The junit formatter of libtest does not produce correct XML for some doctests. Take the following as an example:
When running
cargo +nightly-2022-07-26 test --doc -- -Z unstable-options --format junit
, the following (invalid) XML is generated (formatted with an external tool):The XML is invalid because of the
name
attribute of thetestcase
element. It contains the invalid characters<
and>
, which should be escaped to<
and>
as far as I understand.Proposed solution
In a quick and dirty way I would implement something similar to what the JSON formatter does to escape the strings to valid XML attributes - I just did not have time to make a PR so far.
Apart from that I never contributed to this repository, nor am I specifically familiar with libtest. What would it take to implement the serialization based on serde and a crate like serde_xml_rs? Could I just add these crates as a dependency? I feel like this would be much cleaner than just repeating what the json formatter does.
The text was updated successfully, but these errors were encountered: