respect-validation/tests/unit/Rules/NfeAccessKeyTest.php
2018-12-05 08:57:05 +01:00

108 lines
2.9 KiB
PHP

<?php
/*
* This file is part of Respect/Validation.
*
* (c) Alexandre Gomes Gaigalas <alexandre@gaigalas.net>
*
* For the full copyright and license information, please view the "LICENSE.md"
* file that was distributed with this source code.
*/
declare(strict_types=1);
namespace Respect\Validation\Rules;
use Respect\Validation\Test\TestCase;
/**
* @group rule
* @covers \Respect\Validation\Exceptions\NfeAccessKeyException
* @covers \Respect\Validation\Rules\NfeAccessKey
*
* @author Andrey Knupp Vital <andreykvital@gmail.com>
* @author Gabriel Caruso <carusogabriel34@gmail.com>
* @author Henrique Moody <henriquemoody@gmail.com>
*/
class NfeAccessKeyTest extends TestCase
{
protected $nfeValidator;
protected function setUp(): void
{
$this->nfeValidator = new NfeAccessKey();
}
/**
* @dataProvider validAccessKeyProvider
*
* @test
*/
public function validAccessKey($aK): void
{
$this->nfeValidator->assert($aK);
self::assertTrue($this->nfeValidator->__invoke($aK));
$this->nfeValidator->check($aK);
}
/**
* @dataProvider invalidAccessKeyProvider
* @expectedException \Respect\Validation\Exceptions\NfeAccessKeyException
*
* @test
*/
public function invalidAccessKey($aK): void
{
$this->nfeValidator->assert($aK);
}
/**
* @dataProvider invalidAccessKeyLengthProvider
* @expectedException \Respect\Validation\Exceptions\NfeAccessKeyException
*
* @test
*/
public function invalidLengthCnh($aK): void
{
$this->nfeValidator->assert($aK);
}
public function validAccessKeyProvider()
{
return [
['52060433009911002506550120000007800267301615'],
];
}
public function invalidAccessKeyProvider()
{
return [
['31841136830118868211870485416765268625116906'],
['21470801245862435081451225624565260861852679'],
['45644318091447671194616059650873352394885852'],
['17214281716057582143671174314277906696193888'],
['56017280182977836779696364362142515138726654'],
['90157126614010548506235171976891004177042525'],
['78457064241662300187501877048374851128754067'],
['39950148079977322431982386613620895568235903'],
['90820939577654114875253907311677136672761216'],
];
}
public function invalidAccessKeyLengthProvider()
{
return [
['11145573386990252067204852181837301'],
['6209433147444876'],
['00745996227609395385255721262102'],
['58215798856653'],
['24149625439084262707824706699374326'],
['163907274335'],
['67229454773008929675906894698'],
['5858836670181917762140106857095788313119136'],
['6098412281885524361833754087461339281130'],
['9025299113310221'],
];
}
}