验证器.验证是否为布尔值

Testing Is Documentation

tests/Validate/Validator/BooleanTest.php验证器.验证是否为布尔值 - 图1

Uses

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

验证通过的数据

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

  1. # Tests\Validate\Validator\BooleanTest::baseUseProvider
  2. public function baseUseProvider(): array
  3. {
  4. return [
  5. [true],
  6. [false],
  7. [0],
  8. [1],
  9. ['0'],
  10. ['1'],
  11. ['t'],
  12. ['f'],
  13. ];
  14. }

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

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

未验证通过的数据

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

  1. # Tests\Validate\Validator\BooleanTest::badProvider
  2. public function badProvider(): array
  3. {
  4. return [
  5. [new stdClass()],
  6. [['foo', 'bar']],
  7. [[1, 2]],
  8. ['this is a string'],
  9. [0.52148389816284],
  10. ['0.0'],
  11. ['-0.0'],
  12. ['foo'],
  13. ['bar'],
  14. ['hello'],
  15. ['world'],
  16. ];
  17. }

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

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