respect-validation/tests/unit/Rules/PublicDomainSuffixTest.php
Henrique Moody 5b7ea866e4
Do not allow lowercase country codes
Country codes in ISO 3166-1 should be in uppercase, and the
`AbstractSearcher` should not change the input to search for a value.

While working on this fix, I also discovered that the
"PublicDomainSuffix" rule would throw an exception if it got a
non-scalar value as an input.

Signed-off-by: Henrique Moody <henriquemoody@gmail.com>
2024-02-02 16:55:37 +01:00

55 lines
1.1 KiB
PHP

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