验证器.验证数据最小长度
Testing Is Documentation
Uses
php
<?php
use Leevel\Kernel\Utils\Api;
use Leevel\Validate\Validator;
use PHPUnit\Framework\Attributes\DataProvider;
验证通过的数据
以下是通过的校验数据示例。
php
# Tests\Validate\Validator\MinLengthTest::baseUseProvider
public static function baseUseProvider(): array
{
return [
[2, 1],
['中国', 2],
['中国', 1],
['成都', 2],
['hello', 5],
['hello', 4],
['foo', 3],
['world', 5],
['中国no1', 5],
[true, 1],
[false, 0],
[null, 0],
];
}
上面的数据是测试的数据提供者。
php
public function testBaseUse($value, $param): void
{
$validate = new Validator(
[
'name' => $value,
],
[
'name' => 'min_length:'.$param,
]
);
self::assertTrue($validate->success());
}
未验证通过的数据
以下是未通过的校验数据示例。
php
# Tests\Validate\Validator\MinLengthTest::badProvider
public static function badProvider(): array
{
return [
[2, 2],
['中国', 3],
['成都', 3],
['hello', 6],
['foo', 4],
['world', 6],
['中国no1', 6],
[new \stdClass(), 0],
[['foo', 'bar'], 0],
[[1, 2], 0],
[1, 2],
[[[], []], 0],
[true, 2],
[false, 1],
];
}
上面的数据是测试的数据提供者。
php
public function testBad($value, $param): void
{
$validate = new Validator(
[
'name' => $value,
],
[
'name' => 'min_length:'.$param,
]
);
self::assertFalse($validate->success());
}