test remove item and clear collection
This commit is contained in:
parent
63580dfe26
commit
fe11831bd7
3 changed files with 115 additions and 16 deletions
|
@ -40,11 +40,20 @@ class ManyToManyPersister extends AbstractCollectionPersister
|
||||||
*/
|
*/
|
||||||
protected function _getDeleteRowSQL(PersistentCollection $coll)
|
protected function _getDeleteRowSQL(PersistentCollection $coll)
|
||||||
{
|
{
|
||||||
|
$columns = array();
|
||||||
$mapping = $coll->getMapping();
|
$mapping = $coll->getMapping();
|
||||||
$class = $this->_em->getClassMetadata(get_class($coll->getOwner()));
|
$class = $this->_em->getClassMetadata(get_class($coll->getOwner()));
|
||||||
|
|
||||||
|
foreach ($mapping['joinTable']['joinColumns'] as $joinColumn) {
|
||||||
|
$columns[] = $this->quoteStrategy->getJoinColumnName($joinColumn, $class, $this->platform);
|
||||||
|
}
|
||||||
|
|
||||||
|
foreach ($mapping['joinTable']['inverseJoinColumns'] as $joinColumn) {
|
||||||
|
$columns[] = $this->quoteStrategy->getJoinColumnName($joinColumn, $class, $this->platform);
|
||||||
|
}
|
||||||
|
|
||||||
return 'DELETE FROM ' . $this->quoteStrategy->getJoinTableName($mapping, $class, $this->platform)
|
return 'DELETE FROM ' . $this->quoteStrategy->getJoinTableName($mapping, $class, $this->platform)
|
||||||
. ' WHERE ' . implode(' = ? AND ', $mapping['joinTableColumns']) . ' = ?';
|
. ' WHERE ' . implode(' = ? AND ', $columns) . ' = ?';
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -155,12 +164,17 @@ class ManyToManyPersister extends AbstractCollectionPersister
|
||||||
*/
|
*/
|
||||||
protected function _getDeleteSQL(PersistentCollection $coll)
|
protected function _getDeleteSQL(PersistentCollection $coll)
|
||||||
{
|
{
|
||||||
$class = $this->_em->getClassMetadata(get_class($coll->getOwner()));
|
$columns = array();
|
||||||
$mapping = $coll->getMapping();
|
$mapping = $coll->getMapping();
|
||||||
|
$class = $this->_em->getClassMetadata(get_class($coll->getOwner()));
|
||||||
$joinTable = $this->quoteStrategy->getJoinTableName($mapping, $class, $this->platform);
|
$joinTable = $this->quoteStrategy->getJoinTableName($mapping, $class, $this->platform);
|
||||||
|
|
||||||
|
foreach ($mapping['joinTable']['joinColumns'] as $joinColumn) {
|
||||||
|
$columns[] = $this->quoteStrategy->getJoinColumnName($joinColumn, $class, $this->platform);
|
||||||
|
}
|
||||||
|
|
||||||
return 'DELETE FROM ' . $joinTable
|
return 'DELETE FROM ' . $joinTable
|
||||||
. ' WHERE ' . implode(' = ? AND ', array_keys($mapping['relationToSourceKeyColumns'])) . ' = ?';
|
. ' WHERE ' . implode(' = ? AND ', $columns) . ' = ?';
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -52,6 +52,25 @@ class User
|
||||||
*/
|
*/
|
||||||
public $groups;
|
public $groups;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @ManyToMany(targetEntity="Group", inversedBy="users", cascade={"all"}, fetch="EXTRA_LAZY")
|
||||||
|
* @JoinTable(name="`quote-extra-lazy-users-groups`",
|
||||||
|
* joinColumns={
|
||||||
|
* @JoinColumn(
|
||||||
|
* name="`user-id`",
|
||||||
|
* referencedColumnName="`user-id`"
|
||||||
|
* )
|
||||||
|
* },
|
||||||
|
* inverseJoinColumns={
|
||||||
|
* @JoinColumn(
|
||||||
|
* name="`group-id`",
|
||||||
|
* referencedColumnName="`group-id`"
|
||||||
|
* )
|
||||||
|
* }
|
||||||
|
* )
|
||||||
|
*/
|
||||||
|
public $extraLazyGroups;
|
||||||
|
|
||||||
public function __construct()
|
public function __construct()
|
||||||
{
|
{
|
||||||
$this->phones = new ArrayCollection;
|
$this->phones = new ArrayCollection;
|
||||||
|
|
|
@ -14,6 +14,11 @@ require_once __DIR__ . '/../../../TestInit.php';
|
||||||
class DDC1885Test extends \Doctrine\Tests\OrmFunctionalTestCase
|
class DDC1885Test extends \Doctrine\Tests\OrmFunctionalTestCase
|
||||||
{
|
{
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var \Doctrine\Tests\Models\Quote\User
|
||||||
|
*/
|
||||||
|
private $user;
|
||||||
|
|
||||||
protected function setUp()
|
protected function setUp()
|
||||||
{
|
{
|
||||||
parent::setUp();
|
parent::setUp();
|
||||||
|
@ -26,28 +31,30 @@ class DDC1885Test extends \Doctrine\Tests\OrmFunctionalTestCase
|
||||||
));
|
));
|
||||||
} catch(\Exception $e) {
|
} catch(\Exception $e) {
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
public function testCreateRetreaveUpdateDelete()
|
|
||||||
{
|
|
||||||
|
|
||||||
$g1 = new Group('G 1');
|
|
||||||
$g2 = new Group('G 2');
|
|
||||||
$user = new User();
|
|
||||||
|
|
||||||
|
$user = new User();
|
||||||
$user->name = "FabioBatSilva";
|
$user->name = "FabioBatSilva";
|
||||||
$user->email = "fabio.bat.silva@gmail.com";
|
$user->email = "fabio.bat.silva@gmail.com";
|
||||||
$user->groups[] = $g1;
|
$user->groups[] = new Group('G 1');
|
||||||
$user->groups[] = $g2;
|
$user->groups[] = new Group('G 2');
|
||||||
|
$this->user = $user;
|
||||||
|
|
||||||
// Create
|
// Create
|
||||||
$this->_em->persist($user);
|
$this->_em->persist($user);
|
||||||
$this->_em->flush();
|
$this->_em->flush();
|
||||||
$this->_em->clear();
|
$this->_em->clear();
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
$u1Id = $user->id;
|
public function testCreateRetreaveUpdateDelete()
|
||||||
$g1Id = $g1->id;
|
{
|
||||||
$g2Id = $g2->id;
|
$user = $this->user;
|
||||||
|
$g1 = $user->getGroups()->get(0);
|
||||||
|
$g2 = $user->getGroups()->get(1);
|
||||||
|
|
||||||
|
$u1Id = $user->id;
|
||||||
|
$g1Id = $g1->id;
|
||||||
|
$g2Id = $g2->id;
|
||||||
|
|
||||||
// Retreave
|
// Retreave
|
||||||
$user = $this->_em->find('Doctrine\Tests\Models\Quote\User', $u1Id);
|
$user = $this->_em->find('Doctrine\Tests\Models\Quote\User', $u1Id);
|
||||||
|
@ -89,4 +96,63 @@ class DDC1885Test extends \Doctrine\Tests\OrmFunctionalTestCase
|
||||||
$this->assertNull($this->_em->find('Doctrine\Tests\Models\Quote\Group', $g2Id));
|
$this->assertNull($this->_em->find('Doctrine\Tests\Models\Quote\Group', $g2Id));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function testRemoveItem()
|
||||||
|
{
|
||||||
|
$user = $this->user;
|
||||||
|
$u1Id = $user->id;
|
||||||
|
$user = $this->_em->find('Doctrine\Tests\Models\Quote\User', $u1Id);
|
||||||
|
|
||||||
|
$this->assertInstanceOf('Doctrine\Tests\Models\Quote\User', $user);
|
||||||
|
$this->assertEquals('FabioBatSilva', $user->name);
|
||||||
|
$this->assertEquals($u1Id, $user->id);
|
||||||
|
|
||||||
|
$this->assertCount(2, $user->groups);
|
||||||
|
$this->assertInstanceOf('Doctrine\Tests\Models\Quote\Group', $user->getGroups()->get(0));
|
||||||
|
$this->assertInstanceOf('Doctrine\Tests\Models\Quote\Group', $user->getGroups()->get(1));
|
||||||
|
|
||||||
|
$user->getGroups()->remove(0);
|
||||||
|
|
||||||
|
// Update
|
||||||
|
$this->_em->persist($user);
|
||||||
|
$this->_em->flush();
|
||||||
|
$this->_em->clear();
|
||||||
|
|
||||||
|
$user = $this->_em->find('Doctrine\Tests\Models\Quote\User', $u1Id);
|
||||||
|
|
||||||
|
$this->assertInstanceOf('Doctrine\Tests\Models\Quote\User', $user);
|
||||||
|
$this->assertEquals('FabioBatSilva', $user->name);
|
||||||
|
$this->assertEquals($u1Id, $user->id);
|
||||||
|
|
||||||
|
$this->assertCount(1, $user->getGroups());
|
||||||
|
}
|
||||||
|
|
||||||
|
public function testClearAll()
|
||||||
|
{
|
||||||
|
$user = $this->user;
|
||||||
|
$u1Id = $user->id;
|
||||||
|
$user = $this->_em->find('Doctrine\Tests\Models\Quote\User', $u1Id);
|
||||||
|
|
||||||
|
$this->assertInstanceOf('Doctrine\Tests\Models\Quote\User', $user);
|
||||||
|
$this->assertEquals('FabioBatSilva', $user->name);
|
||||||
|
$this->assertEquals($u1Id, $user->id);
|
||||||
|
|
||||||
|
$this->assertCount(2, $user->groups);
|
||||||
|
$this->assertInstanceOf('Doctrine\Tests\Models\Quote\Group', $user->getGroups()->get(0));
|
||||||
|
$this->assertInstanceOf('Doctrine\Tests\Models\Quote\Group', $user->getGroups()->get(1));
|
||||||
|
|
||||||
|
$user->getGroups()->clear();
|
||||||
|
|
||||||
|
// Update
|
||||||
|
$this->_em->persist($user);
|
||||||
|
$this->_em->flush();
|
||||||
|
$this->_em->clear();
|
||||||
|
|
||||||
|
$user = $this->_em->find('Doctrine\Tests\Models\Quote\User', $u1Id);
|
||||||
|
|
||||||
|
$this->assertInstanceOf('Doctrine\Tests\Models\Quote\User', $user);
|
||||||
|
$this->assertEquals('FabioBatSilva', $user->name);
|
||||||
|
$this->assertEquals($u1Id, $user->id);
|
||||||
|
|
||||||
|
$this->assertCount(0, $user->getGroups());
|
||||||
|
}
|
||||||
}
|
}
|
Loading…
Add table
Reference in a new issue