Make WordPress Core


Ignore:
Timestamp:
04/01/2024 01:55:59 PM (2 years ago)
Author:
SergeyBiryukov
Message:

Tests: Update expectations in wp_remote_head() and wp_remote_get() tests.

It appears that something has changed on the WP.com side to compress the requested images on the fly, which interfered with the previous expectations in these tests.

This commit uses a direct file URL and updates the expected image size to match the currently returned response.

Follow-up to [139/tests], [31258], [47142].

Props dextorlobo, swissspidy, davidbaumwald, SergeyBiryukov.
See #60865.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tests/phpunit/tests/functions/wpRemoteFopen.php

    r56971 r57903  
    2828    public function test_wp_remote_fopen() {
    2929        // This URL gives a direct 200 response.
    30         $url      = 'https://asdftestblog1.files.wordpress.com/2007/09/2007-06-30-dsc_4700-1.jpg';
     30        $url      = 'https://asdftestblog1.wordpress.com/wp-content/uploads/2007/09/2007-06-30-dsc_4700-1.jpg';
    3131        $response = wp_remote_fopen( $url );
    3232
    3333        $this->assertIsString( $response );
    34         $this->assertSame( 40148, strlen( $response ) );
     34        $this->assertSame( 31325, strlen( $response ) );
    3535    }
    3636}
Note: See TracChangeset for help on using the changeset viewer.