/
githubmirror
/
symfony
Обзор
Документация
Войти
/
githubmirror
/
symfony
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
8.2
src/Symfony/Component/Cache/Tests/Psr16CacheTest.php
208 строк
7 KB
Nicolas Grekas
Merge branch '6.4' into 7.4
07 апр 2026, 23:42
07 апр 2026, 23:42
ca9f4bf
Код
Авторство
О чём код?
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Cache\Tests; use Cache\IntegrationTests\SimpleCacheTest; use PHPUnit\Framework\Attributes\Group; use Psr\SimpleCache\CacheInterface; use Symfony\Component\Cache\Adapter\ArrayAdapter; use Symfony\Component\Cache\Adapter\FilesystemAdapter; use Symfony\Component\Cache\Adapter\TagAwareAdapter; use Symfony\Component\Cache\PruneableInterface; use Symfony\Component\Cache\Psr16Cache; #[Group('time-sensitive')] class Psr16CacheTest extends SimpleCacheTest { protected function setUp(): void { if (\array_key_exists('testPrune', $this->skippedTests)) { return; } $pool = $this->createSimpleCache(); if ($pool instanceof Psr16Cache) { $pool = ((array) $pool)[\sprintf("\0%s\0pool", Psr16Cache::class)]; } if (!$pool instanceof PruneableInterface) { $this->skippedTests['testPrune'] = 'Not a pruneable cache pool.'; } try { \assert(false === true, new \Exception()); $this->skippedTests['testGetInvalidKeys'] = $this->skippedTests['testGetMultipleInvalidKeys'] = $this->skippedTests['testGetMultipleNoIterable'] = $this->skippedTests['testSetInvalidKeys'] = $this->skippedTests['testSetMultipleInvalidKeys'] = $this->skippedTests['testSetMultipleNoIterable'] = $this->skippedTests['testHasInvalidKeys'] = $this->skippedTests['testDeleteInvalidKeys'] = $this->skippedTests['testDeleteMultipleInvalidKeys'] = $this->skippedTests['testDeleteMultipleNoIterable'] = 'Keys are checked only when assert() is enabled.'; } catch (\Exception $e) { } } public function createSimpleCache(int $defaultLifetime = 0): CacheInterface { return new Psr16Cache(new FilesystemAdapter('', $defaultLifetime)); } public static function validKeys(): array { return array_merge(parent::validKeys(), [["a\0b"]]); } public function testDefaultLifeTime() { if (isset($this->skippedTests[__FUNCTION__])) { $this->markTestSkipped($this->skippedTests[__FUNCTION__]); } $cache = $this->createSimpleCache(2); $cache->clear(); $cache->set('key.dlt', 'value'); sleep(1); $this->assertSame('value', $cache->get('key.dlt')); sleep(2); $this->assertNull($cache->get('key.dlt')); $cache->clear(); } public function testNotUnserializable() { if (isset($this->skippedTests[__FUNCTION__])) { $this->markTestSkipped($this->skippedTests[__FUNCTION__]); } $cache = $this->createSimpleCache(); $cache->clear(); $cache->set('foo', new NotUnserializable()); $this->assertNull($cache->get('foo')); $cache->setMultiple(['foo' => new NotUnserializable()]); foreach ($cache->getMultiple(['foo']) as $value) { } $this->assertNull($value); $cache->clear(); } public function testPrune() { if (isset($this->skippedTests[__FUNCTION__])) { $this->markTestSkipped($this->skippedTests[__FUNCTION__]); } /** @var PruneableInterface|CacheInterface $cache */ $cache = $this->createSimpleCache(); $cache->clear(); $cache->set('foo', 'foo-val', new \DateInterval('PT05S')); $cache->set('bar', 'bar-val', new \DateInterval('PT10S')); $cache->set('baz', 'baz-val', new \DateInterval('PT15S')); $cache->set('qux', 'qux-val', new \DateInterval('PT20S')); sleep(30); $cache->prune(); $this->assertTrue($this->isPruned($cache, 'foo')); $this->assertTrue($this->isPruned($cache, 'bar')); $this->assertTrue($this->isPruned($cache, 'baz')); $this->assertTrue($this->isPruned($cache, 'qux')); $cache->set('foo', 'foo-val'); $cache->set('bar', 'bar-val', new \DateInterval('PT20S')); $cache->set('baz', 'baz-val', new \DateInterval('PT40S')); $cache->set('qux', 'qux-val', new \DateInterval('PT80S')); $cache->prune(); $this->assertFalse($this->isPruned($cache, 'foo')); $this->assertFalse($this->isPruned($cache, 'bar')); $this->assertFalse($this->isPruned($cache, 'baz')); $this->assertFalse($this->isPruned($cache, 'qux')); sleep(30); $cache->prune(); $this->assertFalse($this->isPruned($cache, 'foo')); $this->assertTrue($this->isPruned($cache, 'bar')); $this->assertFalse($this->isPruned($cache, 'baz')); $this->assertFalse($this->isPruned($cache, 'qux')); sleep(30); $cache->prune(); $this->assertFalse($this->isPruned($cache, 'foo')); $this->assertTrue($this->isPruned($cache, 'baz')); $this->assertFalse($this->isPruned($cache, 'qux')); sleep(30); $cache->prune(); $this->assertFalse($this->isPruned($cache, 'foo')); $this->assertTrue($this->isPruned($cache, 'qux')); $cache->clear(); } protected function isPruned(CacheInterface $cache, string $name): bool { if (Psr16Cache::class !== $cache::class) { $this->fail('Test classes for pruneable caches must implement `isPruned($cache, $name)` method.'); } $pool = ((array) $cache)[\sprintf("\0%s\0pool", Psr16Cache::class)]; $getFileMethod = (new \ReflectionObject($pool))->getMethod('getFile'); return !file_exists($getFileMethod->invoke($pool, $name)); } public function testGetMultipleWithTagAwareAdapter() { $cache = new Psr16Cache(new TagAwareAdapter(new ArrayAdapter())); $cache->set('foo', 'foo-val'); $cache->set('bar', 'bar-val'); $this->assertSame('foo-val', $cache->get('foo')); $this->assertSame('bar-val', $cache->get('bar')); $this->assertSame(['foo' => 'foo-val', 'bar' => 'bar-val'], $cache->getMultiple(['foo', 'bar'])); } public function testGetMultipleWithTtl() { $cache = new Psr16Cache(new ArrayAdapter()); $cache->set('foo', 'foo-val', 60); $cache->set('bar', 'bar-val', 60); $this->assertSame('foo-val', $cache->get('foo')); $this->assertSame('bar-val', $cache->get('bar')); $this->assertSame(['foo' => 'foo-val', 'bar' => 'bar-val'], $cache->getMultiple(['foo', 'bar'])); } } class NotUnserializable { public function __unserialize(array $data): void { throw new \Exception(__CLASS__); } }