1
0
mirror of synced 2025-03-06 04:46:13 +03:00

Initial failing test-case to demonstrate cascade-persist problem.

This commit is contained in:
Darien Hager 2015-09-29 16:36:48 -07:00 committed by Marco Pivetta
parent ddccd42bb1
commit c4465abaa0
No known key found for this signature in database
GPG Key ID: 4167D3337FD9D629
2 changed files with 46 additions and 1 deletions

View File

@ -22,7 +22,7 @@ class CmsEmail
public $email;
/**
* @OneToOne(targetEntity="CmsUser", mappedBy="email")
* @OneToOne(targetEntity="CmsUser", mappedBy="email", cascade={"persist"})
*/
public $user;

View File

@ -9,6 +9,7 @@ use Doctrine\ORM\ORMInvalidArgumentException;
use Doctrine\ORM\PersistentCollection;
use Doctrine\ORM\Proxy\Proxy;
use Doctrine\ORM\Query;
use Doctrine\Tests\Models\CMS\CmsEmail;
use Doctrine\ORM\UnitOfWork;
use Doctrine\Tests\Models\CMS\CmsAddress;
use Doctrine\Tests\Models\CMS\CmsArticle;
@ -801,6 +802,50 @@ class BasicFunctionalTest extends OrmFunctionalTestCase
$this->_em->flush();
}
/**
* @group DDC-2922
*/
public function testNewAssociatedEntityWorksWithJustOnePath()
{
/**
* First we persist and flush an e-mail with no user. This seems
* Save an un-owned email with no user. This seems to
* matter for reproducing the bug
*/
$mail = new CmsEmail();
$mail->email = "nobody@example.com";
$mail->user = null;
$this->_em->persist($mail);
$this->_em->flush();
$user = new CmsUser();
$user->username = "beberlei";
$user->name = "Benjamin E.";
$user->status = 'active';
$mail->user = $user;
/**
* Note that we have NOT directly persisted the CmsUser, and CmsAddress
* does NOT have cascade-persist.
*
* However, CmsEmail *does* have a cascade-persist, which ought to
* allow us to save the CmsUser anyway through that connection.
*/
$address = new CmsAddress();
$address->city = "Bonn";
$address->zip = "12354";
$address->country = "Germany";
$address->street = "somestreet";
$address->user = $user;
$this->_em->persist($address);
$this->_em->flush();
}
public function testOneToOneOrphanRemoval()
{
$user = new CmsUser();