phpOMS/tests/Utils/Barcode/C128aTest.php

96 lines
2.1 KiB
PHP

<?php
/**
* Karaka
*
* PHP Version 8.1
*
* @package tests
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
* @link https://karaka.app
*/
declare(strict_types=1);
namespace phpOMS\tests\Utils\Barcode;
use phpOMS\Utils\Barcode\C128a;
use phpOMS\Utils\Barcode\OrientationType;
/**
* @internal
*/
final class C128aTest extends \PHPUnit\Framework\TestCase
{
protected function setUp() : void
{
if (!\extension_loaded('gd')) {
$this->markTestSkipped(
'The GD extension is not available.'
);
}
}
/**
* @covers phpOMS\Utils\Barcode\C128a<extended>
* @group framework
*/
public function testImagePng() : void
{
$path = __DIR__ . '/c128a.png';
if (\is_file($path)) {
\unlink($path);
}
$img = new C128a('ABCDEFG0123()+-', 200, 50);
$img->saveToPngFile($path);
self::assertFileExists($path);
}
/**
* @covers phpOMS\Utils\Barcode\C128a<extended>
* @group framework
*/
public function testImageJpg() : void
{
$path = __DIR__ . '/c128a.jpg';
if (\is_file($path)) {
\unlink($path);
}
$img = new C128a('ABCDEFG0123()+-', 200, 50);
$img->saveToJpgFile($path);
self::assertFileExists($path);
}
/**
* @covers phpOMS\Utils\Barcode\C128a<extended>
* @group framework
*/
public function testOrientationAndMargin() : void
{
$path = __DIR__ . '/c128a_vertical.png';
if (\is_file($path)) {
\unlink($path);
}
$img = new C128a('ABCDEFG0123()+-', 50, 200, OrientationType::VERTICAL);
$img->setMargin(2);
$img->saveToPngFile($path);
self::assertFileExists($path);
}
/**
* @covers phpOMS\Utils\Barcode\C128a<extended>
* @group framework
*/
public function testValidString() : void
{
self::assertTrue(C128a::isValidString('ABCDEFG0123+-'));
self::assertFalse(C128a::isValidString('ABCDE~FG0123+-'));
}
}