Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed DDC1778 #336

Merged
merged 1 commit into from Apr 16, 2012
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 6 additions & 2 deletions lib/Doctrine/ORM/PersistentCollection.php
Expand Up @@ -389,6 +389,7 @@ public function remove($key)

if ($this->association !== null &&
$this->association['type'] & ClassMetadata::TO_MANY &&
$this->owner &&
$this->association['orphanRemoval']) {
$this->em->getUnitOfWork()->scheduleOrphanRemoval($removed);
}
Expand Down Expand Up @@ -427,6 +428,7 @@ public function removeElement($element)

if ($this->association !== null &&
$this->association['type'] & ClassMetadata::TO_MANY &&
$this->owner &&
$this->association['orphanRemoval']) {
$this->em->getUnitOfWork()->scheduleOrphanRemoval($element);
}
Expand Down Expand Up @@ -631,7 +633,9 @@ public function clear()

$uow = $this->em->getUnitOfWork();

if ($this->association['type'] & ClassMetadata::TO_MANY && $this->association['orphanRemoval']) {
if ($this->association['type'] & ClassMetadata::TO_MANY &&
$this->association['orphanRemoval'] &&
$this->owner) {
// we need to initialize here, as orphan removal acts like implicit cascadeRemove,
// hence for event listeners we need the objects in memory.
$this->initialize();
Expand Down Expand Up @@ -783,7 +787,7 @@ public function __clone()
}

$this->snapshot = array();

$this->changed();
}
}
74 changes: 74 additions & 0 deletions tests/Doctrine/Tests/ORM/Functional/Ticket/DDC1778Test.php
@@ -0,0 +1,74 @@
<?php

namespace Doctrine\Tests\ORM\Functional\Ticket;

use Doctrine\Tests\Models\CMS\CmsUser;
use Doctrine\Tests\Models\CMS\CmsPhonenumber;

/**
* @group DDC-1778
*/
class DDC1778Test extends \Doctrine\Tests\OrmFunctionalTestCase
{
private $user;
private $phone;

public function setUp()
{
$this->useModelSet('cms');
parent::setUp();

$this->user = new CmsUser();
$this->user->username = "beberlei";
$this->user->name = "Benjamin";
$this->user->status = "active";

$this->phone = new CmsPhoneNumber();
$this->phone->phonenumber = '0123456789';
$this->user->addPhoneNumber($this->phone);

$this->_em->persist($this->user);
$this->_em->persist($this->phone);
$this->_em->flush();
$this->_em->clear();

$this->user = $this->_em->find('Doctrine\\Tests\\Models\\CMS\\CmsUser', $this->user->getId());
$this->phone = $this->_em->find('Doctrine\\Tests\\Models\\CMS\\CmsPhonenumber', $this->phone->phonenumber);
}

public function testClear()
{
$clonedNumbers = clone $this->user->getPhonenumbers();
$clonedNumbers->clear();
$this->_em->flush();
$this->_em->clear();

$this->user = $this->_em->find('Doctrine\\Tests\\Models\\CMS\\CmsUser', $this->user->getId());

$this->assertCount(1, $this->user->getPhonenumbers());
}

public function testRemove()
{
$clonedNumbers = clone $this->user->getPhonenumbers();
$clonedNumbers->remove(0);
$this->_em->flush();
$this->_em->clear();

$this->user = $this->_em->find('Doctrine\\Tests\\Models\\CMS\\CmsUser', $this->user->getId());

$this->assertCount(1, $this->user->getPhonenumbers());
}

public function testRemoveElement()
{
$clonedNumbers = clone $this->user->getPhonenumbers();
$clonedNumbers->removeElement($this->phone);
$this->_em->flush();
$this->_em->clear();

$this->user = $this->_em->find('Doctrine\\Tests\\Models\\CMS\\CmsUser', $this->user->getId());

$this->assertCount(1, $this->user->getPhonenumbers());
}
}