mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2025-10-16 12:05:38 +00:00
Props westonruter, obenland, timmydcrawford for testing. Amends [41050]. See #35243, #40951, #40907. Fixes #41394. git-svn-id: https://develop.svn.wordpress.org/trunk@41132 602fd350-edb4-49c9-b593-d223f7449a82
200 lines
6.6 KiB
PHP
200 lines
6.6 KiB
PHP
<?php
|
|
/**
|
|
* Unit tests covering WP_Widget_Custom_HTML functionality.
|
|
*
|
|
* @package WordPress
|
|
* @subpackage widgets
|
|
*/
|
|
|
|
/**
|
|
* Test wp-includes/widgets/class-wp-widget-custom-html.php
|
|
*
|
|
* @group widgets
|
|
*/
|
|
class Test_WP_Widget_Custom_HTML extends WP_UnitTestCase {
|
|
|
|
/**
|
|
* Args passed to the widget_custom_html_content filter.
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $widget_custom_html_content_args;
|
|
|
|
/**
|
|
* Args passed to the widget_text filter.
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $widget_text_args;
|
|
|
|
/**
|
|
* Test constructor.
|
|
*
|
|
* @covers WP_Widget_Custom_HTML::__constructor
|
|
*/
|
|
function test_constructor() {
|
|
$widget = new WP_Widget_Custom_HTML();
|
|
$this->assertEquals( 'custom_html', $widget->id_base );
|
|
$this->assertEquals( 'widget_custom_html', $widget->widget_options['classname'] );
|
|
$this->assertTrue( $widget->widget_options['customize_selective_refresh'] );
|
|
}
|
|
|
|
/**
|
|
* Test widget method.
|
|
*
|
|
* @covers WP_Widget_Custom_HTML::widget
|
|
*/
|
|
function test_widget() {
|
|
$widget = new WP_Widget_Custom_HTML();
|
|
$content = "<i>Custom HTML</i>\n\n<b>CODE</b>\nLast line.<u>unclosed";
|
|
|
|
$args = array(
|
|
'before_title' => '<h2>',
|
|
'after_title' => "</h2>\n",
|
|
'before_widget' => '<section id="custom_html-5" class="widget widget_custom_html">',
|
|
'after_widget' => "</section>\n",
|
|
);
|
|
$instance = array(
|
|
'title' => 'Foo',
|
|
'content' => $content,
|
|
);
|
|
|
|
// Convert Custom HTML widget instance into Text widget instance data.
|
|
$text_widget_instance = array_merge( $instance, array(
|
|
'text' => $instance['content'],
|
|
'filter' => false,
|
|
'visual' => false,
|
|
) );
|
|
unset( $text_widget_instance['content'] );
|
|
|
|
update_option( 'use_balanceTags', 0 );
|
|
add_filter( 'widget_custom_html_content', array( $this, 'filter_widget_custom_html_content' ), 5, 3 );
|
|
add_filter( 'widget_text', array( $this, 'filter_widget_text' ), 10, 3 );
|
|
ob_start();
|
|
$this->widget_custom_html_content_args = null;
|
|
$this->widget_text_args = null;
|
|
$widget->widget( $args, $instance );
|
|
$output = ob_get_clean();
|
|
$this->assertNotEmpty( $this->widget_custom_html_content_args );
|
|
$this->assertNotEmpty( $this->widget_text_args );
|
|
$this->assertContains( '[filter:widget_text][filter:widget_custom_html_content]', $output );
|
|
$this->assertContains( '<section id="custom_html-5" class="widget_text widget widget_custom_html">', $output );
|
|
$this->assertContains( '<div class="textwidget custom-html-widget">', $output );
|
|
$this->assertNotContains( '<p>', $output );
|
|
$this->assertNotContains( '<br>', $output );
|
|
$this->assertNotContains( '</u>', $output );
|
|
$this->assertEquals( $text_widget_instance, $this->widget_text_args[1] );
|
|
$this->assertEquals( $instance, $this->widget_custom_html_content_args[1] );
|
|
$this->assertSame( $widget, $this->widget_text_args[2] );
|
|
$this->assertSame( $widget, $this->widget_custom_html_content_args[2] );
|
|
remove_filter( 'widget_custom_html_content', array( $this, 'filter_widget_custom_html_content' ), 5 );
|
|
remove_filter( 'widget_text', array( $this, 'filter_widget_text' ), 10 );
|
|
|
|
update_option( 'use_balanceTags', 1 );
|
|
ob_start();
|
|
$widget->widget( $args, $instance );
|
|
$output = ob_get_clean();
|
|
$this->assertContains( '</u>', $output );
|
|
}
|
|
|
|
/**
|
|
* Filters the content of the Custom HTML widget using the legacy widget_text filter.
|
|
*
|
|
* @param string $text The widget content.
|
|
* @param array $instance Array of settings for the current widget.
|
|
* @param WP_Widget_Custom_HTML $widget Current widget instance.
|
|
* @return string Widget content.
|
|
*/
|
|
function filter_widget_text( $text, $instance, $widget ) {
|
|
$this->widget_text_args = array( $text, $instance, $widget );
|
|
$text .= '[filter:widget_text]';
|
|
return $text;
|
|
}
|
|
|
|
/**
|
|
* Filters the content of the Custom HTML widget using the dedicated widget_custom_html_content filter.
|
|
*
|
|
* @param string $widget_content The widget content.
|
|
* @param array $instance Array of settings for the current widget.
|
|
* @param WP_Widget_Custom_HTML $widget Current Custom HTML widget instance.
|
|
* @return string Widget content.
|
|
*/
|
|
function filter_widget_custom_html_content( $widget_content, $instance, $widget ) {
|
|
$this->widget_custom_html_content_args = array( $widget_content, $instance, $widget );
|
|
$widget_content .= '[filter:widget_custom_html_content]';
|
|
return $widget_content;
|
|
}
|
|
|
|
/**
|
|
* Test update method.
|
|
*
|
|
* @covers WP_Widget_Custom_HTML::update
|
|
*/
|
|
function test_update() {
|
|
$widget = new WP_Widget_Custom_HTML();
|
|
$instance = array(
|
|
'title' => "The\n<b>Title</b>",
|
|
'content' => "The\n\n<b>Code</b>",
|
|
);
|
|
|
|
wp_set_current_user( $this->factory()->user->create( array(
|
|
'role' => 'administrator',
|
|
) ) );
|
|
|
|
// Should return valid instance.
|
|
$expected = array(
|
|
'title' => sanitize_text_field( $instance['title'] ),
|
|
'content' => $instance['content'],
|
|
);
|
|
$result = $widget->update( $instance, array() );
|
|
$this->assertEquals( $result, $expected );
|
|
|
|
// Make sure KSES is applying as expected.
|
|
add_filter( 'map_meta_cap', array( $this, 'grant_unfiltered_html_cap' ), 10, 2 );
|
|
$this->assertTrue( current_user_can( 'unfiltered_html' ) );
|
|
$instance['content'] = '<script>alert( "Howdy!" );</script>';
|
|
$expected['content'] = $instance['content'];
|
|
$result = $widget->update( $instance, array() );
|
|
$this->assertEquals( $result, $expected );
|
|
remove_filter( 'map_meta_cap', array( $this, 'grant_unfiltered_html_cap' ) );
|
|
|
|
add_filter( 'map_meta_cap', array( $this, 'revoke_unfiltered_html_cap' ), 10, 2 );
|
|
$this->assertFalse( current_user_can( 'unfiltered_html' ) );
|
|
$instance['content'] = '<script>alert( "Howdy!" );</script>';
|
|
$expected['content'] = wp_kses_post( $instance['content'] );
|
|
$result = $widget->update( $instance, array() );
|
|
$this->assertEquals( $result, $expected );
|
|
remove_filter( 'map_meta_cap', array( $this, 'revoke_unfiltered_html_cap' ), 10 );
|
|
}
|
|
|
|
/**
|
|
* Grant unfiltered_html cap via map_meta_cap.
|
|
*
|
|
* @param array $caps Returns the user's actual capabilities.
|
|
* @param string $cap Capability name.
|
|
* @return array Caps.
|
|
*/
|
|
function grant_unfiltered_html_cap( $caps, $cap ) {
|
|
if ( 'unfiltered_html' === $cap ) {
|
|
$caps = array_diff( $caps, array( 'do_not_allow' ) );
|
|
$caps[] = 'unfiltered_html';
|
|
}
|
|
return $caps;
|
|
}
|
|
|
|
/**
|
|
* Revoke unfiltered_html cap via map_meta_cap.
|
|
*
|
|
* @param array $caps Returns the user's actual capabilities.
|
|
* @param string $cap Capability name.
|
|
* @return array Caps.
|
|
*/
|
|
function revoke_unfiltered_html_cap( $caps, $cap ) {
|
|
if ( 'unfiltered_html' === $cap ) {
|
|
$caps = array_diff( $caps, array( 'unfiltered_html' ) );
|
|
$caps[] = 'do_not_allow';
|
|
}
|
|
return $caps;
|
|
}
|
|
}
|