Files
wordpress-develop/tests/phpunit/tests/hooks/preinitHooks.php
2021-02-14 12:20:34 +00:00

41 lines
962 B
PHP

<?php
/**
* Test the IteratorAggregate implementation of WP_Hook
*
* @group hooks
* @covers WP_Hook::build_preinitialized_hooks
*/
class Tests_Hooks_PreinitHooks extends WP_UnitTestCase {
public function test_array_to_hooks() {
$tag1 = __FUNCTION__ . '_1';
$priority1 = rand( 1, 100 );
$tag2 = __FUNCTION__ . '_2';
$priority2 = rand( 1, 100 );
$filters = array(
$tag1 => array(
$priority1 => array(
'test1' => array(
'function' => '__return_false',
'accepted_args' => 2,
),
),
),
$tag2 => array(
$priority2 => array(
'test1' => array(
'function' => '__return_null',
'accepted_args' => 1,
),
),
),
);
$hooks = WP_Hook::build_preinitialized_hooks( $filters );
$this->assertSame( $priority1, $hooks[ $tag1 ]->has_filter( $tag1, '__return_false' ) );
$this->assertSame( $priority2, $hooks[ $tag2 ]->has_filter( $tag2, '__return_null' ) );
}
}