1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
|
<?php
namespace Roundcube\Tests\Framework;
use PHPUnit\Framework\TestCase;
/**
* Test class to test rcube_image class
*/
class Framework_Image extends TestCase
{
/**
* Test props() method
*/
function test_props()
{
$object = new \rcube_image(INSTALL_PATH . 'skins/elastic/thumbnail.png');
if (!function_exists('getimagesize')) {
$this->markTestSkipped();
}
$props = $object->props();
$this->assertSame('png', $props['type']);
$this->assertSame(64, $props['width']);
$this->assertSame(64, $props['height']);
}
/**
* Test resize() method
*/
function test_resize()
{
$object = new \rcube_image(INSTALL_PATH . 'skins/elastic/thumbnail.png');
if (!function_exists('getimagesize')) {
$this->markTestSkipped();
}
$file = \rcube_utils::temp_filename('tests');
$this->assertSame('png', $object->resize(32, $file));
$object = new \rcube_image($file);
$props = $object->props();
@unlink($file);
$this->assertSame('png', $props['type']);
$this->assertSame(32, $props['width']);
$this->assertSame(32, $props['height']);
}
/**
* Test convert() method
*/
function test_convert()
{
$object = new \rcube_image(INSTALL_PATH . 'skins/elastic/thumbnail.png');
if (!function_exists('getimagesize')) {
$this->markTestSkipped();
}
$file = \rcube_utils::temp_filename('tests');
$this->assertTrue($object->convert(\rcube_image::TYPE_JPG, $file));
$object = new \rcube_image($file);
$props = $object->props();
@unlink($file);
$this->assertSame('jpeg', $props['type']);
$this->assertSame(64, $props['width']);
$this->assertSame(64, $props['height']);
}
}
|