From 5bee64425818f27be5d07873764b92f968f9c916 Mon Sep 17 00:00:00 2001 From: Peter Wilson Date: Wed, 9 Jun 2021 23:50:14 +0000 Subject: [PATCH] Widgets: Improve unit tests for RSS Widget. Prevent unit tests from making HTTP requests to wordpress.org. Specify URLs as https rather than http. Follow up to [51107]. Props hellofromTonya. Fixes #53278. git-svn-id: https://develop.svn.wordpress.org/trunk@51136 602fd350-edb4-49c9-b593-d223f7449a82 --- tests/phpunit/tests/widgets/wpWidgetRss.php | 119 ++++++++++++++++++++ 1 file changed, 119 insertions(+) create mode 100644 tests/phpunit/tests/widgets/wpWidgetRss.php diff --git a/tests/phpunit/tests/widgets/wpWidgetRss.php b/tests/phpunit/tests/widgets/wpWidgetRss.php new file mode 100644 index 0000000000..65318423ff --- /dev/null +++ b/tests/phpunit/tests/widgets/wpWidgetRss.php @@ -0,0 +1,119 @@ + '

', + 'after_title' => "

\n", + 'before_widget' => '
', + 'after_widget' => "
\n", + ); + $instance = array( + 'title' => 'Foo', + 'url' => $url, + ); + + if ( is_null( $url ) ) { + unset( $instance['ur'] ); + } + + $this->expectOutputString( '' ); + + $widget->widget( $args, $instance ); + } + + public function data_url_unhappy_path() { + return array( + 'when unset' => array( + 'url' => null, + ), + 'when empty string' => array( + 'url' => '', + ), + 'when boolean false' => array( + 'url' => false, + ), + ); + } + + /** + * @ticket 53278 + * @covers WP_Widget_RSS::widget + * @dataProvider data_url_happy_path + * + * @param mixed $url URL argument. + * @param string $expected Expected output. + */ + public function test_url_happy_path( $url, $expected ) { + add_filter( 'pre_http_request', array( $this, 'mocked_rss_response' ) ); + + $widget = new WP_Widget_RSS(); + $args = array( + 'before_title' => '

', + 'after_title' => "

\n", + 'before_widget' => '
', + 'after_widget' => "
\n", + ); + $instance = array( + 'title' => 'Foo', + 'url' => $url, + ); + + if ( is_null( $url ) ) { + unset( $instance['ur'] ); + } + + ob_start(); + $widget->widget( $args, $instance ); + $actual = ob_get_clean(); + + $this->assertContains( $expected, $actual ); + } + + public function data_url_happy_path() { + return array( + 'when url is given' => array( + 'url' => 'https://wordpress.org/news/feed/', + '

', + ), + ); + } + + public function mocked_rss_response() { + $single_value_headers = array( + 'content-type' => 'application/rss+xml; charset=UTF-8', + 'link' => '; rel="https://api.w.org/"', + ); + + return array( + 'headers' => new Requests_Utility_CaseInsensitiveDictionary( $single_value_headers ), + 'body' => file_get_contents( DIR_TESTDATA . '/feed/wordpress-org-news.xml' ), + 'response' => array( + 'code' => 200, + 'message' => 'OK', + ), + 'cookies' => array(), + 'filename' => null, + ); + } +}