Make WordPress Core


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

Props peterwilsoncc, jorbin.
See #60865.

Location:
branches/5.8
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/5.8

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

    r50814 r57993  
    395395    public function test_wp_crop_image_url() {
    396396        $file = wp_crop_image(
    397             'https://asdftestblog1.files.wordpress.com/2008/04/canola.jpg',
     397            'https://s.w.org/screenshots/3.9/dashboard.png',
    398398            0,
    399399            0,
     
    403403            100,
    404404            false,
    405             DIR_TESTDATA . '/images/' . __FUNCTION__ . '.jpg'
     405            DIR_TESTDATA . '/images/' . __FUNCTION__ . '.png'
    406406        );
    407407
     
    438438    public function test_wp_crop_image_url_not_exist() {
    439439        $file = wp_crop_image(
    440             'https://asdftestblog1.files.wordpress.com/2008/04/canoladoesnotexist.jpg',
     440            'https://wordpress.org/screenshots/3.9/canoladoesnotexist.jpg',
    441441            0,
    442442            0,
Note: See TracChangeset for help on using the changeset viewer.