1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88
|
<?php
declare(strict_types=1);
namespace Doctrine\Tests\ORM\Cache;
use Doctrine\ORM\Cache\CacheEntry;
use Doctrine\ORM\Cache\CacheKey;
use Doctrine\ORM\Cache\Region;
use Doctrine\Tests\Mocks\CacheEntryMock;
use Doctrine\Tests\Mocks\CacheKeyMock;
use Doctrine\Tests\OrmFunctionalTestCase;
use Psr\Cache\CacheItemPoolInterface;
use Symfony\Component\Cache\Adapter\ArrayAdapter;
/**
* @template TRegion of Region
* @group DDC-2183
*/
abstract class RegionTestCase extends OrmFunctionalTestCase
{
/**
* @var Region
* @psalm-var TRegion
*/
protected $region;
/** @var CacheItemPoolInterface */
protected $cacheItemPool;
protected function setUp(): void
{
parent::setUp();
$this->cacheItemPool = new ArrayAdapter();
$this->region = $this->createRegion();
}
/** @psalm-return TRegion */
abstract protected function createRegion(): Region;
/** @psalm-return list<array{CacheKeyMock, CacheEntryMock}> */
public static function dataProviderCacheValues(): array
{
return [
[new CacheKeyMock('key.1'), new CacheEntryMock(['id' => 1, 'name' => 'bar'])],
[new CacheKeyMock('key.2'), new CacheEntryMock(['id' => 2, 'name' => 'foo'])],
];
}
/** @dataProvider dataProviderCacheValues */
public function testPutGetContainsEvict(CacheKey $key, CacheEntry $value): void
{
self::assertFalse($this->region->contains($key));
$this->region->put($key, $value);
self::assertTrue($this->region->contains($key));
$actual = $this->region->get($key);
self::assertEquals($value, $actual);
$this->region->evict($key);
self::assertFalse($this->region->contains($key));
}
public function testEvictAll(): void
{
$key1 = new CacheKeyMock('key.1');
$key2 = new CacheKeyMock('key.2');
self::assertFalse($this->region->contains($key1));
self::assertFalse($this->region->contains($key2));
$this->region->put($key1, new CacheEntryMock(['value' => 'foo']));
$this->region->put($key2, new CacheEntryMock(['value' => 'bar']));
self::assertTrue($this->region->contains($key1));
self::assertTrue($this->region->contains($key2));
$this->region->evictAll();
self::assertFalse($this->region->contains($key1));
self::assertFalse($this->region->contains($key2));
}
}
|