mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-03-31 10:44:26 +00:00
REST API: Decode HTML entities in widget names and descriptions in widget types controller.
Follow-up to [50995]. Props ramonopoly, noisysocks, spacedmonkey, justinahinon, audrasjb, SergeyBiryukov. Fixes #53407. git-svn-id: https://develop.svn.wordpress.org/trunk@51174 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
@@ -198,6 +198,27 @@ class WP_Test_REST_Widget_Types_Controller extends WP_Test_REST_Controller_Testc
|
||||
$this->assertErrorResponse( 'rest_widget_type_invalid', $response, 404 );
|
||||
}
|
||||
|
||||
/**
|
||||
* @ticket 53407
|
||||
*/
|
||||
public function test_get_widgets_decodes_html_entities() {
|
||||
wp_set_current_user( self::$admin_id );
|
||||
$widget_id = 'archives';
|
||||
wp_register_sidebar_widget(
|
||||
$widget_id,
|
||||
'Legacy ‑ Archive ‑ Widget',
|
||||
function() {},
|
||||
array(
|
||||
'description' => 'A great & interesting archive of your site’s posts!',
|
||||
)
|
||||
);
|
||||
$request = new WP_REST_Request( 'GET', '/wp/v2/widget-types/archives' );
|
||||
$response = rest_get_server()->dispatch( $request );
|
||||
$data = $response->get_data();
|
||||
$this->assertSame( 'Legacy ‑ Archive ‑ Widget', $data['name'] );
|
||||
$this->assertSame( 'A great & interesting archive of your site’s posts!', $data['description'] );
|
||||
}
|
||||
|
||||
/**
|
||||
* @ticket 41683
|
||||
*/
|
||||
@@ -492,7 +513,6 @@ class WP_Test_REST_Widget_Types_Controller extends WP_Test_REST_Controller_Testc
|
||||
$wp_widget_factory->widgets['WP_Widget_Search']->widget_options['show_instance_in_rest'] = true;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* The test_create_item() method does not exist for widget types.
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user