Proxy not initialized when parent has get<IDENTIFIER> function. Fixes DDC-1625
This commit is contained in:
parent
e774b1d8c0
commit
bea78f42e3
2 changed files with 29 additions and 1 deletions
|
@ -285,7 +285,7 @@ class ProxyFactory
|
||||||
);
|
);
|
||||||
|
|
||||||
if ($cheapCheck) {
|
if ($cheapCheck) {
|
||||||
$code = file($class->reflClass->getFileName());
|
$code = file($method->getDeclaringClass()->getFileName());
|
||||||
$code = trim(implode(" ", array_slice($code, $method->getStartLine() - 1, $method->getEndLine() - $method->getStartLine() + 1)));
|
$code = trim(implode(" ", array_slice($code, $method->getStartLine() - 1, $method->getEndLine() - $method->getStartLine() + 1)));
|
||||||
|
|
||||||
$pattern = sprintf(self::PATTERN_MATCH_ID_METHOD, $method->getName(), $identifier);
|
$pattern = sprintf(self::PATTERN_MATCH_ID_METHOD, $method->getName(), $identifier);
|
||||||
|
|
|
@ -6,6 +6,7 @@ use Doctrine\ORM\Proxy\ProxyFactory;
|
||||||
use Doctrine\ORM\Proxy\ProxyClassGenerator;
|
use Doctrine\ORM\Proxy\ProxyClassGenerator;
|
||||||
use Doctrine\Tests\Models\ECommerce\ECommerceProduct;
|
use Doctrine\Tests\Models\ECommerce\ECommerceProduct;
|
||||||
use Doctrine\Tests\Models\ECommerce\ECommerceShipping;
|
use Doctrine\Tests\Models\ECommerce\ECommerceShipping;
|
||||||
|
use Doctrine\Tests\Models\Company\CompanyAuction;
|
||||||
|
|
||||||
require_once __DIR__ . '/../../TestInit.php';
|
require_once __DIR__ . '/../../TestInit.php';
|
||||||
|
|
||||||
|
@ -39,6 +40,18 @@ class ReferenceProxyTest extends \Doctrine\Tests\OrmFunctionalTestCase
|
||||||
return $product->getId();
|
return $product->getId();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function createAuction()
|
||||||
|
{
|
||||||
|
$event = new CompanyAuction();
|
||||||
|
$event->setData('Doctrine Cookbook');
|
||||||
|
$this->_em->persist($event);
|
||||||
|
|
||||||
|
$this->_em->flush();
|
||||||
|
$this->_em->clear();
|
||||||
|
|
||||||
|
return $event->getId();
|
||||||
|
}
|
||||||
|
|
||||||
public function testLazyLoadsFieldValuesFromDatabase()
|
public function testLazyLoadsFieldValuesFromDatabase()
|
||||||
{
|
{
|
||||||
$id = $this->createProduct();
|
$id = $this->createProduct();
|
||||||
|
@ -161,6 +174,21 @@ class ReferenceProxyTest extends \Doctrine\Tests\OrmFunctionalTestCase
|
||||||
$this->assertFalse($entity->__isInitialized__, "Getting the identifier doesn't initialize the proxy.");
|
$this->assertFalse($entity->__isInitialized__, "Getting the identifier doesn't initialize the proxy.");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @group DDC-1625
|
||||||
|
*/
|
||||||
|
public function testDoNotInitializeProxyOnGettingTheIdentifier_DDC_1625()
|
||||||
|
{
|
||||||
|
$id = $this->createAuction();
|
||||||
|
|
||||||
|
/* @var $entity Doctrine\Tests\Models\Company\CompanyAuction */
|
||||||
|
$entity = $this->_em->getReference('Doctrine\Tests\Models\Company\CompanyAuction' , $id);
|
||||||
|
|
||||||
|
$this->assertFalse($entity->__isInitialized__, "Pre-Condition: Object is unitialized proxy.");
|
||||||
|
$this->assertEquals($id, $entity->getId());
|
||||||
|
$this->assertFalse($entity->__isInitialized__, "Getting the identifier doesn't initialize the proxy when extending.");
|
||||||
|
}
|
||||||
|
|
||||||
public function testDoNotInitializeProxyOnGettingTheIdentifierAndReturnTheRightType()
|
public function testDoNotInitializeProxyOnGettingTheIdentifierAndReturnTheRightType()
|
||||||
{
|
{
|
||||||
$product = new ECommerceProduct();
|
$product = new ECommerceProduct();
|
||||||
|
|
Loading…
Add table
Reference in a new issue