112 lines
2.9 KiB
PHP
112 lines
2.9 KiB
PHP
|
<?php
|
||
|
|
||
|
namespace Doctrine\Tests\ORM\Functional\Ticket;
|
||
|
|
||
|
use Doctrine\Common\Collections\ArrayCollection;
|
||
|
use Doctrine\Tests\Models\CMS\CmsArticle;
|
||
|
use Doctrine\Tests\Models\CMS\CmsUser;
|
||
|
require_once __DIR__ . '/../../../TestInit.php';
|
||
|
|
||
|
/**
|
||
|
* @group DDC-1461
|
||
|
*/
|
||
|
class DDC1461Test extends \Doctrine\Tests\OrmFunctionalTestCase
|
||
|
{
|
||
|
public function setUp()
|
||
|
{
|
||
|
$this->useModelSet('cms');
|
||
|
parent::setUp();
|
||
|
|
||
|
try {
|
||
|
$this->_schemaTool->createSchema(array(
|
||
|
$this->_em->getClassMetadata(__NAMESPACE__ . '\DDC1461TwitterAccount'),
|
||
|
$this->_em->getClassMetadata(__NAMESPACE__ . '\DDC1461User')
|
||
|
));
|
||
|
} catch(\Exception $e) {
|
||
|
|
||
|
}
|
||
|
}
|
||
|
|
||
|
public function testChangeDetectionDeferredImplitic()
|
||
|
{
|
||
|
$address = new \Doctrine\Tests\Models\CMS\CmsAddress();
|
||
|
$address->city = "Karlsruhe";
|
||
|
$address->country = "Germany";
|
||
|
$address->street = "somestreet";
|
||
|
$address->zip = 12345;
|
||
|
|
||
|
$this->_em->persist($address);
|
||
|
$this->_em->flush();
|
||
|
|
||
|
$user = new CmsUser();
|
||
|
$user->name = "schmittjoh";
|
||
|
$user->username = "schmittjoh";
|
||
|
$user->status = "active";
|
||
|
|
||
|
$address->setUser($user);
|
||
|
$this->_em->flush();
|
||
|
$this->_em->clear();
|
||
|
|
||
|
$user = $this->_em->find(get_class($user), $user->getId());
|
||
|
$this->assertNotNull($user->getAddress());
|
||
|
$this->assertEquals("Karlsruhe", $user->getAddress()->getCity());
|
||
|
}
|
||
|
|
||
|
public function testChangeDetectionDeferredExplicit()
|
||
|
{
|
||
|
$user = new DDC1461User;
|
||
|
$this->_em->persist($user);
|
||
|
$this->_em->flush();
|
||
|
|
||
|
$this->assertEquals(\Doctrine\ORM\UnitOfWork::STATE_MANAGED, $this->_em->getUnitOfWork()->getEntityState($user, \Doctrine\ORM\UnitOfWork::STATE_NEW), "Entity should be managed.");
|
||
|
$this->assertEquals(\Doctrine\ORM\UnitOfWork::STATE_MANAGED, $this->_em->getUnitOfWork()->getEntityState($user), "Entity should be managed.");
|
||
|
|
||
|
$acc = new DDC1461TwitterAccount;
|
||
|
$user->twitterAccount = $acc;
|
||
|
|
||
|
$this->_em->persist($user);
|
||
|
$this->_em->flush();
|
||
|
|
||
|
$user = $this->_em->find(get_class($user), $user->id);
|
||
|
$this->assertNotNull($user->twitterAccount);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @Entity
|
||
|
* @ChangeTrackingPolicy("DEFERRED_EXPLICIT")
|
||
|
*/
|
||
|
class DDC1461User
|
||
|
{
|
||
|
/**
|
||
|
* @Id
|
||
|
* @GeneratedValue(strategy="AUTO")
|
||
|
* @Column(type="integer")
|
||
|
*/
|
||
|
public $id;
|
||
|
|
||
|
/**
|
||
|
* @OneToOne(targetEntity="DDC1461TwitterAccount", orphanRemoval=true, fetch="EAGER", cascade = {"persist"}, inversedBy="user")
|
||
|
* @var TwitterAccount
|
||
|
*/
|
||
|
public $twitterAccount;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @Entity
|
||
|
* @ChangeTrackingPolicy("DEFERRED_EXPLICIT")
|
||
|
*/
|
||
|
class DDC1461TwitterAccount
|
||
|
{
|
||
|
/**
|
||
|
* @Id
|
||
|
* @GeneratedValue(strategy="AUTO")
|
||
|
* @Column(type="integer")
|
||
|
*/
|
||
|
public $id;
|
||
|
|
||
|
/**
|
||
|
* @OneToOne(targetEntity="DDC1461User", fetch="EAGER")
|
||
|
*/
|
||
|
public $user;
|
||
|
}
|