public function AbstractValidatorTest::testValidateCustomGroupWhenDefaultGroupWasReplaced in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/symfony/validator/Tests/Validator/AbstractValidatorTest.php \Symfony\Component\Validator\Tests\Validator\AbstractValidatorTest::testValidateCustomGroupWhenDefaultGroupWasReplaced()
File
- vendor/
symfony/ validator/ Tests/ Validator/ AbstractValidatorTest.php, line 1184
Class
- AbstractValidatorTest
- @since 2.5
Namespace
Symfony\Component\Validator\Tests\ValidatorCode
public function testValidateCustomGroupWhenDefaultGroupWasReplaced() {
$entity = new Entity();
$callback1 = function ($value, ExecutionContextInterface $context) {
$context
->addViolation('Violation in other group');
};
$callback2 = function ($value, ExecutionContextInterface $context) {
$context
->addViolation('Violation in group sequence');
};
$this->metadata
->addConstraint(new Callback(array(
'callback' => $callback1,
'groups' => 'Other Group',
)));
$this->metadata
->addConstraint(new Callback(array(
'callback' => $callback2,
'groups' => 'Group 1',
)));
$sequence = new GroupSequence(array(
'Group 1',
'Entity',
));
$this->metadata
->setGroupSequence($sequence);
$violations = $this
->validate($entity, null, 'Other Group');
/* @var ConstraintViolationInterface[] $violations */
$this
->assertCount(1, $violations);
$this
->assertSame('Violation in other group', $violations[0]
->getMessage());
}