验证器.数据是否满足正则条件

Testing Is Documentation

tests/Validate/Validator/RegexTest.php验证器.数据是否满足正则条件 - 图1

Uses

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

验证通过的数据

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

  1. # Tests\Validate\Validator\RegexTest::baseUseProvider
  2. public function baseUseProvider(): array
  3. {
  4. return [
  5. [2, '/^[0-9]+$/'],
  6. ['2', '/^[0-9]+$/'],
  7. ['zB99', '/^[A-Za-z0-9]+$/'],
  8. ['ABC', '/^[A-Z]+$/'],
  9. ['abc', '/^[a-z]+$/'],
  10. ['中国', '/^[\x{4e00}-\x{9fa5}]+$/u'],
  11. ];
  12. }

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

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

未验证通过的数据

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

  1. # Tests\Validate\Validator\RegexTest::badProvider
  2. public function badProvider(): array
  3. {
  4. return [
  5. ['中国', '/^[0-9]+$/'],
  6. ['成都', '/^[0-9]+$/'],
  7. [new stdClass(), 0],
  8. [['foo', 'bar'], 0],
  9. [[1, 2], 0],
  10. [[[], []], 0],
  11. ];
  12. }

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

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

regex 参数缺失

  1. public function testMissParam(): void
  2. {
  3. $this->expectException(\InvalidArgumentException::class);
  4. $this->expectExceptionMessage(
  5. 'Missing the first element of param.'
  6. );
  7. $validate = new Validator(
  8. [
  9. 'name' => '',
  10. ],
  11. [
  12. 'name' => 'regex',
  13. ]
  14. );
  15. $validate->success();
  16. }