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

Precision loss in aggregated test suite execution time(s) reported by JUnit XML logger #6133

Closed
niconoe- opened this issue Feb 17, 2025 · 1 comment
Assignees
Labels
feature/logging/junit Issues related to logging test results in JUnit XML format type/bug Something is broken version/12 Something affects PHPUnit 12

Comments

@niconoe-
Copy link

Q A
PHPUnit version >= 12.0.0
PHP version 8.3.* or 8.4.*
Installation Method Composer

Summary

Since PHPUnit 12, the execution time of testsuites has been truncated as integers (seconds), which makes losing the precision. For extra processing like summing or averaging using the JUnit report, this causes wrong calculation or worse: division by zero on averages calculations.

Current behavior

In the JUnit report in XML since PHPUnit 12, on tags, the time attribute is cast as an integer (even if displayed as a float).

How to reproduce

Just run a test suite and look at the JUnit report.

Expected behavior

The expected behavior is to keep the highest possible precision on filling the time attribute, and not losing the milliseconds.

Additional information

I think the issue is coming from the additional cast into an integer of the $time variable here:

$this->testSuiteTimes[$this->testSuiteLevel] += (int) $time;

Comparing to the latest v11, where there is no cast:

$this->testSuiteTimes[$this->testSuiteLevel] += $time;

I don't know if there is any other implications about removing the cast (PHPStan / Psalm / unit tests / infections…) so I'm not sure I can provide a PR and take care about it. If that's really as simple as removing the cast and no implication so far, I can do it.

@niconoe- niconoe- added the type/bug Something is broken label Feb 17, 2025
@sebastianbergmann sebastianbergmann added version/12 Something affects PHPUnit 12 feature/logging/junit Issues related to logging test results in JUnit XML format labels Feb 17, 2025
@sebastianbergmann sebastianbergmann self-assigned this Feb 17, 2025
@sebastianbergmann sebastianbergmann changed the title PHPUnit 12 : time execution is losing milliseconds in JUnit report Precision loss in aggregated test suite execution time(s) reported by JUnit XML logger Feb 17, 2025
@niconoe-
Copy link
Author

That was fast as lightning! TYVM!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
feature/logging/junit Issues related to logging test results in JUnit XML format type/bug Something is broken version/12 Something affects PHPUnit 12
Projects
None yet
Development

No branches or pull requests

2 participants