验证器.验证 IP 许可
Testing Is Documentation
Uses
php
<?php
use Leevel\Kernel\Utils\Api;
use Leevel\Validate\Validator;
use PHPUnit\Framework\Attributes\DataProvider;
验证通过的数据
以下是通过的校验数据示例。
php
# Tests\Validate\Validator\DenyIpTest::baseUseProvider
public static function baseUseProvider(): array
{
return [
['8.8.8.10', '8.8.8.8,127.0.0.1'],
['127.0.5.1', '8.8.8.8,127.0.0.1'],
];
}
上面的数据是测试的数据提供者。
php
public function testBaseUse($value, string $param): void
{
$validate = new Validator(
[
'name' => $value,
],
[
'name' => 'deny_ip:'.$param,
]
);
self::assertTrue($validate->success());
}
未验证通过的数据
以下是未通过的校验数据示例。
php
# Tests\Validate\Validator\DenyIpTest::badProvider
public static function badProvider(): array
{
return [
['8.8.8.8', '8.8.8.8,127.0.0.1'],
['127.0.0.1', '8.8.8.8,127.0.0.1'],
[new \stdClass(), '8.8.8.8,127.0.0.1'],
[[1, 2], '8.8.8.8,127.0.0.1'],
[[[], []], '8.8.8.8,127.0.0.1'],
[['foo', 'bar'], '8.8.8.8,127.0.0.1'],
[true, '8.8.8.8,127.0.0.1'],
[false, '8.8.8.8,127.0.0.1'],
];
}
上面的数据是测试的数据提供者。
php
public function testBad($value, string $param): void
{
$validate = new Validator(
[
'name' => $value,
],
[
'name' => 'deny_ip:'.$param,
]
);
self::assertFalse($validate->success());
}
deny_ip 参数缺失
php
public function testMissParam(): void
{
$this->expectException(\InvalidArgumentException::class);
$this->expectExceptionMessage(
'Missing the first element of param.'
);
$validate = new Validator(
[
'name' => '',
],
[
'name' => 'deny_ip',
]
);
$validate->success();
}