| 7 user.test | UserPictureTestCase::testWithoutGDinvalidDimension() |
| 8 user.test | UserPictureTestCase::testWithoutGDinvalidDimension() |
Do the test: GD Toolkit is not installed Picture has invalid size
results: The image shouldn't be uploaded
File
- modules/
user/ user.test, line 969 - Tests for user.module.
Code
function testWithoutGDinvalidDimension() {
if ($this->_directory_test && !image_get_toolkit()) {
$this->drupalLogin($this->user);
$image = current($this->drupalGetTestFiles('image'));
$info = image_get_info($image->uri);
// Set new variables: invalid dimensions, valid filesize (0 = no limit).
$test_dim = ($info['width'] - 10) . 'x' . ($info['height'] - 10);
variable_set('user_picture_dimensions', $test_dim);
variable_set('user_picture_file_size', 0);
$pic_path = $this->saveUserPicture($image);
// Test that the upload failed and that the correct reason was cited.
$text = t('The specified file %filename could not be uploaded.', array('%filename' => $image->filename));
$this->assertRaw($text, t('Upload failed.'));
$text = t('The image is too large; the maximum dimensions are %dimensions pixels.', array('%dimensions' => $test_dim));
$this->assertRaw($text, t('Checking response on invalid image (dimensions).'));
// Check if file is not uploaded.
$this->assertFalse(is_file($pic_path), t('File was not uploaded.'));
}
}
Login or register to post comments