123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324 |
- <?php
- /*
- * This file is part of the Symfony package.
- *
- * (c) Fabien Potencier <fabien@symfony.com>
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
- namespace Symfony\Component\Validator\Tests\Mapping;
- use PHPUnit\Framework\TestCase;
- use Symfony\Component\Validator\Constraint;
- use Symfony\Component\Validator\Constraints\Valid;
- use Symfony\Component\Validator\Mapping\ClassMetadata;
- use Symfony\Component\Validator\Tests\Fixtures\ConstraintA;
- use Symfony\Component\Validator\Tests\Fixtures\ConstraintB;
- use Symfony\Component\Validator\Tests\Fixtures\PropertyConstraint;
- class ClassMetadataTest extends TestCase
- {
- const CLASSNAME = 'Symfony\Component\Validator\Tests\Fixtures\Entity';
- const PARENTCLASS = 'Symfony\Component\Validator\Tests\Fixtures\EntityParent';
- const PROVIDERCLASS = 'Symfony\Component\Validator\Tests\Fixtures\GroupSequenceProviderEntity';
- const PROVIDERCHILDCLASS = 'Symfony\Component\Validator\Tests\Fixtures\GroupSequenceProviderChildEntity';
- protected $metadata;
- protected function setUp()
- {
- $this->metadata = new ClassMetadata(self::CLASSNAME);
- }
- protected function tearDown()
- {
- $this->metadata = null;
- }
- public function testAddConstraintDoesNotAcceptValid()
- {
- $this->{method_exists($this, $_ = 'expectException') ? $_ : 'setExpectedException'}('Symfony\Component\Validator\Exception\ConstraintDefinitionException');
- $this->metadata->addConstraint(new Valid());
- }
- public function testAddConstraintRequiresClassConstraints()
- {
- $this->{method_exists($this, $_ = 'expectException') ? $_ : 'setExpectedException'}('Symfony\Component\Validator\Exception\ConstraintDefinitionException');
- $this->metadata->addConstraint(new PropertyConstraint());
- }
- public function testAddPropertyConstraints()
- {
- $this->metadata->addPropertyConstraint('firstName', new ConstraintA());
- $this->metadata->addPropertyConstraint('lastName', new ConstraintB());
- $this->assertEquals(array('firstName', 'lastName'), $this->metadata->getConstrainedProperties());
- }
- public function testAddMultiplePropertyConstraints()
- {
- $this->metadata->addPropertyConstraints('lastName', array(new ConstraintA(), new ConstraintB()));
- $constraints = array(
- new ConstraintA(array('groups' => array('Default', 'Entity'))),
- new ConstraintB(array('groups' => array('Default', 'Entity'))),
- );
- $properties = $this->metadata->getPropertyMetadata('lastName');
- $this->assertCount(1, $properties);
- $this->assertEquals('lastName', $properties[0]->getName());
- $this->assertEquals($constraints, $properties[0]->getConstraints());
- }
- public function testAddGetterConstraints()
- {
- $this->metadata->addGetterConstraint('lastName', new ConstraintA());
- $this->metadata->addGetterConstraint('lastName', new ConstraintB());
- $constraints = array(
- new ConstraintA(array('groups' => array('Default', 'Entity'))),
- new ConstraintB(array('groups' => array('Default', 'Entity'))),
- );
- $properties = $this->metadata->getPropertyMetadata('lastName');
- $this->assertCount(1, $properties);
- $this->assertEquals('getLastName', $properties[0]->getName());
- $this->assertEquals($constraints, $properties[0]->getConstraints());
- }
- public function testAddMultipleGetterConstraints()
- {
- $this->metadata->addGetterConstraints('lastName', array(new ConstraintA(), new ConstraintB()));
- $constraints = array(
- new ConstraintA(array('groups' => array('Default', 'Entity'))),
- new ConstraintB(array('groups' => array('Default', 'Entity'))),
- );
- $properties = $this->metadata->getPropertyMetadata('lastName');
- $this->assertCount(1, $properties);
- $this->assertEquals('getLastName', $properties[0]->getName());
- $this->assertEquals($constraints, $properties[0]->getConstraints());
- }
- public function testMergeConstraintsMergesClassConstraints()
- {
- $parent = new ClassMetadata(self::PARENTCLASS);
- $parent->addConstraint(new ConstraintA());
- $this->metadata->mergeConstraints($parent);
- $this->metadata->addConstraint(new ConstraintA());
- $constraints = array(
- new ConstraintA(array('groups' => array(
- 'Default',
- 'EntityParent',
- 'Entity',
- ))),
- new ConstraintA(array('groups' => array(
- 'Default',
- 'Entity',
- ))),
- );
- $this->assertEquals($constraints, $this->metadata->getConstraints());
- }
- public function testMergeConstraintsMergesMemberConstraints()
- {
- $parent = new ClassMetadata(self::PARENTCLASS);
- $parent->addPropertyConstraint('firstName', new ConstraintA());
- $parent->addPropertyConstraint('firstName', new ConstraintB(array('groups' => 'foo')));
- $this->metadata->mergeConstraints($parent);
- $this->metadata->addPropertyConstraint('firstName', new ConstraintA());
- $constraintA1 = new ConstraintA(array('groups' => array(
- 'Default',
- 'EntityParent',
- 'Entity',
- )));
- $constraintA2 = new ConstraintA(array('groups' => array(
- 'Default',
- 'Entity',
- )));
- $constraintB = new ConstraintB(array(
- 'groups' => array('foo'),
- ));
- $constraints = array(
- $constraintA1,
- $constraintB,
- $constraintA2,
- );
- $constraintsByGroup = array(
- 'Default' => array(
- $constraintA1,
- $constraintA2,
- ),
- 'EntityParent' => array(
- $constraintA1,
- ),
- 'Entity' => array(
- $constraintA1,
- $constraintA2,
- ),
- 'foo' => array(
- $constraintB,
- ),
- );
- $members = $this->metadata->getPropertyMetadata('firstName');
- $this->assertCount(1, $members);
- $this->assertEquals(self::PARENTCLASS, $members[0]->getClassName());
- $this->assertEquals($constraints, $members[0]->getConstraints());
- $this->assertEquals($constraintsByGroup, $members[0]->constraintsByGroup);
- }
- public function testMemberMetadatas()
- {
- $this->metadata->addPropertyConstraint('firstName', new ConstraintA());
- $this->assertTrue($this->metadata->hasPropertyMetadata('firstName'));
- $this->assertFalse($this->metadata->hasPropertyMetadata('non_existent_field'));
- }
- public function testMergeConstraintsKeepsPrivateMembersSeparate()
- {
- $parent = new ClassMetadata(self::PARENTCLASS);
- $parent->addPropertyConstraint('internal', new ConstraintA());
- $this->metadata->mergeConstraints($parent);
- $this->metadata->addPropertyConstraint('internal', new ConstraintA());
- $parentConstraints = array(
- new ConstraintA(array('groups' => array(
- 'Default',
- 'EntityParent',
- 'Entity',
- ))),
- );
- $constraints = array(
- new ConstraintA(array('groups' => array(
- 'Default',
- 'Entity',
- ))),
- );
- $members = $this->metadata->getPropertyMetadata('internal');
- $this->assertCount(2, $members);
- $this->assertEquals(self::PARENTCLASS, $members[0]->getClassName());
- $this->assertEquals($parentConstraints, $members[0]->getConstraints());
- $this->assertEquals(self::CLASSNAME, $members[1]->getClassName());
- $this->assertEquals($constraints, $members[1]->getConstraints());
- }
- public function testGetReflectionClass()
- {
- $reflClass = new \ReflectionClass(self::CLASSNAME);
- $this->assertEquals($reflClass, $this->metadata->getReflectionClass());
- }
- public function testSerialize()
- {
- $this->metadata->addConstraint(new ConstraintA(array('property1' => 'A')));
- $this->metadata->addConstraint(new ConstraintB(array('groups' => 'TestGroup')));
- $this->metadata->addPropertyConstraint('firstName', new ConstraintA());
- $this->metadata->addGetterConstraint('lastName', new ConstraintB());
- $metadata = unserialize(serialize($this->metadata));
- $this->assertEquals($this->metadata, $metadata);
- }
- public function testGroupSequencesWorkIfContainingDefaultGroup()
- {
- $this->metadata->setGroupSequence(array('Foo', $this->metadata->getDefaultGroup()));
- $this->assertInstanceOf('Symfony\Component\Validator\Constraints\GroupSequence', $this->metadata->getGroupSequence());
- }
- /**
- * @expectedException \Symfony\Component\Validator\Exception\GroupDefinitionException
- */
- public function testGroupSequencesFailIfNotContainingDefaultGroup()
- {
- $this->metadata->setGroupSequence(array('Foo', 'Bar'));
- }
- /**
- * @expectedException \Symfony\Component\Validator\Exception\GroupDefinitionException
- */
- public function testGroupSequencesFailIfContainingDefault()
- {
- $this->metadata->setGroupSequence(array('Foo', $this->metadata->getDefaultGroup(), Constraint::DEFAULT_GROUP));
- }
- /**
- * @expectedException \Symfony\Component\Validator\Exception\GroupDefinitionException
- */
- public function testGroupSequenceFailsIfGroupSequenceProviderIsSet()
- {
- $metadata = new ClassMetadata(self::PROVIDERCLASS);
- $metadata->setGroupSequenceProvider(true);
- $metadata->setGroupSequence(array('GroupSequenceProviderEntity', 'Foo'));
- }
- /**
- * @expectedException \Symfony\Component\Validator\Exception\GroupDefinitionException
- */
- public function testGroupSequenceProviderFailsIfGroupSequenceIsSet()
- {
- $metadata = new ClassMetadata(self::PROVIDERCLASS);
- $metadata->setGroupSequence(array('GroupSequenceProviderEntity', 'Foo'));
- $metadata->setGroupSequenceProvider(true);
- }
- /**
- * @expectedException \Symfony\Component\Validator\Exception\GroupDefinitionException
- */
- public function testGroupSequenceProviderFailsIfDomainClassIsInvalid()
- {
- $metadata = new ClassMetadata('stdClass');
- $metadata->setGroupSequenceProvider(true);
- }
- public function testGroupSequenceProvider()
- {
- $metadata = new ClassMetadata(self::PROVIDERCLASS);
- $metadata->setGroupSequenceProvider(true);
- $this->assertTrue($metadata->isGroupSequenceProvider());
- }
- public function testMergeConstraintsMergesGroupSequenceProvider()
- {
- $parent = new ClassMetadata(self::PROVIDERCLASS);
- $parent->setGroupSequenceProvider(true);
- $metadata = new ClassMetadata(self::PROVIDERCHILDCLASS);
- $metadata->mergeConstraints($parent);
- $this->assertTrue($metadata->isGroupSequenceProvider());
- }
- /**
- * https://github.com/symfony/symfony/issues/11604.
- */
- public function testGetPropertyMetadataReturnsEmptyArrayWithoutConfiguredMetadata()
- {
- $this->assertCount(0, $this->metadata->getPropertyMetadata('foo'), '->getPropertyMetadata() returns an empty collection if no metadata is configured for the given property');
- }
- }
|