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

codesniffer: Add Jetpack.PHPUnit.TestMethodCovers sniff #42758

Merged
merged 4 commits into from
Apr 4, 2025

Conversation

anomiex
Copy link
Contributor

@anomiex anomiex commented Mar 27, 2025

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:

  • Have you written new tests for your changes, if applicable?
  • Have you checked the E2E test CI results, and verified that your changes do not break them?
  • Have you tested your changes on WordPress.com, if applicable (if so, you'll see a generated comment below with a script to run)?

Jetpack product discussion

PT: pf4qpu-Fo-p2

Does this pull request change what data or activity we track or use?

No

Testing instructions:

  • CI happy? Tests seem to cover all use cases?
  • Revert the change to .phpcs.xml.dist and run composer phpcs:lint:required. See what it flags. Try running composer phpcs:fix on some of those files.

@anomiex anomiex added [Status] Needs Review This PR is ready for review. [Pri] Normal [Type] Feature Development of a new feature labels Mar 27, 2025
@anomiex anomiex requested a review from a team March 27, 2025 21:21
@anomiex anomiex self-assigned this Mar 27, 2025
Copy link
Contributor

github-actions bot commented Mar 27, 2025

Thank you for your PR!

When contributing to Jetpack, we have a few suggestions that can help us test and review your patch:

  • ✅ Include a description of your PR changes.
  • 🔴 Add a "[Status]" label (In Progress, Needs Review, ...).
  • ✅ Add a "[Type]" label (Bug, Enhancement, Janitorial, Task).
  • ✅ Add testing instructions.
  • ✅ Specify whether this PR includes any changes to data or privacy.
  • ✅ Add changelog entries to affected projects

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:

  1. Ensure all required checks appearing at the bottom of this PR are passing.
  2. Make sure to test your changes on all platforms that it applies to. You're responsible for the quality of the code you ship.
  3. You can use GitHub's Reviewers functionality to request a review.
  4. When it's reviewed and merged, you will be pinged in Slack to deploy the changes to WordPress.com simple once the build is done.

If you have questions about anything, reach out in #jetpack-developers for guidance!

@github-actions github-actions bot added [Status] Needs Author Reply We need more details from you. This label will be auto-added until the PR meets all requirements. and removed [Status] Needs Review This PR is ready for review. labels Mar 27, 2025
Copy link

jp-launch-control bot commented Mar 27, 2025

Code Coverage Summary

4 files are newly checked for coverage.

File Coverage
projects/packages/codesniffer/Jetpack/Sniffs/PHPUnit/TestMethodCoversSniff.php 142/142 (100.00%) 💚
projects/packages/codesniffer/src/Utils/DocBlocks.php 46/46 (100.00%) 💚
projects/packages/codesniffer/src/Utils/Navigation.php 72/72 (100.00%) 💚
projects/packages/codesniffer/src/Utils/Tokens.php 24/24 (100.00%) 💚

Full summary · PHP report

tbradsha
tbradsha previously approved these changes Apr 1, 2025
Copy link
Contributor

@tbradsha tbradsha left a 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:

  1. Removed rule exclusion.
  2. Got lots of warnings with composer phpcs:lint:required.
  3. composer phpcs:fix projects/packages/stats/tests/php/Tracking_Pixel_Test.php
  4. 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.
  5. 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?

Base automatically changed from update/codesniffer-reorganize-tests to trunk April 1, 2025 18:36
@anomiex anomiex dismissed tbradsha’s stale review April 1, 2025 18:36

The base branch was changed.

anomiex added 3 commits April 1, 2025 14:37
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.
@anomiex anomiex force-pushed the add/phpcs-phpunit-coverage-annotation-sniff branch from 0c1bbeb to 79f0317 Compare April 1, 2025 18:37
@anomiex
Copy link
Contributor Author

anomiex commented Apr 1, 2025

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?

It does since PHPUnit 11.1. OTOH, if there are some test methods currently doing @covers SomeClass::asdf and others doing nothing, just the @covers SomeClass::asdf would reduce coverage. Overall I think @covers SomeClass will probably do closer to the right thing more often than not, at least for our code base, but I made it configurable.

Copy link
Contributor

@tbradsha tbradsha left a 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.

@anomiex anomiex merged commit cd517b9 into trunk Apr 4, 2025
63 checks passed
@anomiex anomiex deleted the add/phpcs-phpunit-coverage-annotation-sniff branch April 4, 2025 16:07
@github-actions github-actions bot removed the [Status] Needs Author Reply We need more details from you. This label will be auto-added until the PR meets all requirements. label Apr 4, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants