t('Image styles path and URL functions'), 'description' => t('Tests functions for generating paths and URLs to image styles.'), 'group' => t('Image') ); } function setUp() { parent::setUp(); $this->style_name = 'style_foo'; // Create the directories for the styles. $status = file_check_directory($d = file_directory_path() .'/styles/' . $this->style_name, FILE_CREATE_DIRECTORY); $this->assertNotIdentical(FALSE, $status, t('Created the directory for the generated images for the test style.' )); // Make two copies of the file... $file = reset($this->drupalGetTestFiles('image')); $this->image_without_generated = file_unmanaged_copy($file->filepath, NULL, FILE_EXISTS_RENAME); $this->assertNotIdentical(FALSE, $this->image_without_generated, t('Created the without generated image file.')); $this->image_with_generated = file_unmanaged_copy($file->filepath, NULL, FILE_EXISTS_RENAME); $this->assertNotIdentical(FALSE, $this->image_with_generated, t('Created the with generated image file.')); // and create a "generated" file for the one. $status = file_unmanaged_copy($file->filepath, image_style_path($this->style_name, $this->image_with_generated), FILE_EXISTS_REPLACE); $this->assertNotIdentical(FALSE, $status, t('Created a file where the generated image should be.')); } /** * Test image_style_path(). */ function testImageStylePath() { $actual = image_style_path($this->style_name, $this->image_without_generated); $expected = file_directory_path() . '/styles/' . $this->style_name . '/' . basename($this->image_without_generated); $this->assertEqual($actual, $expected, t('Got the path for a file.')); } /** * Test image_style_url(). */ function testImageStyleUrl() { // Test it with no generated file. $actual = image_style_url($this->style_name, $this->image_without_generated); $expected = url('image/generate/' . $this->style_name . '/' . $this->image_without_generated, array('absolute' => TRUE)); $this->assertEqual($actual, $expected, t('Got the generate URL for a non-existent file.')); // Now test it with a generated file. $actual = image_style_url($this->style_name, $this->image_with_generated); $expected = file_create_url(image_style_path($this->style_name, $this->image_with_generated)); $this->assertEqual($actual, $expected, t('Got the download URL for an existing file.')); } /** * Test image_style_generate_url(). */ function testImageStyleGenerateUrl() { // Test it with no generated file. $actual = image_style_generate_url($this->style_name, $this->image_without_generated); $expected = url('image/generate/' . $this->style_name . '/' . $this->image_without_generated, array('absolute' => TRUE)); $this->assertEqual($actual, $expected, t('Got the generate URL for a non-existent file.')); // Now test it with a generated file. $actual = image_style_generate_url($this->style_name, $this->image_with_generated); $expected = file_create_url(image_style_path($this->style_name, $this->image_with_generated)); $this->assertEqual($actual, $expected, t('Got the download URL for an existing file.')); } } /** * Use the image_test.module's mock toolkit to ensure that the effects are * properly passing parameters to the image toolkit. */ class ImageEffectsUnitTest extends ImageToolkitTestCase { function getInfo() { return array( 'name' => t('Image effects'), 'description' => t('Test that the image effects pass parameters to the toolkit correctly.'), 'group' => t('Image') ); } function setUp() { parent::setUp('image_test'); module_load_include('inc', 'image', 'image.effects'); } /** * Test the image_effects() and image_effect_definitions() functions. */ function testEffects() { $effects = image_effects(); $this->assertEqual(count($effects), 1, t("Found core's effect.")); $effect_definitions = image_effect_definitions(); $this->assertEqual(count($effect_definitions), 6, t("Found core's effects.")); } /** * Test the image_resize_effect() function. */ function testResizeEffect() { $this->assertTrue(image_resize_effect($this->image, array('width' => 1, 'height' => 2)), t('Function returned the expected value.')); $this->assertToolkitOperationsCalled(array('resize')); // Check the parameters. $calls = image_test_get_all_calls(); $this->assertEqual($calls['resize'][0][1], 1, t('Width was passed correctly')); $this->assertEqual($calls['resize'][0][2], 2, t('Height was passed correctly')); } /** * Test the image_scale_effect() function. */ function testScaleEffect() { // @todo: need to test upscaling. $this->assertTrue(image_scale_effect($this->image, array('width' => 10, 'height' => 10)), t('Function returned the expected value.')); $this->assertToolkitOperationsCalled(array('resize')); // Check the parameters. $calls = image_test_get_all_calls(); $this->assertEqual($calls['resize'][0][1], 10, t('Width was passed correctly')); $this->assertEqual($calls['resize'][0][2], 5, t('Height was based off aspect ratio and passed correctly')); } /** * Test the image_crop_effect() function. */ function testCropEffect() { // @todo should test the keyword offsets. $this->assertTrue(image_crop_effect($this->image, array('anchor' => 'top-1', 'width' => 3, 'height' => 4)), t('Function returned the expected value.')); $this->assertToolkitOperationsCalled(array('crop')); // Check the parameters. $calls = image_test_get_all_calls(); $this->assertEqual($calls['crop'][0][1], 0, t('X was passed correctly')); $this->assertEqual($calls['crop'][0][2], 1, t('Y was passed correctly')); $this->assertEqual($calls['crop'][0][3], 3, t('Width was passed correctly')); $this->assertEqual($calls['crop'][0][4], 4, t('Height was passed correctly')); } /** * Test the image_scale_and_crop_effect() function. */ function testScaleAndCropEffect() { $this->assertTrue(image_scale_and_crop_effect($this->image, array('width' => 5, 'height' => 10)), t('Function returned the expected value.')); $this->assertToolkitOperationsCalled(array('resize', 'crop')); // Check the parameters. $calls = image_test_get_all_calls(); $this->assertEqual($calls['crop'][0][1], 7.5, t('X was computed and passed correctly')); $this->assertEqual($calls['crop'][0][2], 0, t('Y was computed and passed correctly')); $this->assertEqual($calls['crop'][0][3], 5, t('Width was computed and passed correctly')); $this->assertEqual($calls['crop'][0][4], 10, t('Height was computed and passed correctly')); } /** * Test the image_desaturate_effect() function. */ function testDesaturateEffect() { $this->assertTrue(image_desaturate_effect($this->image, array()), t('Function returned the expected value.')); $this->assertToolkitOperationsCalled(array('desaturate')); // Check the parameters. $calls = image_test_get_all_calls(); $this->assertEqual(count($calls['desaturate'][0]), 1, t('Only the image was passed.')); } /** * Test the image_rotate_effect() function. */ function testRotateEffect() { // @todo: need to test with 'random' => TRUE $this->assertTrue(image_rotate_effect($this->image, array('degrees' => 90, 'bgcolor' => '#fff')), t('Function returned the expected value.')); $this->assertToolkitOperationsCalled(array('rotate')); // Check the parameters. $calls = image_test_get_all_calls(); $this->assertEqual($calls['rotate'][0][1], 90, t('Degrees were passed correctly')); $this->assertEqual($calls['rotate'][0][2], 0xffffff, t('Background color was passed correctly')); } }