
| Current Path : /var/www/html/ift/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/html/ift/vendor/symfony/validator/Tests/Constraints/TimeValidatorTest.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\Time;
use Symfony\Component\Validator\Constraints\TimeValidator;
use Symfony\Component\Validator\Test\ConstraintValidatorTestCase;
class TimeValidatorTest extends ConstraintValidatorTestCase
{
protected function createValidator()
{
return new TimeValidator();
}
public function testNullIsValid()
{
$this->validator->validate(null, new Time());
$this->assertNoViolation();
}
public function testEmptyStringIsValid()
{
$this->validator->validate('', new Time());
$this->assertNoViolation();
}
public function testDateTimeClassIsValid()
{
$this->validator->validate(new \DateTime(), new Time());
$this->assertNoViolation();
}
public function testExpectsStringCompatibleType()
{
$this->expectException('Symfony\Component\Validator\Exception\UnexpectedTypeException');
$this->validator->validate(new \stdClass(), new Time());
}
/**
* @dataProvider getValidTimes
*/
public function testValidTimes($time)
{
$this->validator->validate($time, new Time());
$this->assertNoViolation();
}
public function getValidTimes()
{
return [
['01:02:03'],
['00:00:00'],
['23:59:59'],
];
}
/**
* @dataProvider getInvalidTimes
*/
public function testInvalidTimes($time, $code)
{
$constraint = new Time([
'message' => 'myMessage',
]);
$this->validator->validate($time, $constraint);
$this->buildViolation('myMessage')
->setParameter('{{ value }}', '"'.$time.'"')
->setCode($code)
->assertRaised();
}
public function getInvalidTimes()
{
return [
['foobar', Time::INVALID_FORMAT_ERROR],
['foobar 12:34:56', Time::INVALID_FORMAT_ERROR],
['12:34:56 foobar', Time::INVALID_FORMAT_ERROR],
['00:00', Time::INVALID_FORMAT_ERROR],
['24:00:00', Time::INVALID_TIME_ERROR],
['00:60:00', Time::INVALID_TIME_ERROR],
['00:00:60', Time::INVALID_TIME_ERROR],
];
}
public function testDateTimeImmutableIsValid()
{
$this->validator->validate(new \DateTimeImmutable(), new Time());
$this->assertNoViolation();
}
}