public function ExecutionContextTest::testAddViolationAtUsesPassedNullValue

File

drupal/core/vendor/symfony/validator/Symfony/Component/Validator/Tests/ExecutionContextTest.php, line 205

Class

ExecutionContextTest

Namespace

Symfony\Component\Validator\Tests

Code

public function testAddViolationAtUsesPassedNullValue() {
  $this->translator
    ->expects($this
    ->once())
    ->method('trans')
    ->with('Error', array(
    'foo' => 'bar',
  ))
    ->will($this
    ->returnValue('Translated error'));
  $this->translator
    ->expects($this
    ->once())
    ->method('transChoice')
    ->with('Choice error', 2, array(
    'foo' => 'bar',
  ))
    ->will($this
    ->returnValue('Translated choice error'));

  // passed null value should override preconfigured value "invalid"
  $this->context
    ->addViolationAt('bam.baz', 'Error', array(
    'foo' => 'bar',
  ), null);
  $this->context
    ->addViolationAt('bam.baz', 'Choice error', array(
    'foo' => 'bar',
  ), null, 2);
  $this
    ->assertEquals(new ConstraintViolationList(array(
    new ConstraintViolation('Translated error', 'Error', array(
      'foo' => 'bar',
    ), 'Root', 'foo.bar.bam.baz', null),
    new ConstraintViolation('Translated choice error', 'Choice error', array(
      'foo' => 'bar',
    ), 'Root', 'foo.bar.bam.baz', null, 2),
  )), $this->context
    ->getViolations());
}