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 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126
|
<?php
declare(strict_types=1);
namespace Doctrine\Tests\ORM\Cache;
use Doctrine\ORM\Cache\CollectionCacheEntry;
use Doctrine\ORM\Cache\Region\DefaultRegion;
use Doctrine\Tests\Mocks\CacheEntryMock;
use Doctrine\Tests\Mocks\CacheKeyMock;
use PHPUnit\Framework\Attributes\Group;
use PHPUnit\Framework\Attributes\Test;
use function array_map;
/** @extends RegionTestCase<DefaultRegion> */
#[Group('DDC-2183')]
class DefaultRegionTest extends RegionTestCase
{
protected function createRegion(): DefaultRegion
{
return new DefaultRegion('default.region.test', $this->cacheItemPool);
}
public function testGetters(): void
{
self::assertEquals('default.region.test', $this->region->getName());
}
public function testSharedRegion(): void
{
$key = new CacheKeyMock('key');
$entry = new CacheEntryMock(['value' => 'foo']);
$region1 = new DefaultRegion('region1', $this->cacheItemPool);
$region2 = new DefaultRegion('region2', $this->cacheItemPool);
self::assertFalse($region1->contains($key));
self::assertFalse($region2->contains($key));
$region1->put($key, $entry);
$region2->put($key, $entry);
self::assertTrue($region1->contains($key));
self::assertTrue($region2->contains($key));
$region1->evictAll();
self::assertFalse($region1->contains($key));
self::assertTrue($region2->contains($key));
}
public function testGetMulti(): void
{
$key1 = new CacheKeyMock('key.1');
$value1 = new CacheEntryMock(['id' => 1, 'name' => 'bar']);
$key2 = new CacheKeyMock('key.2');
$value2 = new CacheEntryMock(['id' => 2, 'name' => 'bar']);
self::assertFalse($this->region->contains($key1));
self::assertFalse($this->region->contains($key2));
$this->region->put($key1, $value1);
$this->region->put($key2, $value2);
self::assertTrue($this->region->contains($key1));
self::assertTrue($this->region->contains($key2));
$actual = $this->region->getMultiple(new CollectionCacheEntry([$key1, $key2]));
self::assertEquals($value1, $actual[0]);
self::assertEquals($value2, $actual[1]);
}
public function testGetMultiPreservesOrderAndKeys(): void
{
$key1 = new CacheKeyMock('key.1');
$value1 = new CacheEntryMock(['id' => 1]);
$key2 = new CacheKeyMock('key.2');
$value2 = new CacheEntryMock(['id' => 2]);
$this->region->put($key1, $value1);
$this->region->put($key2, $value2);
$actual = array_map(
'iterator_to_array',
$this->region->getMultiple(new CollectionCacheEntry(['one' => $key1, 'two' => $key2])),
);
self::assertSame([
'one' => ['id' => 1],
'two' => ['id' => 2],
], $actual);
}
#[Test]
#[Group('GH7266')]
public function corruptedDataDoesNotLeakIntoApplicationWhenGettingSingleEntry(): void
{
$key1 = new CacheKeyMock('key.1');
$this->cacheItemPool->save(
$this->cacheItemPool
->getItem('DC2_REGION_' . $this->region->getName() . '_' . $key1->hash)
->set('a-very-invalid-value'),
);
self::assertTrue($this->region->contains($key1));
self::assertNull($this->region->get($key1));
}
#[Test]
#[Group('GH7266')]
public function corruptedDataDoesNotLeakIntoApplicationWhenGettingMultipleEntries(): void
{
$key1 = new CacheKeyMock('key.1');
$this->cacheItemPool->save(
$this->cacheItemPool
->getItem('DC2_REGION_' . $this->region->getName() . '_' . $key1->hash)
->set('a-very-invalid-value'),
);
self::assertTrue($this->region->contains($key1));
self::assertNull($this->region->getMultiple(new CollectionCacheEntry([$key1])));
}
}
|