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/NullValidatorTest.php

52 lines
1.2 KiB
PHP
Raw Normal View History

<?php
namespace Symfony\Tests\Component\Validator;
use Symfony\Component\Validator\Constraints\Null;
use Symfony\Component\Validator\Constraints\NullValidator;
class NullValidatorTest extends \PHPUnit_Framework_TestCase
{
protected $validator;
public function setUp()
{
$this->validator = new NullValidator();
}
public function testNullIsValid()
{
$this->assertTrue($this->validator->isValid(null, new Null()));
}
/**
* @dataProvider getInvalidValues
*/
public function testInvalidValues($value)
{
$this->assertFalse($this->validator->isValid($value, new Null()));
}
public function getInvalidValues()
{
return array(
array(0),
array(false),
array(true),
array(''),
);
}
public function testSetMessage()
{
$constraint = new Null(array(
'message' => 'myMessage'
));
$this->assertFalse($this->validator->isValid(1, $constraint));
$this->assertEquals($this->validator->getMessageTemplate(), 'myMessage');
$this->assertEquals($this->validator->getMessageParameters(), array(
'value' => 1,
));
}
}