123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 |
- <?php
- namespace Doctrine\Tests\ORM\Functional\Ticket;
- /**
- * @group DDC-1654
- */
- class DDC1654Test extends \Doctrine\Tests\OrmFunctionalTestCase
- {
- public function setUp()
- {
- parent::setUp();
- $this->setUpEntitySchema(array(
- __NAMESPACE__ . '\\DDC1654Post',
- __NAMESPACE__ . '\\DDC1654Comment',
- ));
- }
- public function testManyToManyRemoveFromCollectionOrphanRemoval()
- {
- $post = new DDC1654Post();
- $post->comments[] = new DDC1654Comment();
- $post->comments[] = new DDC1654Comment();
- $this->_em->persist($post);
- $this->_em->flush();
- $post->comments->remove(0);
- $post->comments->remove(1);
- $this->_em->flush();
- $this->_em->clear();
- $comments = $this->_em->getRepository(__NAMESPACE__ . '\\DDC1654Comment')->findAll();
- $this->assertEquals(0, count($comments));
- }
- public function testManyToManyRemoveElementFromCollectionOrphanRemoval()
- {
- $post = new DDC1654Post();
- $post->comments[] = new DDC1654Comment();
- $post->comments[] = new DDC1654Comment();
- $this->_em->persist($post);
- $this->_em->flush();
- $post->comments->removeElement($post->comments[0]);
- $post->comments->removeElement($post->comments[1]);
- $this->_em->flush();
- $this->_em->clear();
- $comments = $this->_em->getRepository(__NAMESPACE__ . '\\DDC1654Comment')->findAll();
- $this->assertEquals(0, count($comments));
- }
- public function testManyToManyClearCollectionOrphanRemoval()
- {
- $post = new DDC1654Post();
- $post->comments[] = new DDC1654Comment();
- $post->comments[] = new DDC1654Comment();
- $this->_em->persist($post);
- $this->_em->flush();
- $post->comments->clear();
- $this->_em->flush();
- $this->_em->clear();
- $comments = $this->_em->getRepository(__NAMESPACE__ . '\\DDC1654Comment')->findAll();
- $this->assertEquals(0, count($comments));
- }
- }
- /**
- * @Entity
- */
- class DDC1654Post
- {
- /**
- * @Id @Column(type="integer") @GeneratedValue
- */
- public $id;
- /**
- * @ManyToMany(targetEntity="DDC1654Comment", orphanRemoval=true,
- * cascade={"persist"})
- */
- public $comments = array();
- }
- /**
- * @Entity
- */
- class DDC1654Comment
- {
- /**
- * @Id @Column(type="integer") @GeneratedValue
- */
- public $id;
- }
|