Make WordPress Core

Ticket #37090: 37090.unit-tests.diff

File 37090.unit-tests.diff, 2.9 KB (added by jipmoors, 8 years ago)

Unit tests instead of acceptance tests

  • new file tests/phpunit/tests/http/get_http_headers.php

    diff --git tests/phpunit/tests/http/get_http_headers.php tests/phpunit/tests/http/get_http_headers.php
    new file mode 100644
    index 0000000..6cbfcac
    - +  
     1<?php
     2
     3/**
     4 * @group http
     5 */
     6class Tests_Get_HTTP_Headers extends WP_UnitTestCase {
     7
     8        /**
     9         * Set up the environment
     10         */
     11        public function setUp() {
     12                parent::setUp();
     13
     14                // Hook a fake HTTP request response.
     15                add_filter( 'pre_http_request', array( $this, 'fake_http_request' ), 10, 3 );
     16        }
     17
     18        /**
     19         * Clean up environment
     20         */
     21        public function tearDown() {
     22                parent::tearDown();
     23
     24                // Clear the hook for the fake HTTP request response.
     25                remove_filter( 'pre_http_request', array( $this, 'fake_http_request' ) );
     26        }
     27
     28        /**
     29         * Test with a valid URL
     30         */
     31        public function test_wp_get_http_headers_valid_url() {
     32                $result = wp_get_http_headers( 'http://example.com' );
     33                $this->assertTrue( $result );
     34        }
     35
     36        /**
     37         * Test with an invalid URL
     38         */
     39        public function test_wp_get_http_headers_invalid_url() {
     40                $result = wp_get_http_headers( 'not_an_url' );
     41                $this->assertFalse( $result );
     42        }
     43
     44        /**
     45         * Test to see if the deprecated argument is working
     46         */
     47        public function test_wp_get_http_headers_deprecated_argument() {
     48                $this->setExpectedDeprecated( 'wp_get_http_headers' );
     49
     50                wp_get_http_headers( 'does_not_matter', $deprecated = true );
     51        }
     52
     53        /**
     54         * Mock the HTTP request response
     55         *
     56         * @param bool   $false     False.
     57         * @param array  $arguments Request arguments.
     58         * @param string $url       Request URL.
     59         *
     60         * @return array|bool
     61         */
     62        public function fake_http_request( $false, $arguments, $url ) {
     63                if ( 'http://example.com' === $url ) {
     64                        return array( 'headers' => true );
     65                }
     66
     67                return false;
     68        }
     69}
  • new file tests/phpunit/tests/http/remote_retrieve_headers.php

    diff --git tests/phpunit/tests/http/remote_retrieve_headers.php tests/phpunit/tests/http/remote_retrieve_headers.php
    new file mode 100644
    index 0000000..e556df8
    - +  
     1<?php
     2
     3/**
     4 * @group http
     5 */
     6class Tests_Remote_Retrieve_Headers extends WP_UnitTestCase {
     7
     8        /**
     9         * Valid response
     10         */
     11        function test_remote_retrieve_headers_valid_response() {
     12                $headers = 'headers_data';
     13                $response = array( 'headers' => $headers );
     14
     15                $result = wp_remote_retrieve_headers( $response );
     16                $this->assertEquals( $headers, $result );
     17        }
     18
     19        /**
     20         * Response is a WP_Error
     21         */
     22        function test_remote_retrieve_headers_is_error() {
     23                $response = new WP_Error( 'Some error' );
     24
     25                $result = wp_remote_retrieve_headers( $response );
     26                $this->assertEquals( array(), $result );
     27        }
     28
     29        /**
     30         * Response does not contain 'headers'
     31         */
     32        function test_remote_retrieve_headers_invalid_response() {
     33                $response = array( 'no_headers' => 'set');
     34
     35                $result = wp_remote_retrieve_headers( $response );
     36                $this->assertEquals( array(), $result );
     37        }
     38}