DDC-729 Add more tests for merging with many to many relations
This commit is contained in:
parent
139f8b52ab
commit
a812dab4d4
1 changed files with 103 additions and 1 deletions
|
@ -51,6 +51,100 @@ class DDC729Test extends \Doctrine\Tests\OrmFunctionalTestCase
|
||||||
$a = $this->_em->find(__NAMESPACE__ . '\DDC729A', $aId);
|
$a = $this->_em->find(__NAMESPACE__ . '\DDC729A', $aId);
|
||||||
$this->assertEquals(1, count($a->related));
|
$this->assertEquals(1, count($a->related));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function testUnidirectionalMergeManyToMany()
|
||||||
|
{
|
||||||
|
$a = new DDC729A();
|
||||||
|
$b1 = new DDC729B();
|
||||||
|
$b2 = new DDC729B();
|
||||||
|
$a->related[] = $b1;
|
||||||
|
|
||||||
|
$this->_em->persist($a);
|
||||||
|
$this->_em->persist($b1);
|
||||||
|
$this->_em->persist($b2);
|
||||||
|
$this->_em->flush();
|
||||||
|
$this->_em->clear();
|
||||||
|
$aId = $a->id;
|
||||||
|
|
||||||
|
$a = new DDC729A();
|
||||||
|
$a->id = $aId;
|
||||||
|
|
||||||
|
$a = $this->_em->merge($a);
|
||||||
|
|
||||||
|
$a->related->set(0, $this->_em->merge($b1));
|
||||||
|
|
||||||
|
$a->related->set(1, $this->_em->merge($b2));
|
||||||
|
|
||||||
|
$this->_em->flush();
|
||||||
|
$this->_em->clear();
|
||||||
|
|
||||||
|
$a = $this->_em->find(__NAMESPACE__ . '\DDC729A', $aId);
|
||||||
|
$this->assertEquals(2, count($a->related));
|
||||||
|
}
|
||||||
|
|
||||||
|
public function testBidirectionalMergeManyToMany()
|
||||||
|
{
|
||||||
|
$a = new DDC729A();
|
||||||
|
$b1 = new DDC729B();
|
||||||
|
$b2 = new DDC729B();
|
||||||
|
$a->related[] = $b1;
|
||||||
|
|
||||||
|
$this->_em->persist($a);
|
||||||
|
$this->_em->persist($b1);
|
||||||
|
$this->_em->persist($b2);
|
||||||
|
$this->_em->flush();
|
||||||
|
$this->_em->clear();
|
||||||
|
$aId = $a->id;
|
||||||
|
|
||||||
|
$a = new DDC729A();
|
||||||
|
$a->id = $aId;
|
||||||
|
|
||||||
|
$a = $this->_em->merge($a);
|
||||||
|
|
||||||
|
$a->related->set(0, $this->_em->merge($b1));
|
||||||
|
$b1->related->set(0, $a);
|
||||||
|
|
||||||
|
$a->related->set(1, $this->_em->merge($b2));
|
||||||
|
$b2->related->set(0, $a);
|
||||||
|
|
||||||
|
$this->_em->flush();
|
||||||
|
$this->_em->clear();
|
||||||
|
|
||||||
|
$a = $this->_em->find(__NAMESPACE__ . '\DDC729A', $aId);
|
||||||
|
$this->assertEquals(2, count($a->related));
|
||||||
|
}
|
||||||
|
|
||||||
|
public function testBidirectionalMultiMergeManyToMany()
|
||||||
|
{
|
||||||
|
$a = new DDC729A();
|
||||||
|
$b1 = new DDC729B();
|
||||||
|
$b2 = new DDC729B();
|
||||||
|
$a->related[] = $b1;
|
||||||
|
|
||||||
|
$this->_em->persist($a);
|
||||||
|
$this->_em->persist($b1);
|
||||||
|
$this->_em->persist($b2);
|
||||||
|
$this->_em->flush();
|
||||||
|
$this->_em->clear();
|
||||||
|
$aId = $a->id;
|
||||||
|
|
||||||
|
$a = new DDC729A();
|
||||||
|
$a->id = $aId;
|
||||||
|
|
||||||
|
$a = $this->_em->merge($a);
|
||||||
|
|
||||||
|
$a->related->set(0, $this->_em->merge($b1));
|
||||||
|
$b1->related->set(0, $this->_em->merge($a));
|
||||||
|
|
||||||
|
$a->related->set(1, $this->_em->merge($b2));
|
||||||
|
$b2->related->set(0, $this->_em->merge($a));
|
||||||
|
|
||||||
|
$this->_em->flush();
|
||||||
|
$this->_em->clear();
|
||||||
|
|
||||||
|
$a = $this->_em->find(__NAMESPACE__ . '\DDC729A', $aId);
|
||||||
|
$this->assertEquals(2, count($a->related));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -61,7 +155,7 @@ class DDC729A
|
||||||
/** @Id @GeneratedValue @Column(type="integer") */
|
/** @Id @GeneratedValue @Column(type="integer") */
|
||||||
public $id;
|
public $id;
|
||||||
|
|
||||||
/** @ManyToMany(targetEntity="DDC729B") */
|
/** @ManyToMany(targetEntity="DDC729B", inversedBy="related") */
|
||||||
public $related;
|
public $related;
|
||||||
|
|
||||||
public function __construct()
|
public function __construct()
|
||||||
|
@ -77,4 +171,12 @@ class DDC729B
|
||||||
{
|
{
|
||||||
/** @Id @GeneratedValue @Column(type="integer") */
|
/** @Id @GeneratedValue @Column(type="integer") */
|
||||||
public $id;
|
public $id;
|
||||||
|
|
||||||
|
/** @ManyToMany(targetEntity="DDC729B", mappedBy="related") */
|
||||||
|
public $related;
|
||||||
|
|
||||||
|
public function __construct()
|
||||||
|
{
|
||||||
|
$this->related = new \Doctrine\Common\Collections\ArrayCollection();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue