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

Add support for withAnyArgs method for onFilter calls. #256

Conversation

badasswp
Copy link
Contributor

@badasswp badasswp commented Mar 9, 2025

Summary

This PR implements a new method called withAnyArgs for onFilter calls. This method is particularly useful in test cases where we do not care about the filter arguments passed in but just its return value like so:

WP_Mock::onFilter('custom_content_filter')
    ->withAnyArgs()
    ->reply('This is filtered')

Closes: #156

Details

I have introduced a static array called $filtersWithAnyArgs that basically acts as an associative array for filter names mapped to random integer values.

This array will help us store random integers at the point where the withAnyArgs method is called, so that we can check for those later in the apply method and accurately set our passed in args.

Run tests:

vendor/bin/phpunit ./tests/Unit/WP_MockTest.php 
Screenshot 2025-03-09 at 12 16 12

Contributor checklist

  • I agree to follow this project's Code of Conduct.
  • I have updated the documentation accordingly
  • I have added tests to cover changes introduced by this pull request
  • All new and existing tests pass

Testing

Create class like so:

namespace MyPlugin;

class MyClass
{
    public function filterContent() : string
    {
        return apply_filters('custom_content_filter', 'This is unfiltered');
    }
}

Create Test like so:

use MyPlugin\MyClass;
use WP_Mock;
use WP_Mock\Tools\TestCase as TestCase;

final class MyClassTest extends TestCase
{
    public function testCanFilterContent() : void 
    {
        WP_Mock::onFilter('custom_content_filter')
            ->withAnyArgs()
            ->reply('This is filtered');

        $content = (new MyClass())->filterContent();

        $this->assertEquals('This is filtered', $content);
    }
}

Run test, it should pass successfully using the withAnyArgs method:

composer run test

Reviewer checklist

  • Code changes review
  • Documentation changes review
  • Unit tests pass
  • Static analysis passes

@coveralls
Copy link

coveralls commented Mar 9, 2025

Coverage Status

coverage: 66.142% (-0.3%) from 66.446%
when pulling 3b4f99e on badasswp:feat/add-with-anything-method-for-on-filter
into bdbb090 on 10up:trunk.

@badasswp badasswp force-pushed the feat/add-with-anything-method-for-on-filter branch from e2b231a to 03ed5e9 Compare March 9, 2025 12:57
@badasswp badasswp force-pushed the feat/add-with-anything-method-for-on-filter branch from 03ed5e9 to 3038fef Compare March 9, 2025 14:07
Copy link
Contributor

@agibson-godaddy agibson-godaddy left a comment

Choose a reason for hiding this comment

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

Thanks for putting this together! Just one suggestion.

@badasswp badasswp changed the title Add support for withAnything method for onFilter calls. Add support for withAnyArgs method for onFilter calls. Mar 11, 2025
Copy link
Contributor

@agibson-godaddy agibson-godaddy left a comment

Choose a reason for hiding this comment

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

Nice work!! :)

@agibson-godaddy agibson-godaddy merged commit 268a7ad into 10up:trunk Mar 11, 2025
7 of 8 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Reply to filter 'with' anything
3 participants