| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219 |
- <?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-2015 Zend Technologies USA Inc. (http://www.zend.com)
- * @license http://framework.zend.com/license/new-bsd New BSD License
- * @version $Id$
- */
- // Call Zend_Validate_File_SizeTest::main() if this source file is executed directly.
- if (!defined("PHPUnit_MAIN_METHOD")) {
- define("PHPUnit_MAIN_METHOD", "Zend_Validate_File_SizeTest::main");
- }
- /**
- * @see Zend_Validate_File_Size
- */
- require_once 'Zend/Validate/File/Size.php';
- /**
- * @category Zend
- * @package Zend_Validate_File
- * @subpackage UnitTests
- * @copyright Copyright (c) 2005-2015 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_SizeTest 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_SizeTest");
- $result = PHPUnit_TextUI_TestRunner::run($suite);
- }
- /**
- * Ensures that the validator follows expected behavior
- *
- * @return void
- */
- public function testBasic()
- {
- $valuesExpected = array(
- array(array('min' => 0, 'max' => 10000), true),
- array(array('min' => 0, 'max' => '10 MB'), true),
- array(array('min' => '4B', 'max' => '10 MB'), true),
- array(array('min' => 0, 'max' => '10MB'), true),
- array(array('min' => 0, 'max' => '10 MB'), true),
- array(794, true),
- array(array('min' => 794), true),
- array(array('min' => 0, 'max' => 500), false),
- array(500, false),
- );
- foreach ($valuesExpected as $element) {
- $options = array_shift($element);
- $value = array_shift($element);
- $validator = new Zend_Validate_File_Size($options);
- $this->assertEquals(
- $value,
- $validator->isValid(dirname(__FILE__) . '/_files/testsize.mo'),
- "Tested " . var_export($value, 1) . " against options " . var_export($options, 1)
- );
- }
- }
- /**
- * Ensures that getMin() returns expected value
- *
- * @return void
- */
- public function testGetMin()
- {
- $validator = new Zend_Validate_File_Size(array('min' => 1, 'max' => 100));
- $this->assertEquals('1B', $validator->getMin());
- try {
- $validator = new Zend_Validate_File_Size(array('min' => 100, 'max' => 1));
- $this->fail("Missing exception");
- } catch (Zend_Validate_Exception $e) {
- $this->assertContains("greater than or equal", $e->getMessage());
- }
- $validator = new Zend_Validate_File_Size(array('min' => 1, 'max' => 100, 'bytestring' => false));
- $this->assertEquals(1, $validator->getMin());
- }
- /**
- * Ensures that setMin() returns expected value
- *
- * @return void
- */
- public function testSetMin()
- {
- $validator = new Zend_Validate_File_Size(array('min' => 1000, 'max' => 10000));
- $validator->setMin(100);
- $this->assertEquals('100B', $validator->getMin());
- try {
- $validator->setMin(20000);
- $this->fail("Missing exception");
- } catch (Zend_Validate_Exception $e) {
- $this->assertContains("less than or equal", $e->getMessage());
- }
- $validator = new Zend_Validate_File_Size(array('min' => 1000, 'max' => 10000, 'bytestring' => false));
- $validator->setMin(100);
- $this->assertEquals(100, $validator->getMin());
- }
- /**
- * Ensures that getMax() returns expected value
- *
- * @return void
- */
- public function testGetMax()
- {
- $validator = new Zend_Validate_File_Size(array('min' => 1, 'max' => 100, 'bytestring' => false));
- $this->assertEquals(100, $validator->getMax());
- try {
- $validator = new Zend_Validate_File_Size(array('min' => 100, 'max' => 1));
- $this->fail("Missing exception");
- } catch (Zend_Validate_Exception $e) {
- $this->assertContains("greater than or equal", $e->getMessage());
- }
- $validator = new Zend_Validate_File_Size(array('min' => 1, 'max' => 100000));
- $this->assertEquals('97.66kB', $validator->getMax());
- $validator = new Zend_Validate_File_Size(2000);
- $this->assertEquals('1.95kB', $validator->getMax());
- }
- /**
- * Ensures that setMax() returns expected value
- *
- * @return void
- */
- public function testSetMax()
- {
- $validator = new Zend_Validate_File_Size(array('max' => 0, 'bytestring' => true));
- $this->assertEquals('0B', $validator->getMax());
- $validator->setMax(1000000);
- $this->assertEquals('976.56kB', $validator->getMax());
- $validator->setMin(100);
- $this->assertEquals('976.56kB', $validator->getMax());
- $validator->setMax('100 AB');
- $this->assertEquals('100B', $validator->getMax());
- $validator->setMax('100 kB');
- $this->assertEquals('100kB', $validator->getMax());
- $validator->setMax('100 MB');
- $this->assertEquals('100MB', $validator->getMax());
- $validator->setMax('1 GB');
- $this->assertEquals('1GB', $validator->getMax());
- $validator->setMax('0.001 TB');
- $this->assertEquals('1.02GB', $validator->getMax());
- $validator->setMax('0.000001 PB');
- $this->assertEquals('1.05GB', $validator->getMax());
- $validator->setMax('0.000000001 EB');
- $this->assertEquals('1.07GB', $validator->getMax());
- $validator->setMax('0.000000000001 ZB');
- $this->assertEquals('1.1GB', $validator->getMax());
- $validator->setMax('0.000000000000001 YB');
- $this->assertEquals('1.13GB', $validator->getMax());
- }
- /**
- * Ensures that the validator returns size infos
- *
- * @return void
- */
- public function testFailureMessage()
- {
- $validator = new Zend_Validate_File_Size(array('min' => 9999, 'max' => 10000));
- $this->assertFalse($validator->isValid(dirname(__FILE__) . '/_files/testsize.mo'));
- $this->assertContains('9.76kB', current($validator->getMessages()));
- $this->assertContains('794B', current($validator->getMessages()));
- $validator = new Zend_Validate_File_Size(array('min' => 9999, 'max' => 10000, 'bytestring' => false));
- $this->assertFalse($validator->isValid(dirname(__FILE__) . '/_files/testsize.mo'));
- $this->assertContains('9999', current($validator->getMessages()));
- $this->assertContains('794', current($validator->getMessages()));
- }
- }
- // Call Zend_Validate_File_SizeTest::main() if this source file is executed directly.
- if (PHPUnit_MAIN_METHOD == "Zend_Validate_File_SizeTest::main") {
- Zend_Validate_File_SizeTest::main();
- }
|