-
Notifications
You must be signed in to change notification settings - Fork 13.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(libtest): Add JUnit formatter #84568
Conversation
r? @yaahc (rust-highfive has picked a reviewer for you, use r? to override) |
Hey, just wanted to drop in to let you know that I've done an initial review and this looks good so far. Based on the comments it looks like you have some additional changes still planned so I'll hold off on approving until you've made the changes you mentioned. |
Hm, I have some mild reservations about supporting junit (and other more specialized frameworks). We already have a json backend, and it seems likely that could be mapped to junit with an external crate if desired. That does hurt usability somewhat, but I'm not sure it makes sense to support all possible test output formats in-tree either. Can you perhaps share what is expected to consume the junit output? Or what the motivation is? |
Well, JUnit is universally supported format: a lot of test harnesses/runners support JUnit as an output format, many Continuous Integration platforms support consuming it. I think CI would be a common use case to use JUnit as output. There is no point on supporting all other formats, like you said, because JUnit format is the least common denominator across all of them. As for JSON backend goes, well, it's not stabilized and not documented. You can map it to JUnit, like you said, I did that in Personally, I would prefer if I could keep console output, and write JUnit report into a file in parallel. |
As @andoriyu said most CI systems can consume JUnit reports. Of course you can transform json output into anything, but it seems to indirect to me. |
I am not an appropriate reviewer for this PR, please don't request reviews from me. |
Oh, you just left some comment in the past. My bad. |
@Mark-Simulacrum do you still feel reservations given @andoriyu's response? |
Mostly resolved, yeah. I think we should get a tracking issue filed, particularly given the presence of several outstanding defects (as noted in the PR description). It's not clear to me what the path to stabilization for these custom test outputs would be, but it needn't block unstable addition. |
I don't believe that junit is custom at all. Allmost all CIs have support for junit, e.g.: |
Sounds good. @andoriyu, can you go ahead and create a tracking issue? Once that's setup I think this PR is good to go. |
@yaahc Done - #85563. I've never filled tracking issues before, if I made any mistakes please let me know. |
📌 Commit 9f83e22 has been approved by |
⌛ Testing commit 9f83e22 with merge 90f23ae3440a957bc9de51e4e2e2a99330f875ac... |
The job Click to see the possible cause of the failure (guessed by this bot)
|
💔 Test failed - checks-actions |
@yaahc looks like crates.io was down briefly? |
name=\"{}\" time=\"{}\">", | ||
class_name, | ||
test_name, | ||
duration.as_secs() |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It would be nice if the output supports subsecond precision for the duration. This is what cargo2junit does. That way you don't loose the runtime information for fast tests.
☀️ Test successful - checks-actions |
Why this so green and somehow part of benchmarks don't run: https://perf.rust-lang.org/compare.html?start=e51830b90afd339332892a8f20db1957d43bf086&end=1c6868aa21981b37cbd3fc95828ee3b0ac22d494&stat=instructions%3Au edit: source of this #85757 |
tracking issue: #85563
Add an alternative formatter to
libtest
. Formatter produces valid xml that later can be interpreted as JUnit report.Caveats:
timestamp
is required by schema, but every viewer/parser ignores it. Attribute is not set to avoid depending on chrono;Sample output for unit tests (pretty printed by 3rd party tool):
Sample output for integration tests (pretty printed by 3rd party tool):
Sample output for Doc-tests (pretty printed by 3rd party tool):