Skip to content

Commit 7fc2227

Browse files
authored
Unit Test: Ensure that apply_filters is extracted, and that the parameters to it are as well. (WordPress#241)
1 parent fcb0828 commit 7fc2227

File tree

3 files changed

+18
-1
lines changed

3 files changed

+18
-1
lines changed

tests/phpunit/includes/export-testcase.php

+7-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,13 @@ protected function assertEntityContains( $entity, $type, $expected ) {
5959
foreach ( $entity[ $type ] as $exported ) {
6060
if ( $exported['line'] == $expected['line'] ) {
6161
foreach ( $expected as $key => $expected_value ) {
62-
$this->assertEquals( $expected_value, $exported[ $key ] );
62+
if ( isset( $exported[ $key ] ) ) {
63+
$exported_value = $exported[ $key ];
64+
} else {
65+
$exported_value = _wp_array_get( $exported, explode( '.', $key ), null );
66+
}
67+
68+
$this->assertEquals( $expected_value, $exported_value );
6369
}
6470

6571
return;

tests/phpunit/tests/export/hooks.inc

+1
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,4 @@ do_action( "action_with_double_quotes" );
55
do_action( $variable . '-action' );
66
do_action( "another-{$variable}-action" );
77
do_action( 'hook_' . $object->property . '_pre' );
8+
apply_filters( 'plain_filter', $variable, $filter_context );

tests/phpunit/tests/export/hooks.php

+10
Original file line numberDiff line numberDiff line change
@@ -35,5 +35,15 @@ public function test_hook_names_standardized() {
3535
$this->assertFileContainsHook(
3636
array( 'name' => 'hook_{$object->property}_pre', 'line' => 7 )
3737
);
38+
39+
$this->assertFileContainsHook(
40+
array(
41+
'type' => 'filter',
42+
'name' => 'plain_filter',
43+
'line' => 8,
44+
'arguments.0' => '$variable',
45+
'arguments.1' => '$filter_context'
46+
)
47+
);
3848
}
3949
}

0 commit comments

Comments
 (0)