-
Notifications
You must be signed in to change notification settings - Fork 110
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 Dominant Color Images Plugin #1837
Improve Test Coverage for Dominant Color Images Plugin #1837
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## trunk #1837 +/- ##
==========================================
+ Coverage 69.76% 70.99% +1.23%
==========================================
Files 86 85 -1
Lines 6965 6958 -7
==========================================
+ Hits 4859 4940 +81
+ Misses 2106 2018 -88
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
@@ -42,7 +42,7 @@ public function test_dominant_color_metadata( string $image_path, array $expecte | |||
* | |||
* @dataProvider provider_get_dominant_color | |||
* | |||
* @covers ::dominant_color_get_dominant_color | |||
* @covers helper::dominant_color_get_dominant_color |
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.
This doesn't seem right? The ::
here refers to the global namespace.
* @covers helper::dominant_color_get_dominant_color | |
* @covers ::dominant_color_get_dominant_color |
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.
::
refers to the global namespace, and it works for rest of the functions however, when I'm trying to generate coverage report, for the functions where I've added helper
& hooks
it's showing 0 coverage without file reference.
Previous Result :
-
When setting annotation to
* @covers ::dominant_color_get_dominant_color
&* @covers ::dominant_color_img_tag_add_dominant_color
-
helper.php

hooks.php

New Result :
-
When setting annotation to
* @covers helper::dominant_color_get_dominant_color
&* @covers hooks::dominant_color_img_tag_add_dominant_color
-
helper.php

hooks.php

So how should I proceed with this since helper.php
& hooks.php
file don't have a class so ClassName:functionName
annotations will not work I also tried adding namespace to helper.php
& hooks.php
but it results in failing all the test cases and throws error?
cc : @westonruter
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.
Strange. I don't know why that would be. I also don't understand adding hooks
and helper
to the beginning of those functions. They would seem to indicate there are classes called hooks
and helper
, which there aren't.
You're seeing this with local coverage report, but are you also seeing it with the Codecov coverage report?
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.
They would seem to indicate there are classes called hooks and helper, which there aren't.
Exactly, still for some reason it seems to work.
You're seeing this with local coverage report, but are you also seeing it with the Codecov coverage report?
Yes, in Codecov coverage report also the same is happening.
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.
@thelovekesh any ideas?
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.
@sarthak-19 can you please upload the xml coverage report? maybe that can help analyze how code coverage driver is looking for things?
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.
@@ -91,7 +91,7 @@ public function test_has_transparency_metadata( string $image_path, array $expec | |||
* | |||
* @dataProvider provider_get_dominant_color | |||
* | |||
* @covers ::dominant_color_get_dominant_color | |||
* @covers helper::dominant_color_get_dominant_color |
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.
* @covers helper::dominant_color_get_dominant_color | |
* @covers ::dominant_color_get_dominant_color |
@@ -113,7 +113,7 @@ public function test_dominant_color_has_transparency( string $image_path, array | |||
* | |||
* @dataProvider provider_get_dominant_color | |||
* | |||
* @covers ::dominant_color_img_tag_add_dominant_color | |||
* @covers hooks::dominant_color_img_tag_add_dominant_color |
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.
* @covers hooks::dominant_color_img_tag_add_dominant_color | |
* @covers ::dominant_color_img_tag_add_dominant_color |
@@ -199,7 +199,7 @@ public function data_dominant_color_img_tag_add_dominant_color_requires_proper_q | |||
* | |||
* @dataProvider data_provider_dominant_color_check_inline_style | |||
* | |||
* @covers ::dominant_color_img_tag_add_dominant_color | |||
* @covers hooks::dominant_color_img_tag_add_dominant_color |
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.
* @covers hooks::dominant_color_img_tag_add_dominant_color | |
* @covers ::dominant_color_img_tag_add_dominant_color |
plugins/dominant-color-images/tests/test-dominant-color-image-editor-imagick.php
Outdated
Show resolved
Hide resolved
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 Unlinked AccountsThe 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.
To understand the WordPress project's expectations around crediting contributors, please review the Contributor Attribution page in the Core Handbook. |
@westonruter Should I make any changes in this one? |
@sarthak-19 We still need to figure out what is going on with #1837 (comment) |
Updated the code to address #1837 (comment) , turns out it was indeed invalid name, and if we pass any invalid name lets say instead of But the issue mentioned in speculation plugin PR #1845 (review) is present in this also, that's why removed 2 cc : @westonruter |
This reverts commit e6c54b0.
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.
Almost there
The current test failure is not related to this PR. It's fixed in #1913. Once that is merged you can update this branch with those changes to clear that error. |
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.
Thanks for this!
… update/dci-test-coverage * 'trunk' of https://github.com/WordPress/performance: Update embed-optimizer snapshots Update image-prioritizer test case Remove transitional XPath
Summary
This is part of #1789:
@covers
Annotationscc : @westonruter