-
Notifications
You must be signed in to change notification settings - Fork 817
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
codesniffer: Add Jetpack.PHPUnit.TestMethodCovers
sniff
#42758
Conversation
Thank you for your PR! When contributing to Jetpack, we have a few suggestions that can help us test and review your patch:
This comment will be updated as you work on your PR and make changes. If you think that some of those checks are not needed for your PR, please explain why you think so. Thanks for cooperation 🤖 Follow this PR Review Process:
If you have questions about anything, reach out in #jetpack-developers for guidance! |
Code Coverage Summary4 files are newly checked for coverage.
|
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.
That's an impressive set of tests! I only skimmed the sniff + utils, but things seem to work:
- Removed rule exclusion.
- Got lots of warnings with
composer phpcs:lint:required
. composer phpcs:fix projects/packages/stats/tests/php/Tracking_Pixel_Test.php
- Four warnings were fixed by removing things from the methods, but I was expecting the
@covers
to be moved to the class. As it turns out, this already had an appropriate class-level@covers
. - Doing the same for
projects/packages/publicize/tests/php/Share_Post_Controller_Test.php
added it to the class.
I guess now that we're "covering" at the class level, this means code coverage will likely go up artificially, yes? Would PHPUnit allow @covers SomeClass::asdf
at the class level?
PHPUnit 11 has effectively deprecated using `@covers` on test methods, as the annotation is deprecated in favor of attributes that can only be used at the class level. This new sniff will move the `@covers` directives from the methods to the class. The new sniff is disabled for the moment in the monorepo itself; a followup PR will fix all the existing instances and enable the sniff.
0c1bbeb
to
79f0317
Compare
It does since PHPUnit 11.1. OTOH, if there are some test methods currently doing |
…verage-annotation-sniff
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.
Sorry, missed that this needed another review.
Proposed changes:
PHPUnit 11 has effectively deprecated using
@covers
on test methods, as the annotation is deprecated in favor of attributes that can only be used at the class level.This new sniff will move the
@covers
directives from the methods to the class.The new sniff is disabled for the moment in the monorepo itself; a followup PR will fix all the existing instances and enable the sniff.
Other information:
Jetpack product discussion
PT: pf4qpu-Fo-p2
Does this pull request change what data or activity we track or use?
No
Testing instructions:
.phpcs.xml.dist
and runcomposer phpcs:lint:required
. See what it flags. Try runningcomposer phpcs:fix
on some of those files.