Skip to content

Commit

Permalink
[Validator] Fixed Choice when an empty array is used in the "choices"…
Browse files Browse the repository at this point in the history
… option
  • Loading branch information
webmozart committed Apr 22, 2015
1 parent f48cc1b commit a5a41b2
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 1 deletion.
Expand Up @@ -36,7 +36,7 @@ public function validate($value, Constraint $constraint)
throw new UnexpectedTypeException($constraint, __NAMESPACE__.'\Choice');
}

if (!$constraint->choices && !$constraint->callback) {
if (!is_array($constraint->choices) && !$constraint->callback) {
throw new ConstraintDefinitionException('Either "choices" or "callback" must be specified on constraint Choice');
}

Expand Down
Expand Up @@ -150,6 +150,23 @@ public function testInvalidChoice()
->assertRaised();
}

public function testInvalidChoiceEmptyChoices()
{
$constraint = new Choice(array(
// May happen when the choices are provided dynamically, e.g. from
// the DB or the model
'choices' => array(),
'message' => 'myMessage',
));

$this->validator->validate('baz', $constraint);

$this->buildViolation('myMessage')
->setParameter('{{ value }}', '"baz"')
->setCode(Choice::NO_SUCH_CHOICE_ERROR)
->assertRaised();
}

public function testInvalidChoiceMultiple()
{
$constraint = new Choice(array(
Expand Down

0 comments on commit a5a41b2

Please sign in to comment.