Make WordPress Core


Ignore:
Timestamp:
09/30/2016 09:46:43 PM (8 years ago)
Author:
johnbillion
Message:

HTTP API: Add a $component parameter to wp_parse_url() to give it parity with PHP's parse_url() function.

Fixes #36356
Props jrf

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tests/phpunit/tests/http/http.php

    r38456 r38694  
    77class Tests_HTTP_HTTP extends WP_UnitTestCase {
    88
     9    const FULL_TEST_URL = 'http://username:password@host.name:9090/path?arg1=value1&arg2=value2#anchor';
     10
    911    /**
    1012     * @dataProvider make_absolute_url_testcases
     
    7981        // 0: The URL, 1: The expected resulting structure
    8082        return array(
     83            array( self::FULL_TEST_URL, array(
     84                'scheme'   => 'http',
     85                'host'     => 'host.name',
     86                'port'     => 9090,
     87                'user'     => 'username',
     88                'pass'     => 'password',
     89                'path'     => '/path',
     90                'query'    => 'arg1=value1&arg2=value2',
     91                'fragment' => 'anchor',
     92            ) ),
    8193            array( 'http://example.com/', array( 'scheme' => 'http', 'host' => 'example.com', 'path' => '/' ) ),
    8294
     
    8698            array( 'http://example.com//path/', array( 'scheme' => 'http', 'host' => 'example.com', 'path' => '//path/' ) ),
    8799
    88             // < PHP 5.4.7: Scheme seperator in the URL
     100            // < PHP 5.4.7: Scheme separator in the URL.
    89101            array( 'http://example.com/http://example.net/', array( 'scheme' => 'http', 'host' => 'example.com', 'path' => '/http://example.net/' ) ),
    90102            array( '/path/http://example.net/', array( 'path' => '/path/http://example.net/' ) ),
     
    102114          - ://example.com - assumed path in PHP >= 5.4.7, fails in <5.4.7
    103115        */
     116    }
     117
     118    /**
     119     * @ticket 36356
     120     */
     121    function test_wp_parse_url_with_default_component() {
     122        $actual = wp_parse_url( self::FULL_TEST_URL, -1 );
     123        $this->assertEquals( array(
     124            'scheme'   => 'http',
     125            'host'     => 'host.name',
     126            'port'     => 9090,
     127            'user'     => 'username',
     128            'pass'     => 'password',
     129            'path'     => '/path',
     130            'query'    => 'arg1=value1&arg2=value2',
     131            'fragment' => 'anchor',
     132        ), $actual );
     133    }
     134
     135    /**
     136     * @ticket 36356
     137     *
     138     * @dataProvider parse_url_component_testcases
     139     */
     140    function test_wp_parse_url_with_component( $url, $component, $expected ) {
     141        $actual = wp_parse_url( $url, $component );
     142        $this->assertSame( $expected, $actual );
     143    }
     144
     145    function parse_url_component_testcases() {
     146        // 0: The URL, 1: The requested component, 2: The expected resulting structure.
     147        return array(
     148            array( self::FULL_TEST_URL, PHP_URL_SCHEME, 'http' ),
     149            array( self::FULL_TEST_URL, PHP_URL_USER, 'username' ),
     150            array( self::FULL_TEST_URL, PHP_URL_PASS, 'password' ),
     151            array( self::FULL_TEST_URL, PHP_URL_HOST, 'host.name' ),
     152            array( self::FULL_TEST_URL, PHP_URL_PORT, 9090 ),
     153            array( self::FULL_TEST_URL, PHP_URL_PATH, '/path' ),
     154            array( self::FULL_TEST_URL, PHP_URL_QUERY, 'arg1=value1&arg2=value2' ),
     155            array( self::FULL_TEST_URL, PHP_URL_FRAGMENT, 'anchor' ),
     156
     157            // < PHP 5.4.7: Schemeless URL.
     158            array( '//example.com/path/', PHP_URL_HOST, 'example.com' ),
     159            array( '//example.com/path/', PHP_URL_PATH, '/path/' ),
     160            array( '//example.com/', PHP_URL_HOST, 'example.com' ),
     161            array( '//example.com/', PHP_URL_PATH, '/' ),
     162            array( 'http://example.com//path/', PHP_URL_HOST, 'example.com' ),
     163            array( 'http://example.com//path/', PHP_URL_PATH, '//path/' ),
     164
     165            // < PHP 5.4.7: Scheme separator in the URL.
     166            array( 'http://example.com/http://example.net/', PHP_URL_HOST, 'example.com' ),
     167            array( 'http://example.com/http://example.net/', PHP_URL_PATH, '/http://example.net/' ),
     168            array( '/path/http://example.net/', PHP_URL_HOST, null ),
     169            array( '/path/http://example.net/', PHP_URL_PATH, '/path/http://example.net/' ),
     170
     171            // < PHP 5.4.7: IPv6 literals in schemeless URLs are handled incorrectly.
     172            array( '//[::FFFF::127.0.0.1]/', PHP_URL_HOST, '[::FFFF::127.0.0.1]' ),
     173            array( '//[::FFFF::127.0.0.1]/', PHP_URL_PATH, '/' ),
     174
     175            // PHP's parse_url() calls this an invalid URL, we handle it as a path.
     176            array( '/://example.com/', PHP_URL_PATH, '/://example.com/' ),
     177
     178        );
    104179    }
    105180
Note: See TracChangeset for help on using the changeset viewer.