respect-validation/tests/unit/Rules/PublicDomainSuffixTest.php
Danilo Correa 719f12a424
Increase code coverage of some rules
We were not thoroughly testing quite a few rules, especially the
constructor of some of them.

This commit increases the code coverage, ensuring almost every single
line in the "Rules" namespace is covered.
2024-04-23 16:01:55 +02:00

49 lines
1.2 KiB
PHP

<?php
/*
* Copyright (c) Alexandre Gomes Gaigalas <alganet@gmail.com>
* SPDX-License-Identifier: MIT
*/
declare(strict_types=1);
namespace Respect\Validation\Rules;
use PHPUnit\Framework\Attributes\CoversClass;
use PHPUnit\Framework\Attributes\Group;
use Respect\Validation\Test\RuleTestCase;
use stdClass;
#[Group('rule')]
#[CoversClass(PublicDomainSuffix::class)]
final class PublicDomainSuffixTest extends RuleTestCase
{
/** @return iterable<array{PublicDomainSuffix, mixed}> */
public static function providerForValidInput(): iterable
{
$rule = new PublicDomainSuffix();
return [
[$rule, ''],
[$rule, 'co.uk'],
[$rule, 'nom.br'],
[$rule, 'WWW.CK'],
];
}
/** @return iterable<array{PublicDomainSuffix, mixed}> */
public static function providerForInvalidInput(): iterable
{
$rule = new PublicDomainSuffix();
return [
[$rule, []],
[$rule, null],
[$rule, new stdClass()],
[$rule, 'NONONONONONONONONON'],
[$rule, 'NONONONONONONONONON.uk'],
[$rule, 'invalid.com'],
[$rule, 'tk'],
];
}
}