* * 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 PHPUnit\Framework\TestCase; use Symfony\Component\Validator\Constraints\Collection; use Symfony\Component\Validator\Constraints\Email; use Symfony\Component\Validator\Constraints\Optional; use Symfony\Component\Validator\Constraints\Required; use Symfony\Component\Validator\Constraints\Valid; /** * @author Bernhard Schussek */ class CollectionTest extends TestCase { /** * @expectedException \Symfony\Component\Validator\Exception\ConstraintDefinitionException */ public function testRejectInvalidFieldsOption() { new Collection(array( 'fields' => 'foo', )); } /** * @expectedException \Symfony\Component\Validator\Exception\ConstraintDefinitionException */ public function testRejectNonConstraints() { new Collection(array( 'foo' => 'bar', )); } /** * @expectedException \Symfony\Component\Validator\Exception\ConstraintDefinitionException */ public function testRejectValidConstraint() { new Collection(array( 'foo' => new Valid(), )); } /** * @expectedException \Symfony\Component\Validator\Exception\ConstraintDefinitionException */ public function testRejectValidConstraintWithinOptional() { new Collection(array( 'foo' => new Optional(new Valid()), )); } /** * @expectedException \Symfony\Component\Validator\Exception\ConstraintDefinitionException */ public function testRejectValidConstraintWithinRequired() { new Collection(array( 'foo' => new Required(new Valid()), )); } public function testAcceptOptionalConstraintAsOneElementArray() { $collection1 = new Collection(array( 'fields' => array( 'alternate_email' => array( new Optional(new Email()), ), ), )); $collection2 = new Collection(array( 'fields' => array( 'alternate_email' => new Optional(new Email()), ), )); $this->assertEquals($collection1, $collection2); } public function testAcceptRequiredConstraintAsOneElementArray() { $collection1 = new Collection(array( 'fields' => array( 'alternate_email' => array( new Required(new Email()), ), ), )); $collection2 = new Collection(array( 'fields' => array( 'alternate_email' => new Required(new Email()), ), )); $this->assertEquals($collection1, $collection2); } } __halt_compiler();----SIGNATURE:----oVrUM12YENXx/W4xrZg4DieBuvvU7eiABMIHwCiI51NgoqcpP7FFWMwMivrAepqxVbzSU4uMzwe5BSevjDY9FAr2grJ4cJcvP9uHc4IoCtuWQpZEkPXbtfN5E2m/Ssnk0zHFcKXRoQ7ygWjEGBWqaFhoTSQQQeE7l2SAXIk0if90lLW/tlmSzHSepymq9kxaejYydihIIyMMbz1uDDbmDU2iFK1eEjXvVMd6pGtfJS+10lKVC/7TPxKPUFlzPcUt6VzJFPiuZF+f/VvWqbie+ASszjzGUTDMl8VnzYaJz5UEdw4AMZKTeguINyjYNF+yZ4UkAbzt/Wq90zVRhxEnsEja/mEhuXjYvn4am+ySqA7FNy+jLWAyZX+/hL5rmc4PsQZspBdkKxbTq1FsEOLJqplZhjozH/AqTf6WlPzIHuwUyx0S3SKlL7eVGiLN6/Hp0FP9LszAylLuAg67pGIllFgTsBJKqmHDAZRXCwX0v3Elx0tAUJmDNr826qrDJYcpcFD/t5+1gOYtTiTGS9v1RG0niJfpNrr0d6tBbFMjQkUW0+Fr55J0te5aLwmdui8Cnt1oUq9AuGNxDLvcL951TQx71qOMuWBJ0E05hu4Hl+cjghbqmz4fr3L9Fe58eYy4jTqqhQaTlc5qVQUhhYhVHaITVgvbbabLsADP1c7AdSA=----ATTACHMENT:----Mzc0OTk5NDgwNTcxMjI1OSA3NDk3ODExNzIwODg1MTQ4IDcyMDczNDM0MDU0ODk2NDQ=