Make WordPress Core


Ignore:
Timestamp:
04/16/2024 11:58:04 PM (11 months ago)
Author:
SergeyBiryukov
Message:

Tests: Use an image on WordPress.org CDN in external HTTP tests.

Due to some changes on the WP.com side to compress the requested images on the fly, the exact image size in the response could be different between platforms.

This commit aims to make the affected tests more reliable.

Follow-up to [139/tests], [31258], [34568], [47142], [57903], [57904], [57924].

Merges [57931] to the 4.1 branch.

Props peterwilsoncc, jorbin.
See #60865.

Location:
branches/4.1
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/4.1

  • branches/4.1/tests/phpunit/tests/image/functions.php

    r40287 r58016  
    297297        }
    298298
    299         $file = wp_crop_image( 'https://asdftestblog1.files.wordpress.com/2008/04/canola.jpg',
     299        $file = wp_crop_image( 'https://s.w.org/screenshots/3.9/dashboard.png',
    300300                              0, 0, 100, 100, 100, 100, false,
    301                               DIR_TESTDATA . '/images/' . rand_str() . '.jpg' );
     301                              DIR_TESTDATA . '/images/' . rand_str() . '.png' );
    302302        $this->assertNotInstanceOf( 'WP_Error', $file );
    303303        $this->assertFileExists( $file );
     
    321321        }
    322322
    323         $file = wp_crop_image( 'https://asdftestblog1.files.wordpress.com/2008/04/canoladoesnotexist.jpg',
     323        $file = wp_crop_image( 'https://wordpress.org/screenshots/3.9/canoladoesnotexist.jpg',
    324324                              0, 0, 100, 100, 100, 100 );
    325325        $this->assertInstanceOf( 'WP_Error', $file );
Note: See TracChangeset for help on using the changeset viewer.