engelsystem/tests/Unit/Http/Validation/Rules/StringInputLengthTest.php

49 lines
1.2 KiB
PHP
Raw Normal View History

<?php
declare(strict_types=1);
namespace Engelsystem\Test\Unit\Http\Validation\Rules;
use Engelsystem\Test\Unit\Http\Validation\Rules\Stub\UsesStringInputLength;
use Engelsystem\Test\Unit\TestCase;
class StringInputLengthTest extends TestCase
{
/**
* @covers \Engelsystem\Http\Validation\Rules\StringInputLength::validate
* @covers \Engelsystem\Http\Validation\Rules\StringInputLength::isDateTime
* @dataProvider validateProvider
*/
public function testValidate(mixed $input, mixed $expectedInput): void
{
$rule = new UsesStringInputLength();
$rule->validate($input);
$this->assertEquals($expectedInput, $rule->lastInput);
}
/**
* @return array[]
*/
public function validateProvider(): array
{
return [
['TEST', 4],
['?', 1],
2023-01-24 23:26:55 +01:00
['', 0],
['2042-01-01 00:00', '2042-01-01 00:00'],
2023-01-21 01:41:55 +01:00
['2042-01-01', '2042-01-01'],
['12:42', '12:42'],
['3', '3'],
2023-01-21 01:41:55 +01:00
['...', 3],
['Test Tester', 11],
['com', 3],
2023-01-24 23:26:55 +01:00
['Test', 4],
['H', 1],
['3', 3],
[42, 42],
[99.3, 99.3],
];
}
}