* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Validator\Tests\Constraints; use Symfony\Component\Validator\Constraints\Choice; use Symfony\Component\Validator\Constraints\ChoiceValidator; use Symfony\Component\Validator\Test\ConstraintValidatorTestCase; function choice_callback() { return array('foo', 'bar'); } class ChoiceValidatorTest extends ConstraintValidatorTestCase { protected function createValidator() { return new ChoiceValidator(); } public static function staticCallback() { return array('foo', 'bar'); } public function objectMethodCallback() { return array('foo', 'bar'); } /** * @expectedException \Symfony\Component\Validator\Exception\UnexpectedTypeException */ public function testExpectArrayIfMultipleIsTrue() { $constraint = new Choice(array( 'choices' => array('foo', 'bar'), 'multiple' => true, 'strict' => true, )); $this->validator->validate('asdf', $constraint); } public function testNullIsValid() { $this->validator->validate( null, new Choice( array( 'choices' => array('foo', 'bar'), 'strict' => true, ) ) ); $this->assertNoViolation(); } /** * @expectedException \Symfony\Component\Validator\Exception\ConstraintDefinitionException */ public function testChoicesOrCallbackExpected() { $this->validator->validate('foobar', new Choice(array('strict' => true))); } /** * @expectedException \Symfony\Component\Validator\Exception\ConstraintDefinitionException */ public function testValidCallbackExpected() { $this->validator->validate('foobar', new Choice(array('callback' => 'abcd', 'strict' => true))); } public function testValidChoiceArray() { $constraint = new Choice(array('choices' => array('foo', 'bar'), 'strict' => true)); $this->validator->validate('bar', $constraint); $this->assertNoViolation(); } public function testValidChoiceCallbackFunction() { $constraint = new Choice(array('callback' => __NAMESPACE__.'\choice_callback', 'strict' => true)); $this->validator->validate('bar', $constraint); $this->assertNoViolation(); } public function testValidChoiceCallbackClosure() { $constraint = new Choice( array( 'strict' => true, 'callback' => function () { return array('foo', 'bar'); }, ) ); $this->validator->validate('bar', $constraint); $this->assertNoViolation(); } public function testValidChoiceCallbackStaticMethod() { $constraint = new Choice(array('callback' => array(__CLASS__, 'staticCallback'), 'strict' => true)); $this->validator->validate('bar', $constraint); $this->assertNoViolation(); } public function testValidChoiceCallbackContextMethod() { // search $this for "staticCallback" $this->setObject($this); $constraint = new Choice(array('callback' => 'staticCallback', 'strict' => true)); $this->validator->validate('bar', $constraint); $this->assertNoViolation(); } public function testValidChoiceCallbackContextObjectMethod() { // search $this for "objectMethodCallback" $this->setObject($this); $constraint = new Choice(array('callback' => 'objectMethodCallback', 'strict' => true)); $this->validator->validate('bar', $constraint); $this->assertNoViolation(); } public function testMultipleChoices() { $constraint = new Choice(array( 'choices' => array('foo', 'bar', 'baz'), 'multiple' => true, 'strict' => true, )); $this->validator->validate(array('baz', 'bar'), $constraint); $this->assertNoViolation(); } public function testInvalidChoice() { $constraint = new Choice(array( 'choices' => array('foo', 'bar'), 'message' => 'myMessage', 'strict' => true, )); $this->validator->validate('baz', $constraint); $this->buildViolation('myMessage') ->setParameter('{{ value }}', '"baz"') ->setCode(Choice::NO_SUCH_CHOICE_ERROR) ->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', 'strict' => true, )); $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( 'choices' => array('foo', 'bar'), 'multipleMessage' => 'myMessage', 'multiple' => true, 'strict' => true, )); $this->validator->validate(array('foo', 'baz'), $constraint); $this->buildViolation('myMessage') ->setParameter('{{ value }}', '"baz"') ->setInvalidValue('baz') ->setCode(Choice::NO_SUCH_CHOICE_ERROR) ->assertRaised(); } public function testTooFewChoices() { $constraint = new Choice(array( 'choices' => array('foo', 'bar', 'moo', 'maa'), 'multiple' => true, 'min' => 2, 'minMessage' => 'myMessage', 'strict' => true, )); $value = array('foo'); $this->setValue($value); $this->validator->validate($value, $constraint); $this->buildViolation('myMessage') ->setParameter('{{ limit }}', 2) ->setInvalidValue($value) ->setPlural(2) ->setCode(Choice::TOO_FEW_ERROR) ->assertRaised(); } public function testTooManyChoices() { $constraint = new Choice(array( 'choices' => array('foo', 'bar', 'moo', 'maa'), 'multiple' => true, 'max' => 2, 'maxMessage' => 'myMessage', 'strict' => true, )); $value = array('foo', 'bar', 'moo'); $this->setValue($value); $this->validator->validate($value, $constraint); $this->buildViolation('myMessage') ->setParameter('{{ limit }}', 2) ->setInvalidValue($value) ->setPlural(2) ->setCode(Choice::TOO_MANY_ERROR) ->assertRaised(); } /** * @group legacy */ public function testNonStrict() { $constraint = new Choice(array( 'choices' => array(1, 2), 'strict' => false, )); $this->validator->validate('2', $constraint); $this->validator->validate(2, $constraint); $this->assertNoViolation(); } public function testStrictAllowsExactValue() { $constraint = new Choice(array( 'choices' => array(1, 2), 'strict' => true, )); $this->validator->validate(2, $constraint); $this->assertNoViolation(); } public function testStrictDisallowsDifferentType() { $constraint = new Choice(array( 'choices' => array(1, 2), 'strict' => true, 'message' => 'myMessage', )); $this->validator->validate('2', $constraint); $this->buildViolation('myMessage') ->setParameter('{{ value }}', '"2"') ->setCode(Choice::NO_SUCH_CHOICE_ERROR) ->assertRaised(); } /** * @group legacy */ public function testNonStrictWithMultipleChoices() { $constraint = new Choice(array( 'choices' => array(1, 2, 3), 'multiple' => true, 'strict' => false, )); $this->validator->validate(array('2', 3), $constraint); $this->assertNoViolation(); } public function testStrictWithMultipleChoices() { $constraint = new Choice(array( 'choices' => array(1, 2, 3), 'multiple' => true, 'strict' => true, 'multipleMessage' => 'myMessage', )); $this->validator->validate(array(2, '3'), $constraint); $this->buildViolation('myMessage') ->setParameter('{{ value }}', '"3"') ->setInvalidValue('3') ->setCode(Choice::NO_SUCH_CHOICE_ERROR) ->assertRaised(); } } __halt_compiler();----SIGNATURE:----o39ad1CwrGiEQouswmde1uzBj/7t551Jg6CGQO2fJKnGiHCSfkUCHByN6nUt6XLOoUM3zgnGaseb1Vtt8nQB53TAxcaGgoYx7PuHlnro8QXiAU0+XevO/Qb5S71rcjqKUPh1CLT0N9jA+6dewhsC9EttfBbN5dAhVLs8Pq1oZF2e+POxS3A2UBEV2Ug12AgwI2O0LhdsVfrDhc5nV3Oul0fSl0wVI8tJWxeSlUtL2dNNinhMKQN2TDWheZ/7oD7KMQSlt6UkmQkOG/ETyM2+J0SB59NsEdTBpQN+rby35p5B/PvjkLcvWexQte9eHKX07/C3rnRDPl/1eEI0jJrneyW4qgzHfwFwEGvqvWjMNTowc+ZGnu/ABNu91z98h1WJDQKknRsulNGdUZ22dD3eD+01bxMULa+RJO2wqiN2KdGyMthKZWJNEAAUklL9AsmgPptsscsj4QQLVjd0xGEysb3x/lVGrnSqhoMRlYqUnlHnp3NOhRWU49/MiUoTQHrJAKx0H/ntXXrdoJqPUBdlertX5ytR5tpms64mSP52JoF6HZXBLwnB38wQFe8x6JTBSSh9nN80YgPK99qA83stB1tCDCD9n2dCULNCR/5/tyAHWB8Cl9bgi2vE8j8f9IeJBdx/cErjsg+2Za8DS55fKFWt3TYoIPi2uS/UUbqjbKU=----ATTACHMENT:----MzIwMzgyODk3NTQ5NzAxMyA5NTQ5ODYyMDU2NDc3NjU1IDQ4OTIxOTY4Nzk4NzkwNzM=