Files
electionvue/vendor/tecnickcom/tc-lib-barcode/test/Linear/EanOneThreeTest.php
T

90 lines
2.6 KiB
PHP
Raw Normal View History

2026-08-30 22:02:02 +00:00
<?php
/**
* EanOneThreeTest.php
*
* @since 2015-02-21
* @category Library
* @package Barcode
* @author Nicola Asuni <info@tecnick.com>
* @copyright 2015-2026 Nicola Asuni - Tecnick.com LTD
* @license https://www.gnu.org/copyleft/lesser.html GNU-LGPL v3 (see LICENSE)
* @link https://github.com/tecnickcom/tc-lib-barcode
*
* This file is part of tc-lib-barcode software library.
*/
namespace Test\Linear;
use Test\TestUtil;
/**
* Barcode class test
*
* @since 2015-02-21
* @category Library
* @package Barcode
* @author Nicola Asuni <info@tecnick.com>
* @copyright 2015-2026 Nicola Asuni - Tecnick.com LTD
* @license https://www.gnu.org/copyleft/lesser.html GNU-LGPL v3 (see LICENSE)
* @link https://github.com/tecnickcom/tc-lib-barcode
*/
class EanOneThreeTest extends TestUtil
{
protected function getTestObject(): \Com\Tecnick\Barcode\Barcode
{
return new \Com\Tecnick\Barcode\Barcode();
}
/**
* @throws \Com\Tecnick\Barcode\Exception
* @throws \Com\Tecnick\Color\Exception
*/
public function testGetGrid(): void
{
$barcode = $this->getTestObject();
$type = $barcode->getBarcodeObj('EAN13', '0123456789');
$grid = $type->getGrid();
$expected = "10100011010001101001100100100110111101010001101010100111010100001000100100100011101001001110101\n";
$this->assertEquals($expected, $grid);
$this->assertEquals('0001234567895', $type->getExtendedCode());
}
/**
* @throws \Com\Tecnick\Barcode\Exception
* @throws \Com\Tecnick\Color\Exception
*/
public function testInvalidInput(): void
{
$this->bcExpectException(\Com\Tecnick\Barcode\Exception::class);
$barcode = $this->getTestObject();
$barcode->getBarcodeObj('EAN13', '}{');
}
/**
* @throws \Com\Tecnick\Barcode\Exception
* @throws \Com\Tecnick\Color\Exception
*/
public function testInvalidLength(): void
{
$this->bcExpectException(\Com\Tecnick\Barcode\Exception::class);
$barcode = $this->getTestObject();
$barcode->getBarcodeObj('EAN13', '1111111111111');
}
/**
* Regression: a full code that already carries its (valid) check digit must not
* gain a spurious extra digit in the extended code.
*
* @throws \Com\Tecnick\Barcode\Exception
* @throws \Com\Tecnick\Color\Exception
*/
public function testFullCodeExtendedCode(): void
{
$barcode = $this->getTestObject();
$type = $barcode->getBarcodeObj('EAN13', '8012345678907');
$this->assertSame('8012345678907', $type->getExtendedCode());
}
}