Skip to content

Commit 6fee919

Browse files
committed
Add explicit test for od_get_rest_api_health_check_response
1 parent 8926f10 commit 6fee919

File tree

1 file changed

+66
-2
lines changed

1 file changed

+66
-2
lines changed

plugins/optimization-detective/tests/test-site-health.php

+66-2
Original file line numberDiff line numberDiff line change
@@ -162,6 +162,60 @@ public function test_rest_api_availability( $mocked_response, string $expected_o
162162
$this->assertSame( $expected_unavailable, od_is_rest_api_unavailable() );
163163
}
164164

165+
/**
166+
* Data provider.
167+
*
168+
* @return array<string, mixed>
169+
*/
170+
public function data_provider_test_od_get_rest_api_health_check_response(): array {
171+
return array(
172+
'available' => array(
173+
'mocked_response' => $this->build_mock_response( ...self::EXPECTED_MOCKED_RESPONSE_ARGS ),
174+
),
175+
'unauthorized' => array(
176+
'mocked_response' => $this->build_mock_response( ...self::UNAUTHORISED_MOCKED_RESPONSE_ARGS ),
177+
),
178+
'error' => array(
179+
'mocked_response' => new WP_Error( 'bad' ),
180+
),
181+
);
182+
}
183+
184+
/**
185+
* @covers ::od_get_rest_api_health_check_response
186+
*
187+
* @dataProvider data_provider_test_od_get_rest_api_health_check_response
188+
*
189+
* @param array<string, mixed>|WP_Error $mocked_response Mocked response.
190+
*/
191+
public function test_od_get_rest_api_health_check_response( $mocked_response ): void {
192+
$transient_key = 'od_rest_api_health_check_response';
193+
$filter_observer = $this->filter_rest_api_response( $mocked_response );
194+
delete_transient( $transient_key );
195+
$this->assertSame( 0, $filter_observer->counter );
196+
197+
$response = od_get_rest_api_health_check_response( false );
198+
$this->assertEquals( $mocked_response, get_transient( $transient_key ) );
199+
$this->assertEquals( $mocked_response, $response );
200+
$this->assertSame( 1, $filter_observer->counter );
201+
202+
$response = od_get_rest_api_health_check_response( false );
203+
$this->assertEquals( $mocked_response, get_transient( $transient_key ) );
204+
$this->assertEquals( $mocked_response, $response );
205+
$this->assertSame( 2, $filter_observer->counter );
206+
207+
$response = od_get_rest_api_health_check_response( true );
208+
$this->assertEquals( $mocked_response, get_transient( $transient_key ) );
209+
$this->assertEquals( $mocked_response, $response );
210+
$this->assertSame( 2, $filter_observer->counter );
211+
212+
delete_transient( $transient_key );
213+
$response = od_get_rest_api_health_check_response( true );
214+
$this->assertEquals( $mocked_response, get_transient( $transient_key ) );
215+
$this->assertEquals( $mocked_response, $response );
216+
$this->assertSame( 3, $filter_observer->counter );
217+
}
218+
165219
/**
166220
* Data provider.
167221
*
@@ -305,26 +359,36 @@ public function test_od_maybe_run_rest_api_health( Closure $set_up, bool $expect
305359
$set_up();
306360
od_maybe_run_rest_api_health_check();
307361
$this->assertSame( $expected, (bool) has_action( 'admin_notices' ) );
362+
$admin_notices_output = get_echo( 'do_action', array( 'admin_notices' ) );
363+
if ( $expected ) {
364+
$this->assertStringContainsString( '<div class="notice notice-warning">', $admin_notices_output );
365+
} else {
366+
$this->assertStringNotContainsString( '<div class="notice notice-warning">', $admin_notices_output );
367+
}
308368
}
309369

310370
/**
311371
* Filters REST API response with mock.
312372
*
313373
* @param array<string, mixed>|WP_Error $mocked_response Mocked response.
374+
* @return object{ counter: int } Value which contains a counter for the number of times the filter applied.
314375
*/
315-
protected function filter_rest_api_response( $mocked_response ): void {
376+
protected function filter_rest_api_response( $mocked_response ): object {
377+
$observer = (object) array( 'counter' => 0 );
316378
remove_all_filters( 'pre_http_request' );
317379
add_filter(
318380
'pre_http_request',
319-
static function ( $pre, array $args, string $url ) use ( $mocked_response ) {
381+
static function ( $pre, array $args, string $url ) use ( $mocked_response, $observer ) {
320382
if ( rest_url( OD_REST_API_NAMESPACE . OD_URL_METRICS_ROUTE ) === $url ) {
383+
$observer->counter++;
321384
return $mocked_response;
322385
}
323386
return $pre;
324387
},
325388
10,
326389
3
327390
);
391+
return $observer;
328392
}
329393

330394
/**

0 commit comments

Comments
 (0)