Skip to content
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

Recursively check for errors/failures in produced JUnit result XMLs #446

Merged

Conversation

ngmor
Copy link
Contributor

@ngmor ngmor commented May 10, 2023

I added a recursive check for errors/failures in JUnit result XMLs for the ament_add_test() runner to address the issue described here.

Signed-off-by: Nick Morales ngmorales97@gmail.com

@clalancette
Copy link
Contributor

We need to check the interaction of this with colcon test and colcon test-result, and also with Jenkins for our CI jobs.

@cottsay
Copy link
Contributor

cottsay commented May 30, 2023

I'm a bit conflicted about where to go from here.

My first thought was that an unbounded recursive traversal was overkill to just descend 1 extra level deep. Then I was reading the documentation you linked and it mentions:

A test case is considered successful (passed) unless there is another result element underneath it. Most tools support the result elements skipped, failure and error.

So it seems that a valid JUnit file need not include any errors or failures attributes at all. This (frustratingly) means there could exist a valid JUnit file which contradicts itself, reporting a testsuite with 0 errors via the attribute but a testcase with a error child. It also means that a recursive crawl through the whole tree is the only way to know for sure that there aren't any errors or failures. Maybe we could optimize a little by not descending into a testsuite which has an attribute for errors and/or failures, which would also give us a clear answer about what to do if there is a contradiction.


I definitely agree that we should make a change here. If your goal is only to support Catch2's outputs, I think we should punt the recursive crawl and instead add an explicit check for skipping the testsuites root element.

Signed-off-by: Nick Morales <ngmorales97@gmail.com>
@ngmor ngmor force-pushed the ngmor/ament_add_test_handle_general_junit_xml branch from a4daa37 to 9cc3498 Compare June 18, 2023 18:44
…ending into 'testsuite' tags with error/failure attributes.

Signed-off-by: Nick Morales <ngmorales97@gmail.com>
@ngmor
Copy link
Contributor Author

ngmor commented Jun 18, 2023

@cottsay apologies for the delay on this. I like your suggestion to limit recursion and select a clear answer in cases of contradiction, since that optimizes but also (hopefully) gives us a little more flexibility than just Catch2 JUnit XMLs. I've implemented that in my latest commit. Let me know what you think.

@ngmor
Copy link
Contributor Author

ngmor commented Jul 27, 2023

@cottsay bump on this, let me know if you have any thoughts on my lastest update.

@cottsay
Copy link
Contributor

cottsay commented Jul 28, 2023

This seems like a reasonable improvement. I'm still not thrilled about the recursive traversal, but that's the specification's fault not yours.

  • Linux Build Status
  • Linux-aarch64 Build Status
  • Linux-rhel Build Status
  • Windows Build Status

@ngmor
Copy link
Contributor Author

ngmor commented Sep 1, 2023

Sorry, this is my first time making a contribution to a ROS repository. Is there anything else that needs to be done on my end to close this out?

@cottsay
Copy link
Contributor

cottsay commented Sep 1, 2023

Is there anything else that needs to be done on my end to close this out?

No, it's on me to get this merged. CI passed, but I'd like to do some manual smoke testing to ensure that test failures continue to surface correctly.

Copy link
Contributor

@cottsay cottsay left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No regressions that I can see, thanks!

@cottsay cottsay merged commit 65b1754 into ament:rolling Sep 1, 2023
3 checks passed
@ngmor
Copy link
Contributor Author

ngmor commented Sep 5, 2023

Any chance this could be backported to Iron and/or Humble? I've got a package that relies on a custom test runner (which is essentially just the change I committed here) as a workaround for this issue in those distros.

@cottsay
Copy link
Contributor

cottsay commented Oct 11, 2023

@clalancette, how do you and/or the ament_cmake maintainers feel about this backport? I view it as a feature and I think it would be OK, but it walks the line.

@clalancette
Copy link
Contributor

@clalancette, how do you and/or the ament_cmake maintainers feel about this backport? I view it as a feature and I think it would be OK, but it walks the line.

I think it would be OK to backport to both; it doesn't change API, and enables downstream users.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants