From 046d86f95b604f28c0cd20afcb0f9b6d9c1b74e8 Mon Sep 17 00:00:00 2001 From: Tonya Mork Date: Thu, 11 Nov 2021 16:52:22 +0000 Subject: [PATCH] Build/Test Tools: Mock remote request for `WP_REST_Block_Directory_Controller::get_items()`. Instead of hitting the live API, this commit mocks the remote request. Follow-up to [48242]. Props hellofromTonya, noisysocks, sergeybiryukov, TimothyBlynJacobs. Fixes #54420. git-svn-id: https://develop.svn.wordpress.org/trunk@52137 602fd350-edb4-49c9-b593-d223f7449a82 --- .../rest-block-directory-controller.php | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/tests/phpunit/tests/rest-api/rest-block-directory-controller.php b/tests/phpunit/tests/rest-api/rest-block-directory-controller.php index ef70ecb319..544a2a411b 100644 --- a/tests/phpunit/tests/rest-api/rest-block-directory-controller.php +++ b/tests/phpunit/tests/rest-api/rest-block-directory-controller.php @@ -69,6 +69,25 @@ class WP_REST_Block_Directory_Controller_Test extends WP_Test_REST_Controller_Te */ public function test_get_items() { wp_set_current_user( self::$admin_id ); + add_filter( + 'pre_http_request', + static function() { + /* + * Mocks the request to: + * https://api.wordpress.org/plugins/info/1.2/?action=query_plugins&request%5Bblock%5D=foo&request%5Bper_page%5D=10&request%5Bpage%5D=1&request%5Blocale%5D=en_US&request%5Bwp_version%5D=5.9 + */ + return array( + 'headers' => array(), + 'response' => array( + 'code' => 200, + 'message' => 'OK', + ), + 'body' => '{"info":{"page":1,"pages":0,"results":0},"plugins":[]}', + 'cookies' => array(), + 'filename' => null, + ); + } + ); $request = new WP_REST_Request( 'GET', '/wp/v2/block-directory/search' ); $request->set_query_params( array( 'term' => 'foo' ) );