50 lines
1.3 KiB
PHP
50 lines
1.3 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Engelsystem\Test\Unit\Http\Validation\Rules;
|
|
|
|
use Engelsystem\Http\Validation\Rules\ShirtSize;
|
|
use Engelsystem\Test\Unit\ServiceProviderTest;
|
|
|
|
class ShirtSizeTest extends ServiceProviderTest
|
|
{
|
|
private ShirtSize $subject;
|
|
|
|
public function setUp(): void
|
|
{
|
|
$app = $this->createAndSetUpAppWithConfig([]);
|
|
$app->get('config')->set('tshirt_sizes', [
|
|
'S' => 'Small Straight-Cut',
|
|
'M' => 'Medium Straight-Cut',
|
|
]);
|
|
$this->subject = new ShirtSize();
|
|
}
|
|
|
|
/**
|
|
* @return array<string, array{string, bool}>
|
|
*/
|
|
public function provideTestValidateData(): array
|
|
{
|
|
$data = [
|
|
'empty string' => ['', false],
|
|
'null' => [null, false],
|
|
'0' => [0, false],
|
|
'"S" (known value)' => ['S', true],
|
|
'"M" (known value)' => ['M', true],
|
|
'"L" (unknown value)' => ['L', false],
|
|
];
|
|
|
|
return $data;
|
|
}
|
|
|
|
/**
|
|
* @covers \Engelsystem\Http\Validation\Rules\ShirtSize::__construct
|
|
* @dataProvider provideTestValidateData
|
|
*/
|
|
public function testValidate(mixed $value, bool $expectedValid): void
|
|
{
|
|
self::assertSame($expectedValid, $this->subject->validate($value));
|
|
}
|
|
}
|