验证器.数据类型验证

Testing Is Documentation

tests/Validate/Validator/TypeTest.php验证器.数据类型验证 - 图1

数据类型验证底层核心为函数 Leevel\Support\Type\type,相对于 PHP 提供的 gettype 更加强大。

Uses

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

验证通过的数据

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

  1. # Tests\Validate\Validator\TypeTest::baseUseProvider
  2. public function baseUseProvider(): array
  3. {
  4. $testFile = __DIR__.'/../assert/test.txt';
  5. $resource = fopen($testFile, 'r');
  6. // 主要为 is_xxx 系列
  7. // https://www.php.net/manual/zh/function.is-array.php
  8. return [
  9. [true, 'bool'],
  10. [true, 'bool'],
  11. [1.5, 'double'],
  12. [6.00, 'double'],
  13. ['中国', 'string'],
  14. ['成都no1', 'string'],
  15. [['foo', 'bar'], 'array'],
  16. [['hello', 'world'], 'array'],
  17. [['hello', 'world'], 'array:string'],
  18. [['hello', 'world'], 'array:int:string'],
  19. [['hello' => 'world', 'world' => 'world'], 'array:string:string'],
  20. [new stdClass(), 'object'],
  21. [new Type1(), 'object'],
  22. [$resource, 'resource'],
  23. [null, 'NULL'],
  24. ];
  25. }

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

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

未验证通过的数据

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

  1. # Tests\Validate\Validator\TypeTest::badProvider
  2. public function badProvider(): array
  3. {
  4. return [
  5. ['not numeric', 'errorType'],
  6. [[], 'errorType'],
  7. [new stdClass(), 'errorType'],
  8. [['foo', 'bar'], 'errorType'],
  9. [[1, 2], 'errorType'],
  10. ['tel:+1-816-555-1212', 'errorType'],
  11. ['foo', 'errorType'],
  12. ['bar', 'errorType'],
  13. ['urn:oasis:names:specification:docbook:dtd:xml:4.1.2', 'errorType'],
  14. ['world', 'errorType'],
  15. [null, 'errorType'],
  16. ['errorType', 1],
  17. ];
  18. }

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

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

type 参数缺失

  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' => 'type',
  13. ]
  14. );
  15. $validate->success();
  16. }