验证器.验证是否为 URL 地址

Testing Is Documentation

tests/Validate/Validator/UrlTest.php验证器.验证是否为 URL 地址 - 图1

Uses

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

验证通过的数据

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

  1. # Tests\Validate\Validator\UrlTest::baseUseProvider
  2. public function baseUseProvider(): array
  3. {
  4. // http://php.net/manual/en/filter.filters.validate.php#110411
  5. return [
  6. ['http://www.google.com'],
  7. ['http://queryphp.com'],
  8. ['http://baidu.com'],
  9. ['ftp://ftp.is.co.za.example.org/rfc/rfc1808.txt'],
  10. ['gopher://spinaltap.micro.umn.example.edu/00/Weather/California/Los%20Angeles'],
  11. ['http://www.math.uio.no.example.net/faq/compression-faq/part1.html'],
  12. ['mailto:mduerst@ifi.unizh.example.gov'],
  13. ['news:comp.infosystems.www.servers.unix'],
  14. ['telnet://melvyl.ucop.example.edu/'],
  15. ['http://www.ietf.org/rfc/rfc2396.txt'],
  16. ['ldap://[2001:db8::7]/c=GB?objectClass?one'],
  17. ['mailto:John.Doe@example.com'],
  18. ['news:comp.infosystems.www.servers.unix'],
  19. ['telnet://192.0.2.16:80/'],
  20. ];
  21. }

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

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

未验证通过的数据

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

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

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

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