验证器.是否为 QQ 号码

Testing Is Documentation

tests/Validate/Validator/QqTest.php验证器.是否为 QQ 号码 - 图1

Uses

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

验证通过的数据

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

  1. # Tests\Validate\Validator\QqTest::baseUseProvider
  2. public function baseUseProvider(): array
  3. {
  4. return [
  5. ['10000'],
  6. ['1234567'],
  7. ['6344433'],
  8. ['123456789011'],
  9. [6344433],
  10. ];
  11. }

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

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

未验证通过的数据

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

  1. # Tests\Validate\Validator\QqTest::badProvider
  2. public function badProvider(): array
  3. {
  4. return [
  5. ['9995031975011115028819'],
  6. ['1234567890111'],
  7. [' '],
  8. ['not numeric'],
  9. [new stdClass()],
  10. [['foo', 'bar']],
  11. [[1, 2]],
  12. ['this is a string'],
  13. [true],
  14. [[[], []]],
  15. ['not/numeric'],
  16. ['not?numeric'],
  17. ];
  18. }

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

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