Build/Test Tools: Mock remote request for unknown plugin in WP_REST_Plugins_Controller::create_item().

Instead of hitting the live API, this commit mocks the remote request when testing creating an item that's an unknown plugin.

Follow-up to [48242].

Props hellofromTonya, noisysocks, sergeybiryukov, TimothyBlynJacobs.
See #54420.

git-svn-id: https://develop.svn.wordpress.org/trunk@52138 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Tonya Mork 2021-11-11 16:58:27 +00:00
parent 046d86f95b
commit 206ee73bdd

View File

@ -546,8 +546,26 @@ class WP_REST_Plugins_Controller_Test extends WP_Test_REST_Controller_Testcase {
*/
public function test_create_item_unknown_plugin() {
wp_set_current_user( self::$super_admin );
add_filter(
'pre_http_request',
static function() {
/*
* Mocks the request to:
* https://api.wordpress.org/plugins/info/1.2/?action=plugin_information&request%5Bslug%5D=alex-says-this-block-definitely-doesnt-exist&request%5Bfields%5D%5Bsections%5D=0&request%5Bfields%5D%5Blanguage_packs%5D=1&request%5Blocale%5D=en_US&request%5Bwp_version%5D=5.9
*/
return array(
'headers' => array(),
'response' => array(
'code' => 404,
'message' => 'Not Found',
),
'body' => '{"error":"Plugin not found."}',
'cookies' => array(),
'filename' => null,
);
}
);
// This will hit the live API.
$request = new WP_REST_Request( 'POST', self::BASE );
$request->set_body_params( array( 'slug' => 'alex-says-this-block-definitely-doesnt-exist' ) );
$response = rest_do_request( $request );