function CacheCollectorTest::testGetFromCache

Same name and namespace in other branches
  1. 9 core/tests/Drupal/Tests/Core/Cache/CacheCollectorTest.php \Drupal\Tests\Core\Cache\CacheCollectorTest::testGetFromCache()
  2. 8.9.x core/tests/Drupal/Tests/Core/Cache/CacheCollectorTest.php \Drupal\Tests\Core\Cache\CacheCollectorTest::testGetFromCache()
  3. 11.x core/tests/Drupal/Tests/Core/Cache/CacheCollectorTest.php \Drupal\Tests\Core\Cache\CacheCollectorTest::testGetFromCache()

Tests returning value from the collected cache.

File

core/tests/Drupal/Tests/Core/Cache/CacheCollectorTest.php, line 115

Class

CacheCollectorTest
@coversDefaultClass \Drupal\Core\Cache\CacheCollector[[api-linebreak]] @group Cache

Namespace

Drupal\Tests\Core\Cache

Code

public function testGetFromCache() : void {
  $key = $this->randomMachineName();
  $value = $this->randomMachineName();
  $cache = (object) [
    'data' => [
      $key => $value,
    ],
    'created' => (int) $_SERVER['REQUEST_TIME'],
  ];
  $this->cacheBackend
    ->expects($this->once())
    ->method('get')
    ->with($this->cid)
    ->willReturn($cache);
  $this->assertTrue($this->collector
    ->has($key));
  $this->assertEquals($value, $this->collector
    ->get($key));
  $this->assertEquals(0, $this->collector
    ->getCacheMisses());
}

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