@@ -162,6 +162,60 @@ public function test_rest_api_availability( $mocked_response, string $expected_o
162
162
$ this ->assertSame ( $ expected_unavailable , od_is_rest_api_unavailable () );
163
163
}
164
164
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
+
165
219
/**
166
220
* Data provider.
167
221
*
@@ -305,26 +359,36 @@ public function test_od_maybe_run_rest_api_health( Closure $set_up, bool $expect
305
359
$ set_up ();
306
360
od_maybe_run_rest_api_health_check ();
307
361
$ 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
+ }
308
368
}
309
369
310
370
/**
311
371
* Filters REST API response with mock.
312
372
*
313
373
* @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.
314
375
*/
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 );
316
378
remove_all_filters ( 'pre_http_request ' );
317
379
add_filter (
318
380
'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 ) {
320
382
if ( rest_url ( OD_REST_API_NAMESPACE . OD_URL_METRICS_ROUTE ) === $ url ) {
383
+ $ observer ->counter ++;
321
384
return $ mocked_response ;
322
385
}
323
386
return $ pre ;
324
387
},
325
388
10 ,
326
389
3
327
390
);
391
+ return $ observer ;
328
392
}
329
393
330
394
/**
0 commit comments