You are here

public function AbstractValidatorTest::testValidate in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/validator/Tests/Validator/AbstractValidatorTest.php \Symfony\Component\Validator\Tests\Validator\AbstractValidatorTest::testValidate()

File

vendor/symfony/validator/Tests/Validator/AbstractValidatorTest.php, line 73

Class

AbstractValidatorTest
@since 2.5

Namespace

Symfony\Component\Validator\Tests\Validator

Code

public function testValidate() {
  $test = $this;
  $callback = function ($value, ExecutionContextInterface $context) use ($test) {
    $test
      ->assertNull($context
      ->getClassName());
    $test
      ->assertNull($context
      ->getPropertyName());
    $test
      ->assertSame('', $context
      ->getPropertyPath());
    $test
      ->assertSame('Group', $context
      ->getGroup());
    $test
      ->assertSame('Bernhard', $context
      ->getRoot());
    $test
      ->assertSame('Bernhard', $context
      ->getValue());
    $test
      ->assertSame('Bernhard', $value);
    $context
      ->addViolation('Message %param%', array(
      '%param%' => 'value',
    ));
  };
  $constraint = new Callback(array(
    'callback' => $callback,
    'groups' => 'Group',
  ));
  $violations = $this
    ->validate('Bernhard', $constraint, 'Group');

  /* @var ConstraintViolationInterface[] $violations */
  $this
    ->assertCount(1, $violations);
  $this
    ->assertSame('Message value', $violations[0]
    ->getMessage());
  $this
    ->assertSame('Message %param%', $violations[0]
    ->getMessageTemplate());
  $this
    ->assertSame(array(
    '%param%' => 'value',
  ), $violations[0]
    ->getParameters());
  $this
    ->assertSame('', $violations[0]
    ->getPropertyPath());
  $this
    ->assertSame('Bernhard', $violations[0]
    ->getRoot());
  $this
    ->assertSame('Bernhard', $violations[0]
    ->getInvalidValue());
  $this
    ->assertNull($violations[0]
    ->getPlural());
  $this
    ->assertNull($violations[0]
    ->getCode());
}