respect-validation/tests/unit/Rules/InTest.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

58 lines
1.6 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;
#[Group('rule')]
#[CoversClass(In::class)]
final class InTest extends RuleTestCase
{
/** @return iterable<array{In, mixed}> */
public static function providerForValidInput(): iterable
{
return [
[new In(''), ''],
[new In([null]), null],
[new In(['0']), '0'],
[new In([0]), 0],
[new In(['foo', 'bar']), 'foo'],
[new In('barfoobaz'), 'foo'],
[new In('foobarbaz'), 'foo'],
[new In('barbazfoo'), 'foo'],
[new In([1, 2, 3]), '1'],
[new In(['1', 2, 3], true), '1'],
];
}
/** @return iterable<array{In, mixed}> */
public static function providerForInvalidInput(): iterable
{
return [
[new In('0', true), 'abc'],
[new In('0'), null],
[new In(0, true), null],
[new In('', true), null],
[new In([], true), null],
[new In('barfoobaz'), ''],
[new In('barfoobaz'), null],
[new In('barfoobaz'), 0],
[new In('barfoobaz'), '0'],
[new In(['foo', 'bar']), 'bat'],
[new In('barfaabaz'), 'foo'],
[new In('faabarbaz'), 'foo'],
[new In('baabazfaa'), 'foo'],
[new In([1, 2, 3], true), '1'],
];
}
}