验证器.是否为大写英文字母

Testing Is Documentation

tests/Validate/Validator/AlphaUpperTest.php验证器.是否为大写英文字母 - 图1

Uses

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

验证通过的数据

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

  1. # Tests\Validate\Validator\AlphaUpperTest::baseUseProvider
  2. public function baseUseProvider(): array
  3. {
  4. return [
  5. ['ABC'],
  6. ];
  7. }

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

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

未验证通过的数据

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

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

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

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