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

61 lines
1.8 KiB
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\Tests\Component\Validator;
use Symfony\Component\Validator\Constraint;
use Symfony\Component\Validator\ConstraintValidator;
class ConstraintValidatorTest_Validator extends ConstraintValidator
{
private $message;
private $params;
public function __construct($message, array $params = array())
{
$this->message = $message;
$this->params = $params;
}
public function isValid($value, Constraint $constraint)
{
$this->setMessage($this->message, $this->params);
}
}
class ConstraintValidatorTest extends \PHPUnit_Framework_TestCase
{
public function testSetMessage()
{
$context = $this->getMock('Symfony\Component\Validator\ExecutionContext', array(), array(), '', false);
$constraint = $this->getMock('Symfony\Component\Validator\Constraint', array(), array(), '', false);
$validator = new ConstraintValidatorTest_Validator('error message', array('foo' => 'bar'));
$validator->initialize($context);
$context->expects($this->once())
->method('addViolation')
->with('error message', array('foo' => 'bar'));
$validator->isValid('bam', $constraint);
}
/**
* @expectedException Symfony\Component\Validator\Exception\ValidatorException
*/
public function testSetMessageFailsIfNoContextSet()
{
$constraint = $this->getMock('Symfony\Component\Validator\Constraint', array(), array(), '', false);
$validator = new ConstraintValidatorTest_Validator('error message', array('foo' => 'bar'));
$validator->isValid('bam', $constraint);
}
}