-
-
Notifications
You must be signed in to change notification settings - Fork 15k
libtest: include test output in junit xml reports #110651
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
Changes from 2 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -11,7 +11,7 @@ use crate::{ | |
|
|
||
| pub struct JunitFormatter<T> { | ||
| out: OutputLocation<T>, | ||
| results: Vec<(TestDesc, TestResult, Duration)>, | ||
| results: Vec<(TestDesc, TestResult, Duration, Vec<u8>)>, | ||
| } | ||
|
|
||
| impl<T: Write> JunitFormatter<T> { | ||
|
|
@@ -26,6 +26,18 @@ impl<T: Write> JunitFormatter<T> { | |
| } | ||
| } | ||
|
|
||
| fn str_to_cdata(s: &str) -> String { | ||
| // Drop the stdout in a cdata. Unfortunately, you can't put either of `]]>` or | ||
| // `<?'` in a CDATA block, so the escaping gets a little weird. | ||
| let escaped_output = s.replace("]]>", "]]]]><![CDATA[>"); | ||
| let escaped_output = escaped_output.replace("<?", "<]]><![CDATA[?"); | ||
| // We also smuggle newlines as 
 so as to keep all the output on line line | ||
| let escaped_output = escaped_output.replace("\n", "]]>
<![CDATA["); | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The compiler already pulls in aho-corasick, but the test library does not. Failing test stdout could easily balloon to gigantic sizes -- should I write a PR to swap these replaces to use aho-corasick?
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I don't think so -- it's a higher bar to add dependencies to the standard library, including There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. discussion on Zulip: Let's wait until someone does a perf measurement and finds this to blame. |
||
| // Prune empty CDATA blocks resulting from any escaping | ||
| let escaped_output = escaped_output.replace("<![CDATA[]]>", ""); | ||
| format!("<![CDATA[{}]]>", escaped_output) | ||
| } | ||
|
|
||
| impl<T: Write> OutputFormatter for JunitFormatter<T> { | ||
| fn write_discovery_start(&mut self) -> io::Result<()> { | ||
| Err(io::Error::new(io::ErrorKind::NotFound, "Not yet implemented!")) | ||
|
|
@@ -63,14 +75,14 @@ impl<T: Write> OutputFormatter for JunitFormatter<T> { | |
| desc: &TestDesc, | ||
| result: &TestResult, | ||
| exec_time: Option<&time::TestExecTime>, | ||
| _stdout: &[u8], | ||
| stdout: &[u8], | ||
| _state: &ConsoleTestState, | ||
| ) -> io::Result<()> { | ||
| // Because the testsuite node holds some of the information as attributes, we can't write it | ||
| // until all of the tests have finished. Instead of writing every result as they come in, we add | ||
| // them to a Vec and write them all at once when run is complete. | ||
| let duration = exec_time.map(|t| t.0).unwrap_or_default(); | ||
| self.results.push((desc.clone(), result.clone(), duration)); | ||
| self.results.push((desc.clone(), result.clone(), duration, stdout.to_vec())); | ||
| Ok(()) | ||
| } | ||
| fn write_run_finish(&mut self, state: &ConsoleTestState) -> io::Result<bool> { | ||
|
|
@@ -85,7 +97,7 @@ impl<T: Write> OutputFormatter for JunitFormatter<T> { | |
| >", | ||
| state.failed, state.total, state.ignored | ||
| ))?; | ||
| for (desc, result, duration) in std::mem::take(&mut self.results) { | ||
| for (desc, result, duration, stdout) in std::mem::take(&mut self.results) { | ||
| let (class_name, test_name) = parse_class_name(&desc); | ||
| match result { | ||
| TestResult::TrIgnored => { /* no-op */ } | ||
|
|
@@ -98,6 +110,11 @@ impl<T: Write> OutputFormatter for JunitFormatter<T> { | |
| duration.as_secs_f64() | ||
| ))?; | ||
| self.write_message("<failure type=\"assert\"/>")?; | ||
| if !stdout.is_empty() { | ||
| self.write_message("<system-out>")?; | ||
| self.write_message(&str_to_cdata(&String::from_utf8_lossy(&stdout)))?; | ||
| self.write_message("</system-out>")?; | ||
| } | ||
| self.write_message("</testcase>")?; | ||
| } | ||
|
|
||
|
|
@@ -110,6 +127,11 @@ impl<T: Write> OutputFormatter for JunitFormatter<T> { | |
| duration.as_secs_f64() | ||
| ))?; | ||
| self.write_message(&format!("<failure message=\"{m}\" type=\"assert\"/>"))?; | ||
| if !stdout.is_empty() { | ||
| self.write_message("<system-out>")?; | ||
| self.write_message(&str_to_cdata(&String::from_utf8_lossy(&stdout)))?; | ||
| self.write_message("</system-out>")?; | ||
| } | ||
| self.write_message("</testcase>")?; | ||
| } | ||
|
|
||
|
|
@@ -136,11 +158,19 @@ impl<T: Write> OutputFormatter for JunitFormatter<T> { | |
| TestResult::TrOk => { | ||
| self.write_message(&format!( | ||
| "<testcase classname=\"{}\" \ | ||
| name=\"{}\" time=\"{}\"/>", | ||
| name=\"{}\" time=\"{}\"", | ||
| class_name, | ||
| test_name, | ||
| duration.as_secs_f64() | ||
| ))?; | ||
| if stdout.is_empty() { | ||
| self.write_message("/>")?; | ||
| } else { | ||
| self.write_message("><system-out>")?; | ||
| self.write_message(&str_to_cdata(&String::from_utf8_lossy(&stdout)))?; | ||
| self.write_message("</system-out>")?; | ||
| self.write_message("</testcase>")?; | ||
| } | ||
| } | ||
| } | ||
| } | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,19 @@ | ||
| # ignore-cross-compile | ||
| include ../tools.mk | ||
|
|
||
| # Test expected libtest's junit output | ||
|
|
||
| OUTPUT_FILE_DEFAULT := $(TMPDIR)/libtest-junit-output-default.xml | ||
| OUTPUT_FILE_STDOUT_SUCCESS := $(TMPDIR)/libtest-junit-output-stdout-success.xml | ||
|
|
||
| all: f.rs validate_junit.py output-default.xml output-stdout-success.xml | ||
| $(RUSTC) --test f.rs | ||
| RUST_BACKTRACE=0 $(call RUN,f) -Z unstable-options --test-threads=1 --format=junit > $(OUTPUT_FILE_DEFAULT) || true | ||
| RUST_BACKTRACE=0 $(call RUN,f) -Z unstable-options --test-threads=1 --format=junit --show-output > $(OUTPUT_FILE_STDOUT_SUCCESS) || true | ||
|
|
||
| cat $(OUTPUT_FILE_DEFAULT) | "$(PYTHON)" validate_junit.py | ||
| cat $(OUTPUT_FILE_STDOUT_SUCCESS) | "$(PYTHON)" validate_junit.py | ||
|
|
||
| # Normalize the actual output and compare to expected output file | ||
| cat $(OUTPUT_FILE_DEFAULT) | sed 's/time="[0-9.]*"/time="$$TIME"/g' | diff output-default.xml - | ||
| cat $(OUTPUT_FILE_STDOUT_SUCCESS) | sed 's/time="[0-9.]*"/time="$$TIME"/g' | diff output-stdout-success.xml - |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,23 @@ | ||
| #[test] | ||
| fn a() { | ||
| println!("print from successful test"); | ||
| // Should pass | ||
| } | ||
|
|
||
| #[test] | ||
| fn b() { | ||
| println!("print from failing test"); | ||
| assert!(false); | ||
| } | ||
|
|
||
| #[test] | ||
| #[should_panic] | ||
| fn c() { | ||
| assert!(false); | ||
| } | ||
|
|
||
| #[test] | ||
| #[ignore = "msg"] | ||
| fn d() { | ||
| assert!(false); | ||
| } |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| <?xml version="1.0" encoding="UTF-8"?><testsuites><testsuite name="test" package="test" id="0" errors="0" failures="1" tests="4" skipped="1" ><testcase classname="unknown" name="a" time="$TIME"><system-out><![CDATA[print from successful test]]>
<![CDATA[]]></system-out></testcase><testcase classname="unknown" name="b" time="$TIME"><failure type="assert"/><system-out><![CDATA[print from failing test]]>
<![CDATA[thread 'b' panicked at 'assertion failed: false', f.rs:10:5]]>
<![CDATA[note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace]]>
<![CDATA[]]></system-out></testcase><testcase classname="unknown" name="c" time="$TIME"><system-out><![CDATA[thread 'c' panicked at 'assertion failed: false', f.rs:16:5]]>
<![CDATA[]]></system-out></testcase><system-out/><system-err/></testsuite></testsuites> | ||
|
durin42 marked this conversation as resolved.
Outdated
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| <?xml version="1.0" encoding="UTF-8"?><testsuites><testsuite name="test" package="test" id="0" errors="0" failures="1" tests="4" skipped="1" ><testcase classname="unknown" name="a" time="$TIME"><system-out><![CDATA[print from successful test]]>
<![CDATA[]]></system-out></testcase><testcase classname="unknown" name="b" time="$TIME"><failure type="assert"/><system-out><![CDATA[print from failing test]]>
<![CDATA[thread 'b' panicked at 'assertion failed: false', f.rs:10:5]]>
<![CDATA[note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace]]>
<![CDATA[]]></system-out></testcase><testcase classname="unknown" name="c" time="$TIME"><system-out><![CDATA[thread 'c' panicked at 'assertion failed: false', f.rs:16:5]]>
<![CDATA[]]></system-out></testcase><system-out/><system-err/></testsuite></testsuites> |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,12 @@ | ||
| #!/usr/bin/env python | ||
|
|
||
| import sys | ||
| import xml.etree.ElementTree as ET | ||
|
|
||
| # Try to decode line in order to ensure it is a valid XML document | ||
| for line in sys.stdin: | ||
| try: | ||
| ET.fromstring(line) | ||
| except ET.ParseError as pe: | ||
| print("Invalid xml: %r" % line) | ||
| raise |
Uh oh!
There was an error while loading. Please reload this page.