From 8336bcc71c11fc18ee0e2ed449316d0b9ce00d93 Mon Sep 17 00:00:00 2001 From: beberlei Date: Wed, 27 Jan 2010 20:56:56 +0000 Subject: [PATCH] [2.0] DDC-279 - Commit testcase that shows it works. --- .../ORM/Functional/Ticket/DDC279Test.php | 130 ++++++++++++++++++ 1 file changed, 130 insertions(+) create mode 100644 tests/Doctrine/Tests/ORM/Functional/Ticket/DDC279Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC279Test.php b/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC279Test.php new file mode 100644 index 000000000..27faabbeb --- /dev/null +++ b/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC279Test.php @@ -0,0 +1,130 @@ +_schemaTool->createSchema(array( + $this->_em->getClassMetadata(__NAMESPACE__ . '\DDC279EntityX'), + $this->_em->getClassMetadata(__NAMESPACE__ . '\DDC279EntityY'), + $this->_em->getClassMetadata(__NAMESPACE__ . '\DDC279EntityZ') + )); + } + + /** + * @group DDC-279 + */ + public function testDDC279() + { + $x = new DDC279EntityX(); + $y = new DDC279EntityY(); + $z = new DDC279EntityZ(); + + $x->data = 'X'; + $y->data = 'Y'; + $z->data = 'Z'; + + $x->y = $y; + $y->z = $z; + + $this->_em->persist($x); + $this->_em->persist($y); + $this->_em->persist($z); + + $this->_em->flush(); + $this->_em->clear(); + + $result = $this->_em->createQuery( + 'SELECT x, y, z FROM Doctrine\Tests\ORM\Functional\Ticket\DDC279EntityX x '. + 'INNER JOIN x.y y INNER JOIN y.z z WHERE x.id = 1' + )->getArrayResult(); + + $expected = array( + 0 => array( + 'id' => 1, + 'data' => 'X', + 'y' => array( + 'id' => 1, + 'data' => 'Y', + 'z' => array( + 'id' => 1, + 'data' => 'Z', + ) + ), + ), + ); + + $this->assertEquals($expected, $result); + } +} + +/** + * @Entity + */ +class DDC279EntityX +{ + /** + * @Id + * @generatedValue(strategy="AUTO") + * @Column(name="id", type="integer") + */ + public $id; + + /** + * @column(type="string") + */ + public $data; + + /** + * @OneToOne(targetEntity="Doctrine\Tests\ORM\Functional\Ticket\DDC279EntityY") + * @JoinColumn(name="y_id", referencedColumnName="id") + */ + public $y; +} + +/** + * @Entity + */ +class DDC279EntityY +{ + /** + * @Id + * @generatedValue(strategy="AUTO") + * @Column(name="id", type="integer") + */ + public $id; + + /** + * @column(type="string") + */ + public $data; + + /** + * @OneToOne(targetEntity="Doctrine\Tests\ORM\Functional\Ticket\DDC279EntityZ") + * @JoinColumn(name="z_id", referencedColumnName="id") + */ + public $z; +} + +/** + * @Entity + */ +class DDC279EntityZ +{ + /** + * @Id + * @generatedValue(strategy="AUTO") + * @Column(name="id", type="integer") + */ + public $id; + + /** + * @column(type="string") + */ + public $data; +} \ No newline at end of file