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/tests/Symfony/Tests/Component/Validator/Constraints/MaxLengthValidatorTest.php

99 lines
2.7 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\Tests\Component\Validator;
use Symfony\Component\Validator\Constraints\MaxLength;
use Symfony\Component\Validator\Constraints\MaxLengthValidator;
class MaxLengthValidatorTest extends \PHPUnit_Framework_TestCase
{
protected $validator;
protected function setUp()
{
$this->validator = new MaxLengthValidator();
}
public function testNullIsValid()
{
$this->assertTrue($this->validator->isValid(null, new MaxLength(array('limit' => 5))));
}
public function testEmptyStringIsValid()
{
$this->assertTrue($this->validator->isValid('', new MaxLength(array('limit' => 5))));
}
public function testExpectsStringCompatibleType()
{
$this->setExpectedException('Symfony\Component\Validator\Exception\UnexpectedTypeException');
$this->validator->isValid(new \stdClass(), new MaxLength(array('limit' => 5)));
}
/**
* @dataProvider getValidValues
*/
public function testValidValues($value, $skip = false)
{
if (!$skip) {
$constraint = new MaxLength(array('limit' => 5));
$this->assertTrue($this->validator->isValid($value, $constraint));
}
}
public function getValidValues()
{
return array(
array(12345),
array('12345'),
array('üüüüü', !function_exists('mb_strlen')),
array('ééééé', !function_exists('mb_strlen')),
);
}
/**
* @dataProvider getInvalidValues
*/
public function testInvalidValues($value, $skip = false)
{
if (!$skip) {
$constraint = new MaxLength(array('limit' => 5));
$this->assertFalse($this->validator->isValid($value, $constraint));
}
}
public function getInvalidValues()
{
return array(
array(123456),
array('123456'),
array('üüüüüü', !function_exists('mb_strlen')),
array('éééééé', !function_exists('mb_strlen')),
);
}
public function testMessageIsSet()
{
$constraint = new MaxLength(array(
'limit' => 5,
'message' => 'myMessage'
));
$this->assertFalse($this->validator->isValid('123456', $constraint));
$this->assertEquals($this->validator->getMessageTemplate(), 'myMessage');
$this->assertEquals($this->validator->getMessageParameters(), array(
'{{ value }}' => '123456',
'{{ limit }}' => 5,
));
}
}