class ChainedFastBackendTest

Same name in this branch
  1. 9 core/tests/Drupal/KernelTests/Core/Cache/ChainedFastBackendTest.php \Drupal\KernelTests\Core\Cache\ChainedFastBackendTest
Same name and namespace in other branches
  1. 8.9.x core/tests/Drupal/KernelTests/Core/Cache/ChainedFastBackendTest.php \Drupal\KernelTests\Core\Cache\ChainedFastBackendTest
  2. 8.9.x core/tests/Drupal/Tests/Core/Cache/ChainedFastBackendTest.php \Drupal\Tests\Core\Cache\ChainedFastBackendTest
  3. 10 core/tests/Drupal/KernelTests/Core/Cache/ChainedFastBackendTest.php \Drupal\KernelTests\Core\Cache\ChainedFastBackendTest
  4. 10 core/tests/Drupal/Tests/Core/Cache/ChainedFastBackendTest.php \Drupal\Tests\Core\Cache\ChainedFastBackendTest
  5. 11.x core/tests/Drupal/KernelTests/Core/Cache/ChainedFastBackendTest.php \Drupal\KernelTests\Core\Cache\ChainedFastBackendTest
  6. 11.x core/tests/Drupal/Tests/Core/Cache/ChainedFastBackendTest.php \Drupal\Tests\Core\Cache\ChainedFastBackendTest

@coversDefaultClass \Drupal\Core\Cache\ChainedFastBackend @group Cache

Hierarchy

Expanded class hierarchy of ChainedFastBackendTest

File

core/tests/Drupal/Tests/Core/Cache/ChainedFastBackendTest.php, line 13

Namespace

Drupal\Tests\Core\Cache
View source
class ChainedFastBackendTest extends UnitTestCase {
    
    /**
     * The consistent cache backend.
     *
     * @var \Drupal\Core\Cache\CacheBackendInterface
     */
    protected $consistentCache;
    
    /**
     * The fast cache backend.
     *
     * @var \Drupal\Core\Cache\CacheBackendInterface
     */
    protected $fastCache;
    
    /**
     * The cache bin.
     *
     * @var string
     */
    protected $bin;
    
    /**
     * Tests a get() on the fast backend, with no hit on the consistent backend.
     */
    public function testGetDoesNotHitConsistentBackend() {
        $consistent_cache = $this->createMock('Drupal\\Core\\Cache\\CacheBackendInterface');
        $timestamp_cid = ChainedFastBackend::LAST_WRITE_TIMESTAMP_PREFIX . 'cache_foo';
        // Use the request time because that is what we will be comparing against.
        $timestamp_item = (object) [
            'cid' => $timestamp_cid,
            'data' => (int) $_SERVER['REQUEST_TIME'] - 60,
        ];
        $consistent_cache->expects($this->once())
            ->method('get')
            ->with($timestamp_cid)
            ->willReturn($timestamp_item);
        $consistent_cache->expects($this->never())
            ->method('getMultiple');
        $fast_cache = new MemoryBackend();
        $fast_cache->set('foo', 'baz');
        $chained_fast_backend = new ChainedFastBackend($consistent_cache, $fast_cache, 'foo');
        $this->assertEquals('baz', $chained_fast_backend->get('foo')->data);
    }
    
    /**
     * Tests a fast cache miss gets data from the consistent cache backend.
     */
    public function testFallThroughToConsistentCache() {
        $timestamp_item = (object) [
            'cid' => ChainedFastBackend::LAST_WRITE_TIMESTAMP_PREFIX . 'cache_foo',
            // Time travel is easy.
'data' => time() + 60,
        ];
        $cache_item = (object) [
            'cid' => 'foo',
            'data' => 'baz',
            'created' => time(),
            'expire' => time() + 3600,
            'tags' => [
                'tag',
            ],
        ];
        $consistent_cache = $this->createMock('Drupal\\Core\\Cache\\CacheBackendInterface');
        $fast_cache = $this->createMock('Drupal\\Core\\Cache\\CacheBackendInterface');
        // We should get a call for the timestamp on the consistent backend.
        $consistent_cache->expects($this->once())
            ->method('get')
            ->with($timestamp_item->cid)
            ->willReturn($timestamp_item);
        // We should get a call for the cache item on the consistent backend.
        $consistent_cache->expects($this->once())
            ->method('getMultiple')
            ->with([
            $cache_item->cid,
        ])
            ->willReturn([
            $cache_item->cid => $cache_item,
        ]);
        // We should get a call for the cache item on the fast backend.
        $fast_cache->expects($this->once())
            ->method('getMultiple')
            ->with([
            $cache_item->cid,
        ])
            ->willReturn([
            $cache_item->cid => $cache_item,
        ]);
        // We should get a call to set the cache item on the fast backend.
        $fast_cache->expects($this->once())
            ->method('set')
            ->with($cache_item->cid, $cache_item->data, $cache_item->expire);
        $chained_fast_backend = new ChainedFastBackend($consistent_cache, $fast_cache, 'foo');
        $this->assertEquals('baz', $chained_fast_backend->get('foo')->data);
    }

}

Members

Title Sort descending Deprecated Modifiers Object type Summary Overrides
ChainedFastBackendTest::$bin protected property The cache bin.
ChainedFastBackendTest::$consistentCache protected property The consistent cache backend.
ChainedFastBackendTest::$fastCache protected property The fast cache backend.
ChainedFastBackendTest::testFallThroughToConsistentCache public function Tests a fast cache miss gets data from the consistent cache backend.
ChainedFastBackendTest::testGetDoesNotHitConsistentBackend public function Tests a get() on the fast backend, with no hit on the consistent backend.
PhpUnitWarnings::$deprecationWarnings private static property Deprecation warnings from PHPUnit to raise with @trigger_error().
PhpUnitWarnings::addWarning public function Converts PHPUnit deprecation warnings to E_USER_DEPRECATED.
UnitTestCase::$randomGenerator protected property The random generator.
UnitTestCase::$root protected property The app root. 1
UnitTestCase::assertArrayEquals Deprecated protected function Asserts if two arrays are equal by sorting them first.
UnitTestCase::getClassResolverStub protected function Returns a stub class resolver.
UnitTestCase::getConfigFactoryStub public function Returns a stub config factory that behaves according to the passed array.
UnitTestCase::getConfigStorageStub public function Returns a stub config storage that returns the supplied configuration.
UnitTestCase::getContainerWithCacheTagsInvalidator protected function Sets up a container with a cache tags invalidator.
UnitTestCase::getRandomGenerator protected function Gets the random generator for the utility methods.
UnitTestCase::getStringTranslationStub public function Returns a stub translation manager that just returns the passed string.
UnitTestCase::randomMachineName public function Generates a unique random string containing letters and numbers.
UnitTestCase::setUp protected function 338
UnitTestCase::setUpBeforeClass public static function

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.