1 image.test | public ImageStylesPathAndUrlUnitTest::testImageStyleUrlForMissingSourceImage() |
Test that an invalid source image returns a 404.
File
- core/
modules/ image/ tests/ image.test, line 189 - Tests for image.module.
Class
- ImageStylesPathAndUrlUnitTest
- Tests the functions for generating paths and URLs for image styles.
Code
public function testImageStyleUrlForMissingSourceImage() {
$non_existent_uri = 'public://foo.png';
$generated_url = image_style_url($this->style_name, $non_existent_uri);
$this->backdropGet($generated_url);
$this->assertResponse(404, 'Accessing an image style URL with a source image that does not exist provides a 404 error response.');
}