验证器.验证是否为正常的 JSON 数据

Testing Is Documentation

tests/Validate/Validator/JsonTest.php验证器.验证是否为正常的 JSON 数据 - 图1

Uses

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

验证通过的数据

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

  1. # Tests\Validate\Validator\JsonTest::baseUseProvider
  2. public function baseUseProvider(): array
  3. {
  4. return [
  5. ['"abc"'],
  6. ['{"foo":"bar"}'],
  7. [new TestJson()],
  8. ];
  9. }

\Tests\Validate\Validator\TestJson 声明如下

  1. namespace Tests\Validate\Validator;
  2. class TestJson
  3. {
  4. public function __toString()
  5. {
  6. return '{"hello":"world"}';
  7. }
  8. }

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

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

未验证通过的数据

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

  1. # Tests\Validate\Validator\JsonTest::badProvider
  2. public function badProvider(): array
  3. {
  4. return [
  5. ['not numeric'],
  6. [[]],
  7. [new stdClass()],
  8. [['foo', 'bar']],
  9. [[1, 2]],
  10. ['Foo'],
  11. ['hEllo'],
  12. [null],
  13. ];
  14. }

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

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