Each cache region built by the DefaultCacheFactory
should have its own cache with its own unique namespace
This commit is contained in:
parent
514fd008b9
commit
a82eecfc07
1 changed files with 18 additions and 1 deletions
|
@ -257,11 +257,28 @@ class DefaultCacheFactoryTest extends OrmTestCase
|
||||||
*/
|
*/
|
||||||
public function testInvalidFileLockRegionDirectoryException()
|
public function testInvalidFileLockRegionDirectoryException()
|
||||||
{
|
{
|
||||||
$factory = new \Doctrine\ORM\Cache\DefaultCacheFactory($this->regionsConfig, $this->getSharedSecondLevelCacheDriverImpl());
|
$factory = new DefaultCacheFactory($this->regionsConfig, $this->getSharedSecondLevelCacheDriverImpl());
|
||||||
|
|
||||||
$factory->getRegion(array(
|
$factory->getRegion(array(
|
||||||
'usage' => ClassMetadata::CACHE_USAGE_READ_WRITE,
|
'usage' => ClassMetadata::CACHE_USAGE_READ_WRITE,
|
||||||
'region' => 'foo'
|
'region' => 'foo'
|
||||||
));
|
));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function testBuildsNewNamespacedCacheInstancePerRegionInstance()
|
||||||
|
{
|
||||||
|
$factory = new DefaultCacheFactory($this->regionsConfig, $this->getSharedSecondLevelCacheDriverImpl());
|
||||||
|
|
||||||
|
$fooRegion = $factory->getRegion(array(
|
||||||
|
'region' => 'foo',
|
||||||
|
'usage' => ClassMetadata::CACHE_USAGE_READ_ONLY,
|
||||||
|
));
|
||||||
|
$barRegion = $factory->getRegion(array(
|
||||||
|
'region' => 'foo',
|
||||||
|
'usage' => ClassMetadata::CACHE_USAGE_READ_ONLY,
|
||||||
|
));
|
||||||
|
|
||||||
|
$this->assertSame('foo', $fooRegion->getCache()->getNamespace());
|
||||||
|
$this->assertSame('bar', $barRegion->getCache()->getNamespace());
|
||||||
|
}
|
||||||
}
|
}
|
Loading…
Add table
Reference in a new issue