103 lines
2.4 KiB
PHP
103 lines
2.4 KiB
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of the Kimai time-tracking app.
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace App\Tests\Validator\Constraints;
|
|
|
|
use App\Validator\Constraints\Duration;
|
|
use App\Validator\Constraints\DurationValidator;
|
|
use Symfony\Component\Validator\Constraints\NotBlank;
|
|
use Symfony\Component\Validator\Constraints\Regex;
|
|
use Symfony\Component\Validator\Exception\UnexpectedTypeException;
|
|
use Symfony\Component\Validator\Test\ConstraintValidatorTestCase;
|
|
|
|
/**
|
|
* @covers \App\Validator\Constraints\DurationValidator
|
|
*/
|
|
class DurationValidatorTest extends ConstraintValidatorTestCase
|
|
{
|
|
protected function createValidator()
|
|
{
|
|
return new DurationValidator();
|
|
}
|
|
|
|
public function getValidData()
|
|
{
|
|
return [
|
|
['99s'],
|
|
['2h'],
|
|
['38m'],
|
|
['2h38m'],
|
|
['2h38m17s'],
|
|
['1h96m137s'],
|
|
[''],
|
|
['0'],
|
|
[null],
|
|
[0],
|
|
[11257200],
|
|
['13:27'],
|
|
['13:27:54'],
|
|
['12:87:54'],
|
|
['3127:00:00'],
|
|
['3127:00'],
|
|
[48474],
|
|
];
|
|
}
|
|
|
|
public function testConstraintIsInvalid()
|
|
{
|
|
$this->expectException(UnexpectedTypeException::class);
|
|
|
|
$this->validator->validate('foo', new NotBlank());
|
|
}
|
|
|
|
/**
|
|
* @dataProvider getValidData
|
|
* @param string $input
|
|
*/
|
|
public function testConstraintWithValidData($input)
|
|
{
|
|
$constraint = new Duration();
|
|
$this->validator->validate($input, $constraint);
|
|
$this->assertNoViolation();
|
|
}
|
|
|
|
public function getInvalidData()
|
|
{
|
|
return [
|
|
['13-13'],
|
|
['13.13'],
|
|
['3127::00'],
|
|
['3127:00:'],
|
|
[':3127:00'],
|
|
['::3127'],
|
|
['foo'],
|
|
];
|
|
}
|
|
|
|
/**
|
|
* @dataProvider getInvalidData
|
|
* @param mixed $input
|
|
*/
|
|
public function testValidationError($input)
|
|
{
|
|
$constraint = new Duration([
|
|
'message' => 'myMessage',
|
|
]);
|
|
|
|
$this->validator->validate($input, $constraint);
|
|
|
|
$expectedFormat = \is_string($input) ? '"' . $input . '"' : $input;
|
|
|
|
$this->buildViolation('myMessage')
|
|
->setParameter('{{ value }}', $expectedFormat)
|
|
->setCode(Regex::REGEX_FAILED_ERROR)
|
|
->assertRaised();
|
|
}
|
|
}
|