Skip to content

Commit ea88e1f

Browse files
Tests: Use better domain for HTTP API invalid hostname test.
The previous domain that was used to test for a host whose IPv4 address cannot be resolved, `exampleeeee.com`, got registered and has an A-record now, so it's not invalid anymore. `.invalid` is intended for use in online construction of domain names that are sure to be invalid and which it is obvious at a glance are invalid. Reference: [https://datatracker.ietf.org/doc/html/rfc2606#section-2 Reserved Top Level DNS Names: TLDs for Testing, & Documentation Examples]. Follow-up to [52084], [58384], [58388]. Props sippis, johnbillion, MattyRob, swissspidy. Fixes #62303. git-svn-id: https://develop.svn.wordpress.org/trunk@59293 602fd350-edb4-49c9-b593-d223f7449a82
1 parent a4d6fb7 commit ea88e1f

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/wp-includes/http.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -535,7 +535,7 @@ function send_origin_headers() {
535535
* - ftp://example.com/caniload.php - Invalid protocol - only http and https are allowed.
536536
* - http:///example.com/caniload.php - Malformed URL.
537537
* - http://user:pass@example.com/caniload.php - Login information.
538-
* - http://exampleeeee.com/caniload.php - Invalid hostname, as the IP cannot be looked up in DNS.
538+
* - http://example.invalid/caniload.php - Invalid hostname, as the IP cannot be looked up in DNS.
539539
*
540540
* Examples of URLs that are considered unsafe by default:
541541
*

tests/phpunit/tests/http/http.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -549,7 +549,7 @@ public function data_wp_http_validate_url_should_not_validate() {
549549
'url' => 'http://[exam]ple.com/caniload.php',
550550
),
551551
'a host whose IPv4 address cannot be resolved' => array(
552-
'url' => 'http://exampleeeee.com/caniload.php',
552+
'url' => 'http://example.invalid/caniload.php',
553553
),
554554
'an external request when not allowed' => array(
555555
'url' => 'http://192.168.0.1/caniload.php',

0 commit comments

Comments
 (0)