验证器.值是否为银行卡等符合 luhn 算法
Testing Is Documentation
Uses
php
<?php
use Leevel\Kernel\Utils\Api;
use Leevel\Validate\Validator;
use PHPUnit\Framework\Attributes\DataProvider;
验证通过的数据
以下是通过的校验数据示例。
php
# Tests\Validate\Validator\LuhnTest::baseUseProvider
public static function baseUseProvider(): array
{
return [
[6214830286655765],
['6214830286655765'],
['6214850285711047'],
['6225365271562822'],
['181222100003333'],
['143311222333444'],
];
}
上面的数据是测试的数据提供者。
php
public function testBaseUse($value): void
{
$validate = new Validator(
[
'name' => $value,
],
[
'name' => 'luhn',
]
);
self::assertTrue($validate->success());
}
未验证通过的数据
以下是未通过的校验数据示例。
php
# Tests\Validate\Validator\LuhnTest::badProvider
public static function badProvider(): array
{
return [
['130222000333311'],
['1533333333332222'],
[' '],
[new \stdClass()],
[['foo', 'bar']],
[[1, 2]],
[true],
[[[], []]],
['173111223332444'],
];
}
上面的数据是测试的数据提供者。
php
public function testBad($value): void
{
$validate = new Validator(
[
'name' => $value,
],
[
'name' => 'luhn',
]
);
self::assertFalse($validate->success());
}