Changeset 58682 for trunk/tests/phpunit/tests/http/http.php
- Timestamp:
- 07/06/2024 02:52:05 PM (2 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/http/http.php
r57987 r58682 115 115 ), 116 116 117 // < PHP 5.4.7:Schemeless URL.117 // Schemeless URL. 118 118 array( 119 119 '//example.com/path/', … … 139 139 ), 140 140 141 // < PHP 5.4.7:Scheme separator in the URL.141 // Scheme separator in the URL. 142 142 array( 143 143 'http://example.com/http://example.net/', … … 150 150 array( '/path/http://example.net/', array( 'path' => '/path/http://example.net/' ) ), 151 151 152 // < PHP 5.4.7: IPv6 literals in schemeless URLs are handled incorrectly.152 // IPv6 literals in schemeless URLs. 153 153 array( 154 154 '//[::FFFF::127.0.0.1]/', … … 239 239 array( self::FULL_TEST_URL, PHP_URL_FRAGMENT, 'anchor' ), 240 240 241 // < PHP 5.4.7:Schemeless URL.241 // Schemeless URL. 242 242 array( '//example.com/path/', PHP_URL_HOST, 'example.com' ), 243 243 array( '//example.com/path/', PHP_URL_PATH, '/path/' ), … … 247 247 array( 'http://example.com//path/', PHP_URL_PATH, '//path/' ), 248 248 249 // < PHP 5.4.7:Scheme separator in the URL.249 // Scheme separator in the URL. 250 250 array( 'http://example.com/http://example.net/', PHP_URL_HOST, 'example.com' ), 251 251 array( 'http://example.com/http://example.net/', PHP_URL_PATH, '/http://example.net/' ), … … 253 253 array( '/path/http://example.net/', PHP_URL_PATH, '/path/http://example.net/' ), 254 254 255 // < PHP 5.4.7: IPv6 literals in schemeless URLs are handled incorrectly.255 // IPv6 literals in schemeless URLs. 256 256 array( '//[::FFFF::127.0.0.1]/', PHP_URL_HOST, '[::FFFF::127.0.0.1]' ), 257 257 array( '//[::FFFF::127.0.0.1]/', PHP_URL_PATH, '/' ),
Note: See TracChangeset
for help on using the changeset viewer.