mirror of
https://github.com/Respect/Validation.git
synced 2026-03-15 14:55:44 +01:00
I ran the `bin/console spdx --fix` with different strategies for different files. For most of the core classes, since they've been drastically rebuilt, I've run it with the `git-blame` strategy, for for the `src/Validators`, in which the API changed completely but the logic remains the same, I use the `git-log` strategy.
59 lines
1.8 KiB
PHP
59 lines
1.8 KiB
PHP
<?php
|
|
|
|
/*
|
|
* SPDX-License-Identifier: MIT
|
|
* SPDX-FileCopyrightText: (c) Respect Project Contributors
|
|
* SPDX-FileContributor: Alexandre Gomes Gaigalas <alganet@gmail.com>
|
|
* SPDX-FileContributor: Danilo Correa <danilosilva87@gmail.com>
|
|
* SPDX-FileContributor: Gabriel Caruso <carusogabriel34@gmail.com>
|
|
* SPDX-FileContributor: Henrique Moody <henriquemoody@gmail.com>
|
|
*/
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Respect\Validation\Validators;
|
|
|
|
use PHPUnit\Framework\Attributes\CoversClass;
|
|
use PHPUnit\Framework\Attributes\Group;
|
|
use Respect\Validation\Test\RuleTestCase;
|
|
|
|
use function uniqid;
|
|
|
|
#[Group('validator')]
|
|
#[CoversClass(Version::class)]
|
|
final class VersionTest extends RuleTestCase
|
|
{
|
|
/** @return iterable<array{Version, mixed}> */
|
|
public static function providerForValidInput(): iterable
|
|
{
|
|
$sut = new Version();
|
|
|
|
return [
|
|
'1.0.0' => [$sut, '1.0.0'],
|
|
'1.0.0-alpha' => [$sut, '1.0.0-alpha'],
|
|
'1.0.0-alpha.1' => [$sut, '1.0.0-alpha.1'],
|
|
'1.0.0-0.3.7' => [$sut, '1.0.0-0.3.7'],
|
|
'1.0.0-x.7.z.92' => [$sut, '1.0.0-x.7.z.92'],
|
|
'1.3.7+build.2.b8f12d7' => [$sut, '1.3.7+build.2.b8f12d7'],
|
|
'1.3.7-rc.1' => [$sut, '1.3.7-rc.1'],
|
|
];
|
|
}
|
|
|
|
/** @return iterable<array{Version, mixed}> */
|
|
public static function providerForInvalidInput(): iterable
|
|
{
|
|
$sut = new Version();
|
|
|
|
return [
|
|
'int' => [$sut, 1],
|
|
'float' => [$sut, 1.2],
|
|
'empty' => [$sut, ''],
|
|
'1.3.7--' => [$sut, '1.3.7--'],
|
|
'1.3.7++' => [$sut, '1.3.7++'],
|
|
'random string' => [$sut, uniqid()],
|
|
'1.2.3.4' => [$sut, '1.2.3.4'],
|
|
'1.2.3.4-beta' => [$sut, '1.2.3.4-beta'],
|
|
'beta without version' => [$sut, 'beta'],
|
|
];
|
|
}
|
|
}
|