From 41e873bd729d5511f68a2c46fac3ad1ce2e1fb65 Mon Sep 17 00:00:00 2001 From: Stefano Torresi Date: Tue, 17 Mar 2015 17:58:59 +0100 Subject: [PATCH] add failing functional test for custom id object types --- .../Tests/DbalTypes/CustomIdObject.php | 32 +++++++ .../Tests/DbalTypes/CustomIdObjectType.php | 49 +++++++++++ .../CustomType/CustomIdObjectTypeChild.php | 43 ++++++++++ .../CustomType/CustomIdObjectTypeParent.php | 43 ++++++++++ .../ORM/Functional/CustomIdObjectTypeTest.php | 86 +++++++++++++++++++ .../Doctrine/Tests/OrmFunctionalTestCase.php | 11 ++- 6 files changed, 263 insertions(+), 1 deletion(-) create mode 100644 tests/Doctrine/Tests/DbalTypes/CustomIdObject.php create mode 100644 tests/Doctrine/Tests/DbalTypes/CustomIdObjectType.php create mode 100644 tests/Doctrine/Tests/Models/CustomType/CustomIdObjectTypeChild.php create mode 100644 tests/Doctrine/Tests/Models/CustomType/CustomIdObjectTypeParent.php create mode 100644 tests/Doctrine/Tests/ORM/Functional/CustomIdObjectTypeTest.php diff --git a/tests/Doctrine/Tests/DbalTypes/CustomIdObject.php b/tests/Doctrine/Tests/DbalTypes/CustomIdObject.php new file mode 100644 index 000000000..72d259d54 --- /dev/null +++ b/tests/Doctrine/Tests/DbalTypes/CustomIdObject.php @@ -0,0 +1,32 @@ +id = (string) $id; + } + + /** + * @return string + */ + public function __toString() + { + return $this->id; + } +} diff --git a/tests/Doctrine/Tests/DbalTypes/CustomIdObjectType.php b/tests/Doctrine/Tests/DbalTypes/CustomIdObjectType.php new file mode 100644 index 000000000..c24c11354 --- /dev/null +++ b/tests/Doctrine/Tests/DbalTypes/CustomIdObjectType.php @@ -0,0 +1,49 @@ +id; + } + + /** + * {@inheritdoc} + */ + public function convertToPHPValue($value, AbstractPlatform $platform) + { + $idObject = new CustomIdObject($value); + + return $idObject; + } + + + /** + * {@inheritdoc} + */ + public function getSQLDeclaration(array $fieldDeclaration, AbstractPlatform $platform) + { + $platform->getVarcharTypeDeclarationSQL($fieldDeclaration); + } + + /** + * {@inheritdoc} + */ + public function getName() + { + return 'CustomIdObject'; + } +} diff --git a/tests/Doctrine/Tests/Models/CustomType/CustomIdObjectTypeChild.php b/tests/Doctrine/Tests/Models/CustomType/CustomIdObjectTypeChild.php new file mode 100644 index 000000000..a14759e87 --- /dev/null +++ b/tests/Doctrine/Tests/Models/CustomType/CustomIdObjectTypeChild.php @@ -0,0 +1,43 @@ +id = $id; + $this->parent = $parent; + } +} diff --git a/tests/Doctrine/Tests/Models/CustomType/CustomIdObjectTypeParent.php b/tests/Doctrine/Tests/Models/CustomType/CustomIdObjectTypeParent.php new file mode 100644 index 000000000..d5e00db9a --- /dev/null +++ b/tests/Doctrine/Tests/Models/CustomType/CustomIdObjectTypeParent.php @@ -0,0 +1,43 @@ +id = $id; + $this->children = new ArrayCollection(); + } +} diff --git a/tests/Doctrine/Tests/ORM/Functional/CustomIdObjectTypeTest.php b/tests/Doctrine/Tests/ORM/Functional/CustomIdObjectTypeTest.php new file mode 100644 index 000000000..3b7276ad8 --- /dev/null +++ b/tests/Doctrine/Tests/ORM/Functional/CustomIdObjectTypeTest.php @@ -0,0 +1,86 @@ +useModelSet('custom_id_object_type'); + parent::setUp(); + } + + public function testFindByCustomIdObject() + { + $parent = new CustomIdObjectTypeParent('foo'); + + $this->_em->persist($parent); + $this->_em->flush(); + + $result = $this->_em->find('Doctrine\Tests\Models\CustomType\CustomIdObjectTypeParent', $parent->id); + + $this->assertSame($parent, $result); + } + + public function testFetchJoinCustomIdObject() + { + $parent = new CustomIdObjectTypeParent('foo'); + $parent->children->add(new CustomIdObjectTypeChild('bar', $parent)); + + $this->_em->persist($parent); + $this->_em->flush(); + + $qb = $this->_em->createQueryBuilder(); + $qb + ->select('parent') + ->from('Doctrine\Tests\Models\CustomType\CustomIdObjectTypeParent', 'parent') + ->addSelect('children') + ->leftJoin('parent.children', 'children') + ; + + $result = $qb->getQuery()->getResult(); + + $this->assertCount(1, $result); + $this->assertSame($parent, $result[0]); + } + + public function testFetchJoinWhereCustomIdObject() + { + $parent = new CustomIdObjectTypeParent('foo'); + $parent->children->add(new CustomIdObjectTypeChild('bar', $parent)); + + $this->_em->persist($parent); + $this->_em->flush(); + + $qb = $this->_em->createQueryBuilder(); + $qb + ->select('parent') + ->from('Doctrine\Tests\Models\CustomType\CustomIdObjectTypeParent', 'parent') + ->addSelect('children') + ->leftJoin('parent.children', 'children') + ->where('children.id = ?1') + ->setParameter(1, $parent->children->first()->id); + ; + + $result = $qb->getQuery()->getResult(); + + $this->assertCount(1, $result); + $this->assertSame($parent, $result[0]); + } +} diff --git a/tests/Doctrine/Tests/OrmFunctionalTestCase.php b/tests/Doctrine/Tests/OrmFunctionalTestCase.php index 7aaeae81a..48f9bbdb3 100644 --- a/tests/Doctrine/Tests/OrmFunctionalTestCase.php +++ b/tests/Doctrine/Tests/OrmFunctionalTestCase.php @@ -257,7 +257,11 @@ abstract class OrmFunctionalTestCase extends OrmTestCase 'Doctrine\Tests\Models\GeoNames\Admin1', 'Doctrine\Tests\Models\GeoNames\Admin1AlternateName', 'Doctrine\Tests\Models\GeoNames\City' - ) + ), + 'custom_id_object_type' => array( + 'Doctrine\Tests\Models\CustomType\CustomIdObjectTypeParent', + 'Doctrine\Tests\Models\CustomType\CustomIdObjectTypeChild', + ), ); /** @@ -496,6 +500,11 @@ abstract class OrmFunctionalTestCase extends OrmTestCase $conn->executeUpdate('DELETE FROM geonames_country'); } + if (isset($this->_usedModelSets['custom_id_object_type'])) { + $conn->executeUpdate('DELETE FROM custom_id_type_parent'); + $conn->executeUpdate('DELETE FROM custom_id_type_child'); + } + $this->_em->clear(); }