function ImageStylesPathAndUrlTest::testImageStyleUrlForMissingSourceImage

Tests that an invalid source image returns a 404.

File

drupal/core/modules/image/lib/Drupal/image/Tests/ImageStylesPathAndUrlTest.php, line 97
Definition of Drupal\image\Tests\ImageStylesPathAndUrlTest.

Class

ImageStylesPathAndUrlTest
Tests the functions for generating paths and URLs for image styles.

Namespace

Drupal\image\Tests

Code

function testImageStyleUrlForMissingSourceImage() {
  $non_existent_uri = 'public://foo.png';
  $generated_url = image_style_url($this->style_name, $non_existent_uri);
  $this
    ->drupalGet($generated_url);
  $this
    ->assertResponse(404, 'Accessing an image style URL with a source image that does not exist provides a 404 error response.');
}