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

Improve Test Coverage for Auto Sizes Plugin #1879

Open
wants to merge 10 commits into
base: trunk
Choose a base branch
from

Conversation

sarthak-19
Copy link
Contributor

@sarthak-19 sarthak-19 commented Feb 18, 2025

Summary

This is part of #1789:

  • Ignore Coverage for Non-Critical Code Blocks
  • Add Missing @covers Annotations
  • Add Missing Tests
Before : 79.00% ⚠️ After: 95.00% ✅
image  image

cc : @westonruter

@sarthak-19 sarthak-19 changed the title Improve Test Coverage for Web Worker Offloading Plugin Improve Test Coverage for Auto Sizes Plugin Feb 18, 2025
Copy link

codecov bot commented Feb 18, 2025

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 70.01%. Comparing base (2c3e1ca) to head (b15d7fe).
Report is 261 commits behind head on trunk.

Additional details and impacted files
@@            Coverage Diff             @@
##            trunk    #1879      +/-   ##
==========================================
+ Coverage   66.70%   70.01%   +3.30%     
==========================================
  Files          88       84       -4     
  Lines        7029     6973      -56     
==========================================
+ Hits         4689     4882     +193     
+ Misses       2340     2091     -249     
Flag Coverage Δ
multisite 70.01% <ø> (+3.30%) ⬆️
single 39.86% <ø> (+2.66%) ⬆️

Flags with carried forward coverage won't be shown. Click here to find out more.

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

@sarthak-19 sarthak-19 marked this pull request as ready for review February 18, 2025 19:49
Copy link

github-actions bot commented Feb 18, 2025

The following accounts have interacted with this PR and/or linked issues. I will continue to update these lists as activity occurs. You can also manually ask me to refresh this list by adding the props-bot label.

Unlinked Accounts

The following contributors have not linked their GitHub and WordPress.org accounts: @[email protected].

Contributors, please read how to link your accounts to ensure your work is properly credited in WordPress releases.

If you're merging code through a pull request on GitHub, copy and paste the following into the bottom of the merge commit message.

Unlinked contributors: [email protected].

Co-authored-by: sarthak-19 <[email protected]>
Co-authored-by: mukeshpanchal27 <[email protected]>
Co-authored-by: pravinparmar2404 <[email protected]>
Co-authored-by: westonruter <[email protected]>
Co-authored-by: phanduynam <[email protected]>

To understand the WordPress project's expectations around crediting contributors, please review the Contributor Attribution page in the Core Handbook.

Copy link
Member

@mukeshpanchal27 mukeshpanchal27 left a comment

Choose a reason for hiding this comment

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

Nit-pick

@westonruter westonruter added [Plugin] Enhanced Responsive Images Issues for the Enhanced Responsive Images plugin (formerly Auto Sizes) [Type] Enhancement A suggestion for improvement of an existing feature skip changelog PRs that should not be mentioned in changelogs labels Feb 21, 2025
@westonruter westonruter added this to the auto-sizes n.e.x.t milestone Feb 21, 2025
@@ -63,7 +63,7 @@ function auto_sizes_prime_attachment_caches( $content ): string {
*/
function auto_sizes_filter_image_tag( $content, array $parsed_block, WP_Block $block ): string {
if ( ! is_string( $content ) ) {
return '';
return ''; // @codeCoverageIgnore
Copy link
Member

Choose a reason for hiding this comment

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

Ditto. I don't think this should be ignored because technically this is a code path that can be tested.

Copy link
Member

Choose a reason for hiding this comment

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

The assertion to test for with auto_sizes_prime_attachment_caches() is a bit tricky though. For one, an assertion can assert that the input $content is identical to the return value. But then otherwise, when there is a class with an attachment ID in it or no class attribute at all, then this means _prime_post_caches() is called or not. I guess you could check to see if a query was done on the DB or not?

Comment on lines +723 to +730
public function test_auto_sizes_prime_attachment_caches_with_empty_class(): void {
$img_tag = '<img src="https://example.com/foo.png">';

$result = auto_sizes_prime_attachment_caches( $img_tag );

// Assert that the output is the same as the input since no processing should occur.
$this->assertSame( $img_tag, $result );
}
Copy link
Member

Choose a reason for hiding this comment

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

Note that this test doesn't actually test that the attachment caches were primed. Ideally there would be a data provider for this, one which tells the test function to create an attachment and get the image HTML for it via wp_get_attachment_image(). In this case, it should assert somehow that _prime_post_caches() was called. Then there could be another case in the data provider for an external image without a class attribute as you have here, and in this case it should assert that _prime_post_caches() was not called.

@phanduynam

This comment was marked as spam.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
[Plugin] Enhanced Responsive Images Issues for the Enhanced Responsive Images plugin (formerly Auto Sizes) skip changelog PRs that should not be mentioned in changelogs [Type] Enhancement A suggestion for improvement of an existing feature
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants