From 0f070448367f90dffb81225c680ef9b3490a3f0a Mon Sep 17 00:00:00 2001 From: Guilherme Blanco Date: Mon, 16 Jan 2012 22:31:14 -0500 Subject: [PATCH] Added coverage to DDC-1587. --- .../Tests/ORM/Tools/SchemaValidatorTest.php | 67 +++++++++++++++++++ 1 file changed, 67 insertions(+) diff --git a/tests/Doctrine/Tests/ORM/Tools/SchemaValidatorTest.php b/tests/Doctrine/Tests/ORM/Tools/SchemaValidatorTest.php index 7b77fe507..0b9657fe0 100644 --- a/tests/Doctrine/Tests/ORM/Tools/SchemaValidatorTest.php +++ b/tests/Doctrine/Tests/ORM/Tools/SchemaValidatorTest.php @@ -109,6 +109,19 @@ class SchemaValidatorTest extends \Doctrine\Tests\OrmTestCase $ce ); } + + /** + * @group DDC-1587 + */ + public function testValidOneToOneAsIdentifierSchema() + { + $class1 = $this->em->getClassMetadata(__NAMESPACE__ . '\DDC1587ValidEntity2'); + $class2 = $this->em->getClassMetadata(__NAMESPACE__ . '\DDC1587ValidEntity1'); + + $ce = $this->validator->validateClass($class1); + + $this->assertEquals(array(), $ce); + } } /** @@ -154,3 +167,57 @@ class InvalidEntity2 */ protected $assoc; } + +/** + * @Entity(repositoryClass="Entity\Repository\Agent") + * @Table(name="agent") + */ +class DDC1587ValidEntity1 +{ + /** + * @var int + * + * @Id @GeneratedValue + * @Column(name="pk", type="integer") + */ + private $pk; + + /** + * @var string + * + * @Column(name="name", type="string", length=32) + */ + private $name; + + /** + * @var Identifier + * + * @OneToOne(targetEntity="DDC1587ValidEntity2", cascade={"all"}, mappedBy="agent") + * @JoinColumn(name="pk", referencedColumnName="pk_agent") + */ + private $identifier; +} + +/** + * @Entity + * @Table + */ +class DDC1587ValidEntity2 +{ + /** + * @var DDC1587ValidEntity1 + * + * @Id + * @OneToOne(targetEntity="DDC1587ValidEntity1", inversedBy="identifier") + * @JoinColumn(name="pk_agent", referencedColumnName="pk", nullable=false) + */ + private $agent; + + /** + * @var string + * + * @Column(name="num", type="string", length=16, nullable=true) + */ + private $num; +} +