From 26d8b4dafdacd461f7997b4cca63023ca1aa6e61 Mon Sep 17 00:00:00 2001 From: Benjamin Eberlei Date: Sun, 4 Jul 2010 16:19:28 +0200 Subject: [PATCH] Added test to verify DDC-635 is not a problem --- .../ManyToManyBasicAssociationTest.php | 29 +++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/tests/Doctrine/Tests/ORM/Functional/ManyToManyBasicAssociationTest.php b/tests/Doctrine/Tests/ORM/Functional/ManyToManyBasicAssociationTest.php index 48a5f17d9..a12862227 100644 --- a/tests/Doctrine/Tests/ORM/Functional/ManyToManyBasicAssociationTest.php +++ b/tests/Doctrine/Tests/ORM/Functional/ManyToManyBasicAssociationTest.php @@ -172,6 +172,35 @@ class ManyToManyBasicAssociationTest extends \Doctrine\Tests\OrmFunctionalTestCa ); } + public function testRetrieveManyToManyAndAddMore() + { + $user = $this->addCmsUserGblancoWithGroups(2); + + $group = new CmsGroup(); + $group->name = 'Developers_Fresh'; + $this->_em->persist($group); + $this->_em->flush(); + + $this->_em->clear(); + + /* @var $freshUser CmsUser */ + $freshUser = $this->_em->find('Doctrine\Tests\Models\CMS\CmsUser', $user->getId()); + $freshUser->addGroup($group); + + $this->assertFalse($freshUser->groups->isInitialized(), "CmsUser::groups Collection has to be uninitialized for this test."); + + $this->_em->flush(); + + $this->assertFalse($freshUser->groups->isInitialized(), "CmsUser::groups Collection has to be uninitialized for this test."); + $this->assertEquals(3, count($freshUser->getGroups())); + $this->assertEquals(3, count($freshUser->getGroups()->getSnapshot()), "Snapshot of CmsUser::groups should contain 3 entries."); + + $this->_em->clear(); + + $freshUser = $this->_em->find('Doctrine\Tests\Models\CMS\CmsUser', $user->getId()); + $this->assertEquals(3, count($freshUser->getGroups())); + } + /** * @param int $groupCount * @return CmsUser