/sbw/ZendFramework-1.11.4/tests/Zend/Validate/File/ImageSizeTest.php
https://github.com/nbcutech/o3drupal · PHP · 243 lines · 135 code · 26 blank · 82 comment · 1 complexity · 487ee357f33e2380049d4667f2e8d0c7 MD5 · raw file
- <?php
- /**
- * Zend Framework
- *
- * LICENSE
- *
- * This source file is subject to the new BSD license that is bundled
- * with this package in the file LICENSE.txt.
- * It is also available through the world-wide-web at this URL:
- * http://framework.zend.com/license/new-bsd
- * If you did not receive a copy of the license and are unable to
- * obtain it through the world-wide-web, please send an email
- * to license@zend.com so we can send you a copy immediately.
- *
- * @category Zend
- * @package Zend_Validate_File
- * @subpackage UnitTests
- * @copyright Copyright (c) 2005-2011 Zend Technologies USA Inc. (http://www.zend.com)
- * @license http://framework.zend.com/license/new-bsd New BSD License
- * @version $Id: ImageSizeTest.php 23775 2011-03-01 17:25:24Z ralph $
- */
- // Call Zend_Validate_File_ImageSizeTest::main() if this source file is executed directly.
- if (!defined("PHPUnit_MAIN_METHOD")) {
- define("PHPUnit_MAIN_METHOD", "Zend_Validate_File_ImageSizeTest::main");
- }
- /**
- * @see Zend_Validate_File_ImageSize
- */
- require_once 'Zend/Validate/File/ImageSize.php';
- /**
- * @category Zend
- * @package Zend_Validate_File
- * @subpackage UnitTests
- * @copyright Copyright (c) 2005-2011 Zend Technologies USA Inc. (http://www.zend.com)
- * @license http://framework.zend.com/license/new-bsd New BSD License
- * @group Zend_Validate
- */
- class Zend_Validate_File_ImageSizeTest extends PHPUnit_Framework_TestCase
- {
- /**
- * Runs the test methods of this class.
- *
- * @return void
- */
- public static function main()
- {
- $suite = new PHPUnit_Framework_TestSuite("Zend_Validate_File_ImageSizeTest");
- $result = PHPUnit_TextUI_TestRunner::run($suite);
- }
- /**
- * Ensures that the validator follows expected behavior
- *
- * @return void
- */
- public function testBasic()
- {
- $valuesExpected = array(
- array(array('minwidth' => 0, 'minheight' => 10, 'maxwidth' => 1000, 'maxheight' => 2000), true),
- array(array('minwidth' => 0, 'minheight' => 0, 'maxwidth' => 200, 'maxheight' => 200), true),
- array(array('minwidth' => 150, 'minheight' => 150, 'maxwidth' => 200, 'maxheight' => 200), false),
- array(array('minwidth' => 80, 'minheight' => 0, 'maxwidth' => 80, 'maxheight' => 200), true),
- array(array('minwidth' => 0, 'minheight' => 0, 'maxwidth' => 60, 'maxheight' => 200), false),
- array(array('minwidth' => 90, 'minheight' => 0, 'maxwidth' => 200, 'maxheight' => 200), false),
- array(array('minwidth' => 0, 'minheight' => 0, 'maxwidth' => 200, 'maxheight' => 80), false),
- array(array('minwidth' => 0, 'minheight' => 110, 'maxwidth' => 200, 'maxheight' => 140), false)
- );
- foreach ($valuesExpected as $element) {
- $validator = new Zend_Validate_File_ImageSize($element[0]);
- $this->assertEquals(
- $element[1],
- $validator->isValid(dirname(__FILE__) . '/_files/picture.jpg'),
- "Tested with " . var_export($element, 1)
- );
- }
- $validator = new Zend_Validate_File_ImageSize(array('minwidth' => 0, 'minheight' => 10, 'maxwidth' => 1000, 'maxheight' => 2000));
- $this->assertEquals(false, $validator->isValid(dirname(__FILE__) . '/_files/nofile.jpg'));
- $failures = $validator->getMessages();
- $this->assertContains('is not readable', $failures['fileImageSizeNotReadable']);
- $file['name'] = 'TestName';
- $validator = new Zend_Validate_File_ImageSize(array('minwidth' => 0, 'minheight' => 10, 'maxwidth' => 1000, 'maxheight' => 2000));
- $this->assertEquals(false, $validator->isValid(dirname(__FILE__) . '/_files/nofile.jpg', $file));
- $failures = $validator->getMessages();
- $this->assertContains('TestName', $failures['fileImageSizeNotReadable']);
- $validator = new Zend_Validate_File_ImageSize(array('minwidth' => 0, 'minheight' => 10, 'maxwidth' => 1000, 'maxheight' => 2000));
- $this->assertEquals(false, $validator->isValid(dirname(__FILE__) . '/_files/badpicture.jpg'));
- $failures = $validator->getMessages();
- $this->assertContains('could not be detected', $failures['fileImageSizeNotDetected']);
- }
- /**
- * Ensures that getImageMin() returns expected value
- *
- * @return void
- */
- public function testGetImageMin()
- {
- $validator = new Zend_Validate_File_ImageSize(array('minwidth' => 1, 'minheight' => 10, 'maxwidth' => 100, 'maxheight' => 1000));
- $this->assertEquals(array('minwidth' => 1, 'minheight' => 10), $validator->getImageMin());
- try {
- $validator = new Zend_Validate_File_ImageSize(array('minwidth' => 1000, 'minheight' => 100, 'maxwidth' => 10, 'maxheight' => 1));
- $this->fail("Missing exception");
- } catch (Zend_Validate_Exception $e) {
- $this->assertContains("greater than or equal", $e->getMessage());
- }
- }
- /**
- * Ensures that setImageMin() returns expected value
- *
- * @return void
- */
- public function testSetImageMin()
- {
- $validator = new Zend_Validate_File_ImageSize(array('minwidth' => 100, 'minheight' => 1000, 'maxwidth' => 10000, 'maxheight' => 100000));
- $validator->setImageMin(array('minwidth' => 10, 'minheight' => 10));
- $this->assertEquals(array('minwidth' => 10, 'minheight' => 10), $validator->getImageMin());
- $validator->setImageMin(array('minwidth' => 9, 'minheight' => 100));
- $this->assertEquals(array('minwidth' => 9, 'minheight' => 100), $validator->getImageMin());
- try {
- $validator->setImageMin(array('minwidth' => 20000, 'minheight' => 20000));
- $this->fail("Missing exception");
- } catch (Zend_Validate_Exception $e) {
- $this->assertContains("less than or equal", $e->getMessage());
- }
- }
- /**
- * Ensures that getImageMax() returns expected value
- *
- * @return void
- */
- public function testGetImageMax()
- {
- $validator = new Zend_Validate_File_ImageSize(array('minwidth' => 10, 'minheight' => 100, 'maxwidth' => 1000, 'maxheight' => 10000));
- $this->assertEquals(array('maxwidth' => 1000, 'maxheight' => 10000), $validator->getImageMax());
- try {
- $validator = new Zend_Validate_File_ImageSize(array('minwidth' => 10000, 'minheight' => 1000, 'maxwidth' => 100, 'maxheight' => 10));
- $this->fail("Missing exception");
- } catch (Zend_Validate_Exception $e) {
- $this->assertContains("greater than or equal", $e->getMessage());
- }
- }
- /**
- * Ensures that setImageMax() returns expected value
- *
- * @return void
- */
- public function testSetImageMax()
- {
- $validator = new Zend_Validate_File_ImageSize(array('minwidth' => 10, 'minheight' => 100, 'maxwidth' => 1000, 'maxheight' => 10000));
- $validator->setImageMax(array('maxwidth' => 100, 'maxheight' => 100));
- $this->assertEquals(array('maxwidth' => 100, 'maxheight' => 100), $validator->getImageMax());
- $validator->setImageMax(array('maxwidth' => 110, 'maxheight' => 1000));
- $this->assertEquals(array('maxwidth' => 110, 'maxheight' => 1000), $validator->getImageMax());
- $validator->setImageMax(array('maxheight' => 1100));
- $this->assertEquals(array('maxwidth' => 110, 'maxheight' => 1100), $validator->getImageMax());
- $validator->setImageMax(array('maxwidth' => 120));
- $this->assertEquals(array('maxwidth' => 120, 'maxheight' => 1100), $validator->getImageMax());
- try {
- $validator->setImageMax(array('maxwidth' => 10000, 'maxheight' => 1));
- $this->fail("Missing exception");
- } catch (Zend_Validate_Exception $e) {
- $this->assertContains("greater than or equal", $e->getMessage());
- }
- }
- /**
- * Ensures that getImageWidth() returns expected value
- *
- * @return void
- */
- public function testGetImageWidth()
- {
- $validator = new Zend_Validate_File_ImageSize(array('minwidth' => 1, 'minheight' => 10, 'maxwidth' => 100, 'maxheight' => 1000));
- $this->assertEquals(array('minwidth' => 1, 'maxwidth' => 100), $validator->getImageWidth());
- }
- /**
- * Ensures that setImageWidth() returns expected value
- *
- * @return void
- */
- public function testSetImageWidth()
- {
- $validator = new Zend_Validate_File_ImageSize(array('minwidth' => 100, 'minheight' => 1000, 'maxwidth' => 10000, 'maxheight' => 100000));
- $validator->setImageWidth(array('minwidth' => 2000, 'maxwidth' => 2200));
- $this->assertEquals(array('minwidth' => 2000, 'maxwidth' => 2200), $validator->getImageWidth());
- try {
- $validator->setImageWidth(array('minwidth' => 20000, 'maxwidth' => 200));
- $this->fail("Missing exception");
- } catch (Zend_Validate_Exception $e) {
- $this->assertContains("less than or equal", $e->getMessage());
- }
- }
- /**
- * Ensures that getImageHeight() returns expected value
- *
- * @return void
- */
- public function testGetImageHeight()
- {
- $validator = new Zend_Validate_File_ImageSize(array('minwidth' => 1, 'minheight' => 10, 'maxwidth' => 100, 'maxheight' => 1000));
- $this->assertEquals(array('minheight' => 10, 'maxheight' => 1000), $validator->getImageHeight());
- }
- /**
- * Ensures that setImageHeight() returns expected value
- *
- * @return void
- */
- public function testSetImageHeight()
- {
- $validator = new Zend_Validate_File_ImageSize(array('minwidth' => 100, 'minheight' => 1000, 'maxwidth' => 10000, 'maxheight' => 100000));
- $validator->setImageHeight(array('minheight' => 2000, 'maxheight' => 2200));
- $this->assertEquals(array('minheight' => 2000, 'maxheight' => 2200), $validator->getImageHeight());
- try {
- $validator->setImageHeight(array('minheight' => 20000, 'maxheight' => 200));
- $this->fail("Missing exception");
- } catch (Zend_Validate_Exception $e) {
- $this->assertContains("less than or equal", $e->getMessage());
- }
- }
- }