| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233 |
- <?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\Adapter;
- use PHPUnit\Framework\MockObject\MockObject;
- use Symfony\Component\Cache\Adapter\AdapterInterface;
- use Symfony\Component\Cache\Adapter\ArrayAdapter;
- use Symfony\Component\Cache\Adapter\ChainAdapter;
- use Symfony\Component\Cache\Adapter\FilesystemAdapter;
- use Symfony\Component\Cache\PruneableInterface;
- use Symfony\Component\Cache\Tests\Fixtures\ExternalAdapter;
- /**
- * @author Kévin Dunglas <dunglas@gmail.com>
- * @group time-sensitive
- */
- class ChainAdapterTest extends AdapterTestCase
- {
- public function createCachePool($defaultLifetime = 0)
- {
- return new ChainAdapter([new ArrayAdapter($defaultLifetime), new ExternalAdapter($defaultLifetime), new FilesystemAdapter('', $defaultLifetime)], $defaultLifetime);
- }
- public function testEmptyAdaptersException()
- {
- $this->expectException('Symfony\Component\Cache\Exception\InvalidArgumentException');
- $this->expectExceptionMessage('At least one adapter must be specified.');
- new ChainAdapter([]);
- }
- public function testInvalidAdapterException()
- {
- $this->expectException('Symfony\Component\Cache\Exception\InvalidArgumentException');
- $this->expectExceptionMessage('The class "stdClass" does not implement');
- new ChainAdapter([new \stdClass()]);
- }
- public function testPrune()
- {
- if (isset($this->skippedTests[__FUNCTION__])) {
- $this->markTestSkipped($this->skippedTests[__FUNCTION__]);
- }
- $cache = new ChainAdapter([
- $this->getPruneableMock(),
- $this->getNonPruneableMock(),
- $this->getPruneableMock(),
- ]);
- $this->assertTrue($cache->prune());
- $cache = new ChainAdapter([
- $this->getPruneableMock(),
- $this->getFailingPruneableMock(),
- $this->getPruneableMock(),
- ]);
- $this->assertFalse($cache->prune());
- }
- public function testMultipleCachesExpirationWhenCommonTtlIsNotSet()
- {
- if (isset($this->skippedTests[__FUNCTION__])) {
- $this->markTestSkipped($this->skippedTests[__FUNCTION__]);
- }
- $adapter1 = new ArrayAdapter(4);
- $adapter2 = new ArrayAdapter(2);
- $cache = new ChainAdapter([$adapter1, $adapter2]);
- $cache->save($cache->getItem('key')->set('value'));
- $item = $adapter1->getItem('key');
- $this->assertTrue($item->isHit());
- $this->assertEquals('value', $item->get());
- $item = $adapter2->getItem('key');
- $this->assertTrue($item->isHit());
- $this->assertEquals('value', $item->get());
- sleep(2);
- $item = $adapter1->getItem('key');
- $this->assertTrue($item->isHit());
- $this->assertEquals('value', $item->get());
- $item = $adapter2->getItem('key');
- $this->assertFalse($item->isHit());
- sleep(2);
- $item = $adapter1->getItem('key');
- $this->assertFalse($item->isHit());
- $adapter2->save($adapter2->getItem('key1')->set('value1'));
- $item = $cache->getItem('key1');
- $this->assertTrue($item->isHit());
- $this->assertEquals('value1', $item->get());
- sleep(2);
- $item = $adapter1->getItem('key1');
- $this->assertTrue($item->isHit());
- $this->assertEquals('value1', $item->get());
- $item = $adapter2->getItem('key1');
- $this->assertFalse($item->isHit());
- sleep(2);
- $item = $adapter1->getItem('key1');
- $this->assertFalse($item->isHit());
- }
- public function testMultipleCachesExpirationWhenCommonTtlIsSet()
- {
- if (isset($this->skippedTests[__FUNCTION__])) {
- $this->markTestSkipped($this->skippedTests[__FUNCTION__]);
- }
- $adapter1 = new ArrayAdapter(4);
- $adapter2 = new ArrayAdapter(2);
- $cache = new ChainAdapter([$adapter1, $adapter2], 6);
- $cache->save($cache->getItem('key')->set('value'));
- $item = $adapter1->getItem('key');
- $this->assertTrue($item->isHit());
- $this->assertEquals('value', $item->get());
- $item = $adapter2->getItem('key');
- $this->assertTrue($item->isHit());
- $this->assertEquals('value', $item->get());
- sleep(2);
- $item = $adapter1->getItem('key');
- $this->assertTrue($item->isHit());
- $this->assertEquals('value', $item->get());
- $item = $adapter2->getItem('key');
- $this->assertFalse($item->isHit());
- sleep(2);
- $item = $adapter1->getItem('key');
- $this->assertFalse($item->isHit());
- $adapter2->save($adapter2->getItem('key1')->set('value1'));
- $item = $cache->getItem('key1');
- $this->assertTrue($item->isHit());
- $this->assertEquals('value1', $item->get());
- sleep(2);
- $item = $adapter1->getItem('key1');
- $this->assertTrue($item->isHit());
- $this->assertEquals('value1', $item->get());
- $item = $adapter2->getItem('key1');
- $this->assertFalse($item->isHit());
- sleep(2);
- $item = $adapter1->getItem('key1');
- $this->assertTrue($item->isHit());
- $this->assertEquals('value1', $item->get());
- sleep(2);
- $item = $adapter1->getItem('key1');
- $this->assertFalse($item->isHit());
- }
- /**
- * @return MockObject|PruneableCacheInterface
- */
- private function getPruneableMock()
- {
- $pruneable = $this
- ->getMockBuilder(PruneableCacheInterface::class)
- ->getMock();
- $pruneable
- ->expects($this->atLeastOnce())
- ->method('prune')
- ->willReturn(true);
- return $pruneable;
- }
- /**
- * @return MockObject|PruneableCacheInterface
- */
- private function getFailingPruneableMock()
- {
- $pruneable = $this
- ->getMockBuilder(PruneableCacheInterface::class)
- ->getMock();
- $pruneable
- ->expects($this->atLeastOnce())
- ->method('prune')
- ->willReturn(false);
- return $pruneable;
- }
- /**
- * @return MockObject|AdapterInterface
- */
- private function getNonPruneableMock()
- {
- return $this
- ->getMockBuilder(AdapterInterface::class)
- ->getMock();
- }
- }
- interface PruneableCacheInterface extends PruneableInterface, AdapterInterface
- {
- }
|