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

59 lines
1.4 KiB
PHP
Raw Normal View History

2017-08-18 13:47:36 +02:00
<?php
/*
* Copyright (c) Alexandre Gomes Gaigalas <alganet@gmail.com>
* SPDX-License-Identifier: MIT
2017-08-18 13:47:36 +02:00
*/
declare(strict_types=1);
2017-08-18 13:47:36 +02:00
namespace Respect\Validation\Rules;
use Respect\Validation\Test\RuleTestCase;
use stdClass;
2017-08-18 13:47:36 +02:00
/**
* @group rule
*
2017-08-18 13:47:36 +02:00
* @covers \Respect\Validation\Rules\Luhn
*
* @author Alexander Gorshkov <mazanax@yandex.ru>
* @author Danilo Correa <danilosilva87@gmail.com>
* @author Henrique Moody <henriquemoody@gmail.com>
2017-08-18 13:47:36 +02:00
*/
final class LuhnTest extends RuleTestCase
2017-08-18 13:47:36 +02:00
{
/**
* {@inheritDoc}
*/
public static function providerForValidInput(): array
2017-08-18 13:47:36 +02:00
{
$rule = new Luhn();
return [
'17 digits string' => [$rule, '2222400041240011'],
'16 digits string' => [$rule, '340316193809364'],
'integer' => [$rule, 6011000990139424],
2017-08-18 13:47:36 +02:00
];
}
/**
* {@inheritDoc}
*/
public static function providerForInvalidInput(): array
2017-08-18 13:47:36 +02:00
{
$rule = new Luhn();
return [
'invalid string' => [$rule, '2222400041240021'],
'invalid integer' => [$rule, 340316193809334],
'float' => [$rule, 222240004124001.1],
'boolean true' => [$rule, true],
'boolean false' => [$rule, false],
'empty' => [$rule, ''],
'object' => [$rule, new stdClass()],
'array' => [$rule, [2222400041240011]],
2017-08-18 13:47:36 +02:00
];
}
}