Make WordPress Core


Ignore:
Timestamp:
04/15/2024 12:30:10 PM (8 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 5.4 branch.

Props peterwilsoncc, jorbin.
See #60865.

Location:
branches/5.4
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/5.4

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

    r48366 r57997  
    336336
    337337        $file = wp_crop_image(
    338             'https://asdftestblog1.files.wordpress.com/2008/04/canola.jpg',
     338            'https://s.w.org/screenshots/3.9/dashboard.png',
    339339            0,
    340340            0,
     
    344344            100,
    345345            false,
    346             DIR_TESTDATA . '/images/' . __FUNCTION__ . '.jpg'
     346            DIR_TESTDATA . '/images/' . __FUNCTION__ . '.png'
    347347        );
    348348        $this->assertNotWPError( $file );
     
    375375
    376376        $file = wp_crop_image(
    377             'https://asdftestblog1.files.wordpress.com/2008/04/canoladoesnotexist.jpg',
     377            'https://wordpress.org/screenshots/3.9/canoladoesnotexist.jpg',
    378378            0,
    379379            0,
Note: See TracChangeset for help on using the changeset viewer.