mirror of
https://github.com/Respect/Validation.git
synced 2026-03-17 15:50:03 +01:00
49 lines
1.5 KiB
PHP
49 lines
1.5 KiB
PHP
<?php
|
|
|
|
/*
|
|
* Copyright (c) Alexandre Gomes Gaigalas <alganet@gmail.com>
|
|
* SPDX-License-Identifier: MIT
|
|
*/
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Respect\Validation\Validators;
|
|
|
|
use PHPUnit\Framework\Attributes\CoversClass;
|
|
use PHPUnit\Framework\Attributes\Group;
|
|
use Respect\Validation\Test\RuleTestCase;
|
|
|
|
#[Group('validator')]
|
|
#[CoversClass(StartsWith::class)]
|
|
final class StartsWithTest extends RuleTestCase
|
|
{
|
|
/** @return iterable<array{StartsWith, mixed}> */
|
|
public static function providerForValidInput(): iterable
|
|
{
|
|
return [
|
|
[new StartsWith('foo'), ['foo', 'bar']],
|
|
[new StartsWith('foo') ,'FOObarbaz'],
|
|
[new StartsWith('foo') , 'foobarbaz'],
|
|
[new StartsWith('foo') ,'foobazfoo'],
|
|
[new StartsWith('1'), [1, 2, 3]],
|
|
[new StartsWith('1', true), ['1', 2, 3]],
|
|
];
|
|
}
|
|
|
|
/** @return iterable<array{StartsWith, mixed}> */
|
|
public static function providerForInvalidInput(): iterable
|
|
{
|
|
return [
|
|
[new StartsWith(123), 123],
|
|
[new StartsWith(123, true), 123],
|
|
[new StartsWith('foo'), ''],
|
|
[new StartsWith('bat'), ['foo', 'bar']],
|
|
[new StartsWith('foo'), 'barfaabaz'],
|
|
[new StartsWith('foo', true), 'FOObarbaz'],
|
|
[new StartsWith('foo'), 'faabarbaz'],
|
|
[new StartsWith('foo'), 'baabazfaa'],
|
|
[new StartsWith('foo'), 'baafoofaa'],
|
|
[new StartsWith('1', true), [1, '1', 3]],
|
|
];
|
|
}
|
|
}
|