1
0
mirror of synced 2025-02-03 13:59:27 +03:00

79 lines
2.3 KiB
PHP

<?php
namespace Doctrine\Tests\Functional\Ticket;
use Doctrine\Tests\OrmFunctionalTestCase;
/**
* @group #6217
*/
final class GH6217Test extends OrmFunctionalTestCase
{
public function setUp() : void
{
$this->enableSecondLevelCache();
parent::setUp();
$this->_schemaTool->createSchema([
$this->_em->getClassMetadata(GH6217AssociatedEntity::class),
$this->_em->getClassMetadata(GH6217FetchedEntity::class),
]);
}
public function testLoadingOfSecondLevelCacheOnEagerAssociations() : void
{
$lazy = new GH6217AssociatedEntity();
$eager = new GH6217AssociatedEntity();
$fetched = new GH6217FetchedEntity($lazy, $eager);
$this->_em->persist($eager);
$this->_em->persist($lazy);
$this->_em->persist($fetched);
$this->_em->flush();
$this->_em->clear();
$repository = $this->_em->getRepository(GH6217FetchedEntity::class);
$filters = ['eager' => $eager->id];
self::assertCount(1, $repository->findBy($filters));
$queryCount = $this->getCurrentQueryCount();
/* @var $found GH6217FetchedEntity[] */
$found = $repository->findBy($filters);
self::assertCount(1, $found);
self::assertInstanceOf(GH6217FetchedEntity::class, $found[0]);
self::assertSame($lazy->id, $found[0]->lazy->id);
self::assertSame($eager->id, $found[0]->eager->id);
self::assertEquals($queryCount, $this->getCurrentQueryCount(), 'No queries were executed in `findBy`');
}
}
/** @Entity @Cache(usage="NONSTRICT_READ_WRITE") */
class GH6217AssociatedEntity
{
/** @Id @Column(type="string") @GeneratedValue(strategy="NONE") */
public $id;
public function __construct()
{
$this->id = uniqid(self::class, true);
}
}
/** @Entity @Cache(usage="NONSTRICT_READ_WRITE") */
class GH6217FetchedEntity
{
/** @Id @Cache("NONSTRICT_READ_WRITE") @ManyToOne(targetEntity=GH6217AssociatedEntity::class) */
public $lazy;
/** @Id @Cache("NONSTRICT_READ_WRITE") @ManyToOne(targetEntity=GH6217AssociatedEntity::class, fetch="EAGER") */
public $eager;
public function __construct(GH6217AssociatedEntity $lazy, GH6217AssociatedEntity $eager)
{
$this->lazy = $lazy;
$this->eager = $eager;
}
}