验证器.是否为电子邮件

Testing Is Documentation

tests/Validate/Validator/EmailTest.php验证器.是否为电子邮件 - 图1

Uses

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

验证通过的数据

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

  1. # Tests\Validate\Validator\EmailTest::baseUseProvider
  2. public function baseUseProvider(): array
  3. {
  4. return [
  5. ['635750556@qq.com'],
  6. ['helloworld@gmail.com'],
  7. ['foobar@example.com'],
  8. ['foo+bar/hello-world@example.com'],
  9. ];
  10. }

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

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

未验证通过的数据

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

  1. # Tests\Validate\Validator\EmailTest::badProvider
  2. public function badProvider(): array
  3. {
  4. return [
  5. ['hello "@email.com'],
  6. ['foo bar @test.com'],
  7. ['foo bar@test.com'],
  8. ['foobar\t@test.com'],
  9. [['foo' => 'bar']],
  10. ];
  11. }

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

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