-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #7750 from AlexSmerw/issue_7735_null_values_in_ent…
…ities_cache_for_2.6 Fix incorrect return of null values in L2C
- Loading branch information
Showing
2 changed files
with
176 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
172 changes: 172 additions & 0 deletions
172
tests/Doctrine/Tests/ORM/Functional/Ticket/GH7735Test.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,172 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Doctrine\Tests\ORM\Functional\Ticket; | ||
|
||
use Doctrine\Tests\OrmFunctionalTestCase; | ||
use function assert; | ||
|
||
final class GH7735Test extends OrmFunctionalTestCase | ||
{ | ||
public function setUp() : void | ||
{ | ||
$this->enableSecondLevelCache(); | ||
parent::setUp(); | ||
|
||
$this->_schemaTool->createSchema( | ||
[ | ||
$this->_em->getClassMetadata(GH7735Car::class), | ||
$this->_em->getClassMetadata(GH7735Power::class), | ||
$this->_em->getClassMetadata(GH7735Engine::class), | ||
] | ||
); | ||
|
||
$this->_em->persist(new GH7735Car(1, new GH7735Engine(1, 'turbo', new GH7735Power(1)))); | ||
$this->_em->flush(); | ||
$this->_em->clear(); | ||
} | ||
|
||
/** | ||
* @test | ||
* @group GH7735 | ||
*/ | ||
public function findByReturnsCachedEntity() : void | ||
{ | ||
$this->_em->getCache()->evictEntityRegion(GH7735Power::class); | ||
|
||
$car = $this->_em->find(GH7735Car::class, 1); | ||
assert($car instanceof GH7735Car); | ||
|
||
self::assertSame('turbo', $car->getEngine()->getModel()); | ||
self::assertSame(1, $car->getEngine()->getPower()->getId()); | ||
} | ||
} | ||
|
||
/** | ||
* @Entity @Cache(usage="READ_ONLY") | ||
*/ | ||
class GH7735Car | ||
{ | ||
/** | ||
* @Id | ||
* @Column(type="integer") | ||
* @var int | ||
*/ | ||
private $id; | ||
|
||
/** | ||
* @ManyToOne(targetEntity=GH7735Engine::class, cascade={"all"}) | ||
* @JoinColumn(nullable=false) | ||
* @Cache("READ_ONLY") | ||
* @var GH7735Engine | ||
*/ | ||
private $engine; | ||
|
||
public function __construct(int $id, GH7735Engine $engine) | ||
{ | ||
$this->id = $id; | ||
$this->engine = $engine; | ||
} | ||
|
||
public function getId() : int | ||
{ | ||
return $this->id; | ||
} | ||
|
||
public function getEngine() : GH7735Engine | ||
{ | ||
return $this->engine; | ||
} | ||
} | ||
|
||
/** | ||
* @Entity | ||
* @Cache(usage="READ_ONLY") | ||
*/ | ||
class GH7735Engine | ||
{ | ||
/** | ||
* @Id | ||
* @Column(type="integer") | ||
* @var int | ||
*/ | ||
private $id; | ||
|
||
/** | ||
* @OneToOne(targetEntity=GH7735Power::class, mappedBy="engine", cascade={"all"}) | ||
* @Cache("READ_ONLY") | ||
* @var GH7735Power | ||
*/ | ||
private $power; | ||
|
||
/** | ||
* @Column | ||
* @var string | ||
*/ | ||
private $model; | ||
|
||
public function __construct(int $id, string $model, GH7735Power $power) | ||
{ | ||
$this->id = $id; | ||
$this->model = $model; | ||
$this->power = $power; | ||
|
||
$power->setEngine($this); | ||
} | ||
|
||
public function getId() : int | ||
{ | ||
return $this->id; | ||
} | ||
|
||
public function getPower() : GH7735Power | ||
{ | ||
return $this->power; | ||
} | ||
|
||
public function getModel() : string | ||
{ | ||
return $this->model; | ||
} | ||
} | ||
|
||
/** | ||
* @Entity | ||
* @Cache(usage="READ_ONLY") | ||
*/ | ||
class GH7735Power | ||
{ | ||
/** | ||
* @Id | ||
* @Column(type="integer") | ||
*/ | ||
private $id; | ||
|
||
/** | ||
* @OneToOne(targetEntity=GH7735Engine::class, inversedBy="power") | ||
* @Cache("READ_ONLY") | ||
* @var GH7735Engine | ||
*/ | ||
private $engine; | ||
|
||
public function __construct(int $id) | ||
{ | ||
$this->id = $id; | ||
} | ||
|
||
public function getId() : int | ||
{ | ||
return $this->id; | ||
} | ||
|
||
public function setEngine(GH7735Engine $engine) : void | ||
{ | ||
$this->engine = $engine; | ||
} | ||
|
||
public function getEngine() : GH7735Engine | ||
{ | ||
return $this->engine; | ||
} | ||
} |