123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280 |
- <?php
-
- namespace Doctrine\Tests\ORM\Mapping;
-
- use Doctrine\ORM\Mapping\ClassMetadataFactory;
- use Doctrine\ORM\Tools\SchemaTool;
-
- require_once __DIR__ . '/../../TestInit.php';
-
- class BasicInheritanceMappingTest extends \Doctrine\Tests\OrmTestCase
- {
- private $_factory;
-
- protected function setUp() {
- $this->_factory = new ClassMetadataFactory();
- $this->_factory->setEntityManager($this->_getTestEntityManager());
- }
-
-
-
- public function testGetMetadataForTransientClassThrowsException()
- {
- $this->_factory->getMetadataFor('Doctrine\Tests\ORM\Mapping\TransientBaseClass');
- }
-
- public function testGetMetadataForSubclassWithTransientBaseClass()
- {
- $class = $this->_factory->getMetadataFor('Doctrine\Tests\ORM\Mapping\EntitySubClass');
-
- $this->assertTrue(empty($class->subClasses));
- $this->assertTrue(empty($class->parentClasses));
- $this->assertTrue(isset($class->fieldMappings['id']));
- $this->assertTrue(isset($class->fieldMappings['name']));
- }
-
- public function testGetMetadataForSubclassWithMappedSuperclass()
- {
- $class = $this->_factory->getMetadataFor('Doctrine\Tests\ORM\Mapping\EntitySubClass2');
-
- $this->assertTrue(empty($class->subClasses));
- $this->assertTrue(empty($class->parentClasses));
-
- $this->assertTrue(isset($class->fieldMappings['mapped1']));
- $this->assertTrue(isset($class->fieldMappings['mapped2']));
- $this->assertTrue(isset($class->fieldMappings['id']));
- $this->assertTrue(isset($class->fieldMappings['name']));
-
- $this->assertFalse(isset($class->fieldMappings['mapped1']['inherited']));
- $this->assertFalse(isset($class->fieldMappings['mapped2']['inherited']));
- $this->assertFalse(isset($class->fieldMappings['transient']));
-
- $this->assertTrue(isset($class->associationMappings['mappedRelated1']));
- }
-
-
-
- public function testSerializationWithPrivateFieldsFromMappedSuperclass()
- {
-
- $class = $this->_factory->getMetadataFor(__NAMESPACE__ . '\\EntitySubClass2');
-
- $class2 = unserialize(serialize($class));
-
- $this->assertTrue(isset($class2->reflFields['mapped1']));
- $this->assertTrue(isset($class2->reflFields['mapped2']));
- $this->assertTrue(isset($class2->reflFields['mappedRelated1']));
- }
-
-
-
- public function testUnmappedSuperclassInHierachy()
- {
- $class = $this->_factory->getMetadataFor(__NAMESPACE__ . '\\HierachyD');
-
- $this->assertTrue(isset($class->fieldMappings['id']));
- $this->assertTrue(isset($class->fieldMappings['a']));
- $this->assertTrue(isset($class->fieldMappings['d']));
- }
-
-
-
- public function testUnmappedEntityInHierachy()
- {
- $this->setExpectedException('Doctrine\ORM\Mapping\MappingException', "Entity 'Doctrine\Tests\ORM\Mapping\HierachyBEntity' has to be part of the descriminator map of 'Doctrine\Tests\ORM\Mapping\HierachyBase' to be properly mapped in the inheritance hierachy. Alternatively you can make 'Doctrine\Tests\ORM\Mapping\HierachyBEntity' an abstract class to avoid this exception from occuring.");
-
- $class = $this->_factory->getMetadataFor(__NAMESPACE__ . '\\HierachyE');
- }
-
-
-
- public function testMappedSuperclassWithId()
- {
- $class = $this->_factory->getMetadataFor(__NAMESPACE__ . '\\SuperclassEntity');
-
- $this->assertTrue(isset($class->fieldMappings['id']));
- }
-
-
-
- public function testGeneratedValueFromMappedSuperclass()
- {
- $class = $this->_factory->getMetadataFor(__NAMESPACE__ . '\\SuperclassEntity');
-
-
- $this->assertInstanceOf('Doctrine\ORM\Id\SequenceGenerator', $class->idGenerator);
- $this->assertEquals(array('allocationSize' => 1, 'initialValue' => 10, 'sequenceName' => 'foo'), $class->sequenceGeneratorDefinition);
- }
-
-
-
- public function testSequenceDefinitionInHierachyWithSandwichMappedSuperclass()
- {
- $class = $this->_factory->getMetadataFor(__NAMESPACE__ . '\\HierachyD');
-
-
- $this->assertInstanceOf('Doctrine\ORM\Id\SequenceGenerator', $class->idGenerator);
- $this->assertEquals(array('allocationSize' => 1, 'initialValue' => 10, 'sequenceName' => 'foo'), $class->sequenceGeneratorDefinition);
- }
-
-
-
- public function testMultipleMappedSuperclasses()
- {
- $class = $this->_factory->getMetadataFor(__NAMESPACE__ . '\\MediumSuperclassEntity');
-
-
- $this->assertInstanceOf('Doctrine\ORM\Id\SequenceGenerator', $class->idGenerator);
- $this->assertEquals(array('allocationSize' => 1, 'initialValue' => 10, 'sequenceName' => 'foo'), $class->sequenceGeneratorDefinition);
- }
- }
-
- class TransientBaseClass {
- private $transient1;
- private $transient2;
- }
-
-
- class EntitySubClass extends TransientBaseClass
- {
-
- private $id;
-
- private $name;
- }
-
-
- class MappedSuperclassBase {
-
- private $mapped1;
-
- private $mapped2;
-
-
- private $mappedRelated1;
- private $transient;
- }
-
-
- class EntitySubClass2 extends MappedSuperclassBase {
-
- private $id;
-
- private $name;
- }
-
-
- abstract class HierachyBase
- {
-
-
- public $id;
- }
-
-
- abstract class HierachyASuperclass extends HierachyBase
- {
-
- public $a;
- }
-
-
- class HierachyBEntity extends HierachyBase
- {
-
- public $b;
- }
-
-
- class HierachyC extends HierachyBase
- {
-
- public $c;
- }
-
-
- class HierachyD extends HierachyASuperclass
- {
-
- public $d;
- }
-
-
- class HierachyE extends HierachyBEntity
- {
-
- public $e;
- }
-
-
- class SuperclassEntity extends SuperclassBase
- {
-
- }
-
-
- abstract class SuperclassBase
- {
-
-
- public $id;
- }
-
-
- abstract class MediumSuperclassBase extends SuperclassBase
- {
-
- }
-
-
- class MediumSuperclassEntity extends MediumSuperclassBase
- {
-
- }
|