
| Current Path : /var/www/html1/vendor/symfony/validator/Tests/Constraints/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : /var/www/html1/vendor/symfony/validator/Tests/Constraints/LuhnValidatorTest.php |
<?php
/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <fabien@symfony.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Symfony\Component\Validator\Tests\Constraints;
use Symfony\Component\Validator\Constraints\Luhn;
use Symfony\Component\Validator\Constraints\LuhnValidator;
use Symfony\Component\Validator\Test\ConstraintValidatorTestCase;
class LuhnValidatorTest extends ConstraintValidatorTestCase
{
protected function createValidator()
{
return new LuhnValidator();
}
public function testNullIsValid()
{
$this->validator->validate(null, new Luhn());
$this->assertNoViolation();
}
public function testEmptyStringIsValid()
{
$this->validator->validate('', new Luhn());
$this->assertNoViolation();
}
/**
* @dataProvider getValidNumbers
*/
public function testValidNumbers($number)
{
$this->validator->validate($number, new Luhn());
$this->assertNoViolation();
}
public function getValidNumbers()
{
return [
['42424242424242424242'],
['378282246310005'],
['371449635398431'],
['378734493671000'],
['5610591081018250'],
['30569309025904'],
['38520000023237'],
['6011111111111117'],
['6011000990139424'],
['3530111333300000'],
['3566002020360505'],
['5555555555554444'],
['5105105105105100'],
['4111111111111111'],
['4012888888881881'],
['4222222222222'],
['5019717010103742'],
['6331101999990016'],
];
}
/**
* @dataProvider getInvalidNumbers
*/
public function testInvalidNumbers($number, $code)
{
$constraint = new Luhn([
'message' => 'myMessage',
]);
$this->validator->validate($number, $constraint);
$this->buildViolation('myMessage')
->setParameter('{{ value }}', '"'.$number.'"')
->setCode($code)
->assertRaised();
}
public function getInvalidNumbers()
{
return [
['1234567812345678', Luhn::CHECKSUM_FAILED_ERROR],
['4222222222222222', Luhn::CHECKSUM_FAILED_ERROR],
['0000000000000000', Luhn::CHECKSUM_FAILED_ERROR],
['000000!000000000', Luhn::INVALID_CHARACTERS_ERROR],
['42-22222222222222', Luhn::INVALID_CHARACTERS_ERROR],
];
}
/**
* @dataProvider getInvalidTypes
*/
public function testInvalidTypes($number)
{
$this->expectException('Symfony\Component\Validator\Exception\UnexpectedTypeException');
$constraint = new Luhn();
$this->validator->validate($number, $constraint);
}
public function getInvalidTypes()
{
return [
[0],
[123],
[42424242424242424242],
[378282246310005],
[371449635398431],
];
}
}