mirror of
https://github.com/Respect/Validation.git
synced 2026-03-16 07:15:45 +01:00
This commit introduces REUSE compliance by annotating all files with SPDX information and placing the reused licences in the LICENSES folder. We additionally removed the docheader tool which is made obsolete by this change. The main LICENSE and copyright text of the project is now not under my personal name anymore, and it belongs to "The Respect Project Contributors" instead. This change restores author names to several files, giving the appropriate attribution for contributions.
74 lines
2.4 KiB
PHP
74 lines
2.4 KiB
PHP
<?php
|
|
|
|
/*
|
|
* SPDX-License-Identifier: MIT
|
|
* SPDX-FileCopyrightText: (c) Respect Project Contributors
|
|
* SPDX-FileContributor: Alexandre Gomes Gaigalas <alganet@gmail.com>
|
|
* SPDX-FileContributor: Carlos André Ferrari <caferrari@gmail.com>
|
|
* SPDX-FileContributor: Danilo Correa <danilosilva87@gmail.com>
|
|
* SPDX-FileContributor: Gabriel Caruso <carusogabriel34@gmail.com>
|
|
* SPDX-FileContributor: Henrique Moody <henriquemoody@gmail.com>
|
|
* SPDX-FileContributor: Nick Lombard <github@jigsoft.co.za>
|
|
* SPDX-FileContributor: William Espindola <oi@williamespindola.com.br>
|
|
*/
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Respect\Validation\Validators;
|
|
|
|
use PHPUnit\Framework\Attributes\CoversClass;
|
|
use PHPUnit\Framework\Attributes\Group;
|
|
use PHPUnit\Framework\Attributes\Test;
|
|
use Respect\Validation\Exceptions\InvalidValidatorException;
|
|
use Respect\Validation\Test\RuleTestCase;
|
|
|
|
#[Group('validator')]
|
|
#[CoversClass(Base::class)]
|
|
final class BaseTest extends RuleTestCase
|
|
{
|
|
#[Test]
|
|
public function itShouldThrowsExceptionWhenBaseIsNotValid(): void
|
|
{
|
|
$this->expectException(InvalidValidatorException::class);
|
|
$this->expectExceptionMessage('a base between 1 and 62 is required');
|
|
|
|
new Base(63);
|
|
}
|
|
|
|
/** @return iterable<array{Base, mixed}> */
|
|
public static function providerForValidInput(): iterable
|
|
{
|
|
return [
|
|
[new Base(2), '011010001'],
|
|
[new Base(3), '0120122001'],
|
|
[new Base(8), '01234567520'],
|
|
[new Base(16), '012a34f5675c20d'],
|
|
[new Base(20), '012ah34f5675hic20dj'],
|
|
[new Base(50), '012ah34f56A75FGhic20dj'],
|
|
[new Base(62), 'Z01xSsg5675hic20dj'],
|
|
[new Base(2, 'xy'), 'xyyxyxxy'],
|
|
[new Base(3, 'pfg'), 'gfpffp'],
|
|
];
|
|
}
|
|
|
|
/** @return iterable<array{Base, mixed}> */
|
|
public static function providerForInvalidInput(): iterable
|
|
{
|
|
return [
|
|
[new Base(2), ''],
|
|
[new Base(3), ''],
|
|
[new Base(8), ''],
|
|
[new Base(16), ''],
|
|
[new Base(20), ''],
|
|
[new Base(50), ''],
|
|
[new Base(62), ''],
|
|
[new Base(2), '01210103001'],
|
|
[new Base(3), '0120125f2001'],
|
|
[new Base(8), '01234dfZ567520'],
|
|
[new Base(16), '012aXS34f5675c20d'],
|
|
[new Base(20), '012ahZX34f5675hic20dj'],
|
|
[new Base(50), '012ahGZ34f56A75FGhic20dj'],
|
|
[new Base(61), 'Z01xSsg5675hic20dj'],
|
|
];
|
|
}
|
|
}
|