mirror of
https://github.com/Karaka-Management/phpOMS.git
synced 2026-01-11 17:58:41 +00:00
96 lines
2.1 KiB
PHP
Executable File
96 lines
2.1 KiB
PHP
Executable File
<?php
|
|
/**
|
|
* Jingga
|
|
*
|
|
* PHP Version 8.1
|
|
*
|
|
* @package tests
|
|
* @copyright Dennis Eichhorn
|
|
* @license OMS License 2.0
|
|
* @version 1.0.0
|
|
* @link https://jingga.app
|
|
*/
|
|
declare(strict_types=1);
|
|
|
|
namespace phpOMS\tests\Utils\Barcode;
|
|
|
|
use phpOMS\Utils\Barcode\Codebar;
|
|
use phpOMS\Utils\Barcode\OrientationType;
|
|
|
|
/**
|
|
* @internal
|
|
*/
|
|
final class CodebarTest extends \PHPUnit\Framework\TestCase
|
|
{
|
|
protected function setUp() : void
|
|
{
|
|
if (!\extension_loaded('gd')) {
|
|
$this->markTestSkipped(
|
|
'The GD extension is not available.'
|
|
);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @covers \phpOMS\Utils\Barcode\Codebar<extended>
|
|
* @group framework
|
|
*/
|
|
public function testImagePng() : void
|
|
{
|
|
$path = __DIR__ . '/codebar.png';
|
|
if (\is_file($path)) {
|
|
\unlink($path);
|
|
}
|
|
|
|
$img = new Codebar('412163', 200, 50);
|
|
$img->saveToPngFile($path);
|
|
|
|
self::assertFileExists($path);
|
|
}
|
|
|
|
/**
|
|
* @covers \phpOMS\Utils\Barcode\Codebar<extended>
|
|
* @group framework
|
|
*/
|
|
public function testImageJpg() : void
|
|
{
|
|
$path = __DIR__ . '/codebar.jpg';
|
|
if (\is_file($path)) {
|
|
\unlink($path);
|
|
}
|
|
|
|
$img = new Codebar('412163', 200, 50);
|
|
$img->saveToJpgFile($path);
|
|
|
|
self::assertFileExists($path);
|
|
}
|
|
|
|
/**
|
|
* @covers \phpOMS\Utils\Barcode\Codebar<extended>
|
|
* @group framework
|
|
*/
|
|
public function testOrientationAndMargin() : void
|
|
{
|
|
$path = __DIR__ . '/ccodebar_vertical.png';
|
|
if (\is_file($path)) {
|
|
\unlink($path);
|
|
}
|
|
|
|
$img = new Codebar('412163', 50, 200, OrientationType::VERTICAL);
|
|
$img->setMargin(2);
|
|
$img->saveToPngFile($path);
|
|
|
|
self::assertFileExists($path);
|
|
}
|
|
|
|
/**
|
|
* @covers \phpOMS\Utils\Barcode\Codebar<extended>
|
|
* @group framework
|
|
*/
|
|
public function testValidString() : void
|
|
{
|
|
self::assertTrue(Codebar::isValidString('412163'));
|
|
self::assertFalse(Codebar::isValidString('412163F'));
|
|
}
|
|
}
|