This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
symfony/src/Symfony/Component/Validator/Tests/Constraints/TimeValidatorTest.php

107 lines
2.4 KiB
PHP
Raw Normal View History

<?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;
2014-09-22 11:18:36 +01:00
use Symfony\Component\Validator\Validation;
class TimeValidatorTest extends AbstractConstraintValidatorTest
{
protected function getApiVersion()
{
return Validation::API_VERSION_2_5;
}
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();
}
/**
* @expectedException \Symfony\Component\Validator\Exception\UnexpectedTypeException
*/
public function testExpectsStringCompatibleType()
{
$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 array(
array('01:02:03'),
array('00:00:00'),
array('23:59:59'),
);
}
/**
* @dataProvider getInvalidTimes
*/
public function testInvalidTimes($time)
{
$constraint = new Time(array(
2014-09-21 19:53:12 +01:00
'message' => 'myMessage',
));
$this->validator->validate($time, $constraint);
$this->buildViolation('myMessage')
->setParameter('{{ value }}', '"'.$time.'"')
->assertRaised();
}
public function getInvalidTimes()
{
return array(
array('foobar'),
array('foobar 12:34:56'),
array('12:34:56 foobar'),
array('00:00'),
array('24:00:00'),
array('00:60:00'),
array('00:00:60'),
);
}
2011-06-08 18:56:59 +01:00
}