123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133 |
- <?php
-
- namespace Doctrine\Tests\ORM\Functional;
-
- use Doctrine\ORM\Query;
-
- require_once __DIR__ . '/../../TestInit.php';
-
-
- class OrderedJoinedTableInheritanceCollectionTest extends \Doctrine\Tests\OrmFunctionalTestCase
- {
- protected function setUp() {
- parent::setUp();
- try {
- $this->_schemaTool->createSchema(array(
- $this->_em->getClassMetadata('Doctrine\Tests\ORM\Functional\OJTIC_Pet'),
- $this->_em->getClassMetadata('Doctrine\Tests\ORM\Functional\OJTIC_Cat'),
- $this->_em->getClassMetadata('Doctrine\Tests\ORM\Functional\OJTIC_Dog'),
- ));
- } catch (\Exception $e) {
-
- }
-
- $dog = new OJTIC_Dog();
- $dog->name = "Poofy";
-
- $dog1 = new OJTIC_Dog();
- $dog1->name = "Zampa";
- $dog2 = new OJTIC_Dog();
- $dog2->name = "Aari";
-
- $dog1->mother = $dog;
- $dog2->mother = $dog;
-
- $dog->children[] = $dog1;
- $dog->children[] = $dog2;
-
- $this->_em->persist($dog);
- $this->_em->persist($dog1);
- $this->_em->persist($dog2);
- $this->_em->flush();
- $this->_em->clear();
- }
-
- public function testOrderdOneToManyCollection()
- {
- $poofy = $this->_em->createQuery("SELECT p FROM Doctrine\Tests\ORM\Functional\OJTIC_Pet p WHERE p.name = 'Poofy'")->getSingleResult();
-
- $this->assertEquals('Aari', $poofy->children[0]->getName());
- $this->assertEquals('Zampa', $poofy->children[1]->getName());
-
- $this->_em->clear();
-
- $result = $this->_em->createQuery(
- "SELECT p, c FROM Doctrine\Tests\ORM\Functional\OJTIC_Pet p JOIN p.children c WHERE p.name = 'Poofy'")
- ->getResult();
-
- $this->assertEquals(1, count($result));
- $poofy = $result[0];
-
- $this->assertEquals('Aari', $poofy->children[0]->getName());
- $this->assertEquals('Zampa', $poofy->children[1]->getName());
- }
- }
-
-
- abstract class OJTIC_Pet
- {
-
-
- public $id;
-
-
-
- public $name;
-
-
-
- public $mother;
-
-
-
- public $children;
-
-
-
- public $friends;
-
- public function getName()
- {
- return $this->name;
- }
- }
-
-
- class OJTIC_Cat extends OJTIC_Pet
- {
-
- }
-
-
- class OJTIC_Dog extends OJTIC_Pet
- {
-
- }
|