respect-validation/tests/unit/Rules/BaseTest.php

67 lines
1.8 KiB
PHP
Raw Normal View History

<?php
/*
* Copyright (c) Alexandre Gomes Gaigalas <alganet@gmail.com>
* SPDX-License-Identifier: MIT
*/
declare(strict_types=1);
2015-06-08 16:47:14 +02:00
namespace Respect\Validation\Rules;
use Respect\Validation\Test\RuleTestCase;
2017-11-04 11:21:40 +01:00
/**
* @group rule
*
2017-02-04 14:01:14 +01:00
* @covers \Respect\Validation\Rules\Base
*
* @author Carlos André Ferrari <caferrari@gmail.com>
* @author Gabriel Caruso <carusogabriel34@gmail.com>
* @author Henrique Moody <henriquemoody@gmail.com>
* @author William Espindola <oi@williamespindola.com.br>
*/
final class BaseTest extends RuleTestCase
{
/**
* {@inheritDoc}
*/
public static function providerForValidInput(): array
{
2015-10-18 03:44:47 +02:00
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'],
2015-10-18 03:44:47 +02:00
];
}
/**
* {@inheritDoc}
*/
public static function providerForInvalidInput(): array
{
2015-10-18 03:44:47 +02:00
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'],
2015-10-18 03:44:47 +02:00
];
}
}