36 lines
916 B
PHP
36 lines
916 B
PHP
<?php
|
|
|
|
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)
|
|
{
|
|
$rule = new UsesStringInputLength();
|
|
$rule->validate($input);
|
|
|
|
$this->assertEquals($expectedInput, $rule->lastInput);
|
|
}
|
|
|
|
/**
|
|
* @return array[]
|
|
*/
|
|
public function validateProvider()
|
|
{
|
|
return [
|
|
['TEST', 4],
|
|
['?', 1],
|
|
['2042-01-01 00:00', '2042-01-01 00:00'],
|
|
['3', '3'],
|
|
];
|
|
}
|
|
}
|