Changed some tests to be compatible with the new implementation of
multiget region
This commit is contained in:
parent
e73bd9e9bb
commit
3f64f3252b
3 changed files with 9 additions and 36 deletions
|
@ -181,20 +181,8 @@ class DefaultCacheFactory implements CacheFactory
|
||||||
*/
|
*/
|
||||||
public function buildCollectionHydrator(EntityManagerInterface $em, array $mapping)
|
public function buildCollectionHydrator(EntityManagerInterface $em, array $mapping)
|
||||||
{
|
{
|
||||||
if ($mapping['cache']) {
|
$targetPersister = $em->getUnitOfWork()->getEntityPersister($mapping['targetEntity']);
|
||||||
$targetPersister = $em->getUnitOfWork()->getEntityPersister($mapping['targetEntity']);
|
return new DefaultCollectionHydrator($em, $targetPersister->getCacheRegion());
|
||||||
|
|
||||||
if (! ($targetPersister instanceof CachedPersister)) {
|
|
||||||
throw CacheException::nonCacheableEntity($mapping['targetEntity']);
|
|
||||||
}
|
|
||||||
$targetRegion = $targetPersister->getCacheRegion();
|
|
||||||
|
|
||||||
if ($targetRegion instanceof MultiGetRegion) {
|
|
||||||
return new MultiGetCollectionHydrator($em, $targetRegion);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return new DefaultCollectionHydrator($em);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -218,11 +206,9 @@ class DefaultCacheFactory implements CacheFactory
|
||||||
|
|
||||||
$cacheAdapter->setNamespace($cache['region']);
|
$cacheAdapter->setNamespace($cache['region']);
|
||||||
|
|
||||||
if ($cacheAdapter instanceof MultiGetCache) {
|
$region = ($cacheAdapter instanceof MultiGetCache)
|
||||||
$region = new DefaultMultiGetRegion($cache['region'], $cacheAdapter, $this->regionsConfig->getLifetime($cache['region']));
|
? new DefaultMultiGetRegion($cache['region'], $cacheAdapter, $this->regionsConfig->getLifetime($cache['region']))
|
||||||
} else {
|
: new DefaultRegion($cache['region'], $cacheAdapter, $this->regionsConfig->getLifetime($cache['region']));
|
||||||
$region = new DefaultRegion($cache['region'], $cacheAdapter, $this->regionsConfig->getLifetime($cache['region']));
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($cache['usage'] === ClassMetadata::CACHE_USAGE_READ_WRITE) {
|
if ($cache['usage'] === ClassMetadata::CACHE_USAGE_READ_WRITE) {
|
||||||
|
|
||||||
|
|
|
@ -64,7 +64,6 @@ class DefaultCacheFactoryTest extends OrmTestCase
|
||||||
->with($this->equalTo($metadata->cache))
|
->with($this->equalTo($metadata->cache))
|
||||||
->will($this->returnValue($region));
|
->will($this->returnValue($region));
|
||||||
|
|
||||||
|
|
||||||
$cachedPersister = $this->factory->buildCachedEntityPersister($em, $persister, $metadata);
|
$cachedPersister = $this->factory->buildCachedEntityPersister($em, $persister, $metadata);
|
||||||
|
|
||||||
$this->assertInstanceOf('Doctrine\ORM\Cache\Persister\Entity\CachedEntityPersister', $cachedPersister);
|
$this->assertInstanceOf('Doctrine\ORM\Cache\Persister\Entity\CachedEntityPersister', $cachedPersister);
|
||||||
|
@ -282,17 +281,4 @@ class DefaultCacheFactoryTest extends OrmTestCase
|
||||||
$this->assertSame('bar', $barRegion->getCache()->getNamespace());
|
$this->assertSame('bar', $barRegion->getCache()->getNamespace());
|
||||||
}
|
}
|
||||||
|
|
||||||
public function testBuildCachedCollectioHydrator()
|
|
||||||
{
|
|
||||||
$em = $this->em;
|
|
||||||
$entityName = 'Doctrine\Tests\Models\Cache\State';
|
|
||||||
$metadata = $em->getClassMetadata($entityName);
|
|
||||||
$mapping = $metadata->associationMappings['cities'];
|
|
||||||
|
|
||||||
$mapping['cache']['usage'] = ClassMetadata::CACHE_USAGE_READ_ONLY;
|
|
||||||
|
|
||||||
$hydrator = $this->factory->buildCollectionHydrator($em, $mapping);
|
|
||||||
|
|
||||||
$this->assertInstanceOf('Doctrine\ORM\Cache\MultiGetCollectionHydrator', $hydrator);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -29,7 +29,8 @@ class DefaultCollectionHydratorTest extends OrmFunctionalTestCase
|
||||||
$this->enableSecondLevelCache();
|
$this->enableSecondLevelCache();
|
||||||
parent::setUp();
|
parent::setUp();
|
||||||
|
|
||||||
$this->structure = new DefaultCollectionHydrator($this->_em);
|
$targetPersister = $this->_em->getUnitOfWork()->getEntityPersister(City::CLASSNAME);
|
||||||
|
$this->structure = new DefaultCollectionHydrator($this->_em, $targetPersister);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function testImplementsCollectionEntryStructure()
|
public function testImplementsCollectionEntryStructure()
|
||||||
|
@ -41,8 +42,8 @@ class DefaultCollectionHydratorTest extends OrmFunctionalTestCase
|
||||||
{
|
{
|
||||||
$targetRegion = $this->_em->getCache()->getEntityCacheRegion(City::CLASSNAME);
|
$targetRegion = $this->_em->getCache()->getEntityCacheRegion(City::CLASSNAME);
|
||||||
$entry = new CollectionCacheEntry(array(
|
$entry = new CollectionCacheEntry(array(
|
||||||
array('id'=>31),
|
new EntityCacheKey(City::CLASSNAME, array('id'=>31)),
|
||||||
array('id'=>32),
|
new EntityCacheKey(City::CLASSNAME, array('id'=>32)),
|
||||||
));
|
));
|
||||||
|
|
||||||
$targetRegion->put(new EntityCacheKey(City::CLASSNAME, array('id'=>31)), new EntityCacheEntry(City::CLASSNAME, array('id'=>31, 'name'=>'Foo')));
|
$targetRegion->put(new EntityCacheKey(City::CLASSNAME, array('id'=>31)), new EntityCacheEntry(City::CLASSNAME, array('id'=>31, 'name'=>'Foo')));
|
||||||
|
|
Loading…
Add table
Reference in a new issue