2014-10-24 23:10:37 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Doctrine\Tests\ORM\Functional\Ticket;
|
|
|
|
|
|
|
|
use Doctrine\Common\Collections\ArrayCollection;
|
|
|
|
use Doctrine\ORM\Mapping\Column;
|
|
|
|
use Doctrine\ORM\Mapping\GeneratedValue;
|
|
|
|
use Doctrine\ORM\Mapping\Id;
|
|
|
|
use Doctrine\ORM\Mapping\ManyToOne;
|
|
|
|
use Doctrine\ORM\Mapping\OneToMany;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @group DDC-3343
|
|
|
|
*/
|
|
|
|
class DDC3343Test extends \Doctrine\Tests\OrmFunctionalTestCase
|
|
|
|
{
|
|
|
|
public function testEntityNotDeletedWhenRemovedFromExtraLazyAssociation()
|
|
|
|
{
|
|
|
|
$this->_schemaTool->createSchema(array(
|
2015-01-24 11:41:20 +01:00
|
|
|
$this->_em->getClassMetadata(DDC3343User::CLASSNAME),
|
|
|
|
$this->_em->getClassMetadata(DDC3343Group::CLASSNAME),
|
2014-10-24 23:10:37 +02:00
|
|
|
));
|
|
|
|
|
|
|
|
// Save a group and an associated user (in an extra lazy association)
|
|
|
|
$group = new DDC3343Group();
|
|
|
|
$user = new DDC3343User();
|
|
|
|
|
|
|
|
$group->users->add($user);
|
|
|
|
|
|
|
|
$this->_em->persist($group);
|
|
|
|
$this->_em->persist($user);
|
|
|
|
$this->_em->flush();
|
|
|
|
|
|
|
|
// Fetch the group and the user again and remove the user from the collection.
|
|
|
|
$this->_em->clear();
|
|
|
|
|
2015-01-24 11:41:20 +01:00
|
|
|
$group = $this->_em->find(DDC3343Group::CLASSNAME, $group->id);
|
|
|
|
$user = $this->_em->find(DDC3343User::CLASSNAME, $user->id);
|
2014-10-24 23:10:37 +02:00
|
|
|
|
|
|
|
$group->users->removeElement($user);
|
|
|
|
|
2014-10-25 00:02:57 +02:00
|
|
|
// Even though the collection is extra lazy, the user should not have been deleted.
|
2014-10-24 23:10:37 +02:00
|
|
|
$this->_em->clear();
|
|
|
|
|
2015-01-24 11:41:20 +01:00
|
|
|
/* @var $user DDC3343User */
|
|
|
|
$user = $this->_em->find(DDC3343User::CLASSNAME, $user->id);
|
|
|
|
$this->assertInstanceOf(DDC3343User::CLASSNAME, $user);
|
|
|
|
|
|
|
|
$this->assertNull($user->group);
|
2014-10-24 23:10:37 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @Entity
|
|
|
|
*/
|
|
|
|
class DDC3343User
|
|
|
|
{
|
2015-01-24 11:41:20 +01:00
|
|
|
const CLASSNAME = __CLASS__;
|
|
|
|
|
2014-10-24 23:10:37 +02:00
|
|
|
/**
|
|
|
|
* @Id
|
|
|
|
* @GeneratedValue
|
|
|
|
* @Column(type="integer")
|
|
|
|
*/
|
|
|
|
public $id;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @ManyToOne(targetEntity="DDC3343Group", inversedBy="users")
|
|
|
|
*/
|
2015-01-24 11:41:20 +01:00
|
|
|
public $group;
|
2014-10-24 23:10:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @Entity
|
|
|
|
*/
|
|
|
|
class DDC3343Group
|
|
|
|
{
|
2015-01-24 11:41:20 +01:00
|
|
|
const CLASSNAME = __CLASS__;
|
|
|
|
|
2014-10-24 23:10:37 +02:00
|
|
|
/**
|
|
|
|
* @Id
|
|
|
|
* @GeneratedValue
|
|
|
|
* @Column(type="integer")
|
|
|
|
*/
|
|
|
|
public $id;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @OneToMany(targetEntity="DDC3343User", mappedBy="group", fetch="EXTRA_LAZY")
|
|
|
|
*/
|
|
|
|
public $users;
|
|
|
|
|
|
|
|
public function __construct()
|
|
|
|
{
|
|
|
|
$this->users = new ArrayCollection();
|
|
|
|
}
|
|
|
|
}
|