| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104 |
- <?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
- * @subpackage UnitTests
- * @copyright Copyright (c) 2005-2008 Zend Technologies USA Inc. (http://www.zend.com)
- * @license http://framework.zend.com/license/new-bsd New BSD License
- * @version $Id$
- */
- /**
- * Test helper
- */
- require_once dirname(__FILE__) . '/../../TestHelper.php';
- /** Zend_Validate_Barcode */
- require_once 'Zend/Validate/Barcode.php';
- /**
- * Zend_Validate_Barcode
- *
- * @category Zend
- * @package Zend_Validate
- * @subpackage UnitTests
- * @uses Zend_Validate_Barcode
- * @copyright Copyright (c) 2005-2008 Zend Technologies USA Inc. (http://www.zend.com)
- * @license http://framework.zend.com/license/new-bsd New BSD License
- */
- class Zend_Validate_BarcodeTest extends PHPUnit_Framework_TestCase
- {
- public function testUpcA()
- {
- $barcode = new Zend_Validate_Barcode('upc-a');
- $this->assertTrue($barcode->isValid('065100004327'));
- $this->assertFalse($barcode->isValid('123'));
- $this->assertFalse($barcode->isValid('065100004328'));
- }
- public function testEan13()
- {
- $barcode = new Zend_Validate_Barcode('ean-13');
- $this->assertTrue($barcode->isValid('0075678164125'));
- $this->assertFalse($barcode->isValid('123'));
- $this->assertFalse($barcode->isValid('0075678164124'));
- }
- /**
- * Test if EAN-13 contains only numeric characters
- *
- * @group ZF-3297
- */
- public function testEan13ContainsOnlyNumeric()
- {
- $barcode = new Zend_Validate_Barcode('ean-13');
- $this->assertFalse($barcode->isValid('3RH1131-1BB40'));
- }
- public function testNoneExisting()
- {
- try {
- $barcode = new Zend_Validate_Barcode('Zend');
- $this->fail("'Zend' is not a valid barcode type'");
- } catch (Exception $e) {
- $this->assertContains("'Zend' is not supported", $e->getMessage());
- }
- }
- public function testSetType()
- {
- $barcode = new Zend_Validate_Barcode('upc-a');
- $this->assertTrue($barcode->isValid('065100004327'));
- $barcode->setType('ean-13');
- $this->assertTrue($barcode->isValid('0075678164125'));
- }
- /**
- * @ZF-4352
- */
- public function testNonStringValidation()
- {
- $barcode = new Zend_Validate_Barcode('upc-a');
- $this->assertFalse($barcode->isValid(106510000.4327));
- $this->assertFalse($barcode->isValid(array('065100004327')));
- $barcode = new Zend_Validate_Barcode('ean-13');
- $this->assertFalse($barcode->isValid(06510000.4327));
- $this->assertFalse($barcode->isValid(array('065100004327')));
- }
- }
|