mirror of
https://github.com/Karaka-Management/phpOMS.git
synced 2026-01-11 09:48:40 +00:00
93 lines
2.2 KiB
PHP
Executable File
93 lines
2.2 KiB
PHP
Executable File
<?php
|
|
/**
|
|
* Jingga
|
|
*
|
|
* PHP Version 8.2
|
|
*
|
|
* @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\C25;
|
|
use phpOMS\Utils\Barcode\OrientationType;
|
|
|
|
/**
|
|
* @internal
|
|
*/
|
|
#[\PHPUnit\Framework\Attributes\CoversClass(\phpOMS\Utils\Barcode\C25::class)]
|
|
final class C25Test extends \PHPUnit\Framework\TestCase
|
|
{
|
|
protected function setUp() : void
|
|
{
|
|
if (!\extension_loaded('gd')) {
|
|
$this->markTestSkipped(
|
|
'The GD extension is not available.'
|
|
);
|
|
}
|
|
}
|
|
|
|
#[\PHPUnit\Framework\Attributes\Group('framework')]
|
|
public function testImagePng() : void
|
|
{
|
|
$path = __DIR__ . '/c25.png';
|
|
if (\is_file($path)) {
|
|
\unlink($path);
|
|
}
|
|
|
|
$img = new C25('1234567890', 150, 50);
|
|
$img->saveToPngFile($path);
|
|
|
|
self::assertFileExists($path);
|
|
}
|
|
|
|
#[\PHPUnit\Framework\Attributes\Group('framework')]
|
|
public function testImageJpg() : void
|
|
{
|
|
$path = __DIR__ . '/c25.jpg';
|
|
if (\is_file($path)) {
|
|
\unlink($path);
|
|
}
|
|
|
|
$img = new C25('1234567890', 150, 50);
|
|
$img->saveToJpgFile($path);
|
|
|
|
self::assertFileExists($path);
|
|
}
|
|
|
|
#[\PHPUnit\Framework\Attributes\Group('framework')]
|
|
public function testOrientationAndMargin() : void
|
|
{
|
|
$path = __DIR__ . '/c25_vertical.png';
|
|
if (\is_file($path)) {
|
|
\unlink($path);
|
|
}
|
|
|
|
$img = new C25('1234567890', 50, 200, OrientationType::VERTICAL);
|
|
$img->setMargin(2);
|
|
$img->saveToPngFile($path);
|
|
|
|
self::assertFileExists($path);
|
|
}
|
|
|
|
#[\PHPUnit\Framework\Attributes\Group('framework')]
|
|
public function testValidString() : void
|
|
{
|
|
self::assertTrue(C25::isValidString('1234567890'));
|
|
self::assertFalse(C25::isValidString('1234567A890'));
|
|
}
|
|
|
|
#[\PHPUnit\Framework\Attributes\Group('framework')]
|
|
public function testInvalidOrientation() : void
|
|
{
|
|
$this->expectException(\InvalidArgumentException::class);
|
|
|
|
$img = new C25('45f!a?12');
|
|
}
|
|
}
|