验证器.值是否为银行卡等符合 luhn 算法

Testing Is Documentation

tests/Validate/Validator/LuhnTest.php验证器.值是否为银行卡等符合 luhn 算法 - 图1

Uses

  1. <?php
  2. use Leevel\Validate\Validator;
  3. use stdClass;

验证通过的数据

以下是通过的校验数据示例。

  1. # Tests\Validate\Validator\LuhnTest::baseUseProvider
  2. public function baseUseProvider(): array
  3. {
  4. return [
  5. [6214830286655765],
  6. ['6214830286655765'],
  7. ['6214850285711047'],
  8. ['6225365271562822'],
  9. ['181222100003333'],
  10. ['143311222333444'],
  11. ];
  12. }

上面的数据是测试的数据提供者。

  1. public function testBaseUse($value): void
  2. {
  3. $validate = new Validator(
  4. [
  5. 'name' => $value,
  6. ],
  7. [
  8. 'name' => 'luhn',
  9. ]
  10. );
  11. $this->assertTrue($validate->success());
  12. }

未验证通过的数据

以下是未通过的校验数据示例。

  1. # Tests\Validate\Validator\LuhnTest::badProvider
  2. public function badProvider(): array
  3. {
  4. return [
  5. ['130222000333311'],
  6. ['1533333333332222'],
  7. [' '],
  8. [new stdClass()],
  9. [['foo', 'bar']],
  10. [[1, 2]],
  11. [true],
  12. [[[], []]],
  13. ['173111223332444'],
  14. ];
  15. }

上面的数据是测试的数据提供者。

  1. public function testBad($value): void
  2. {
  3. $validate = new Validator(
  4. [
  5. 'name' => $value,
  6. ],
  7. [
  8. 'name' => 'luhn',
  9. ]
  10. );
  11. $this->assertFalse($validate->success());
  12. }