function CacheCollectorTest::testUpdateCacheRace

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

Tests a cache miss, then item created by another request.

File

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

Class

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

Namespace

Drupal\Tests\Core\Cache

Code

public function testUpdateCacheRace() : void {
  $key = $this->randomMachineName();
  $value = $this->randomMachineName();
  $this->collector
    ->setCacheMissData($key, $value);
  $this->collector
    ->get($key);
  // Set up mock objects for the expected calls, first a lock acquire, then
  // cache get to look for existing cache entries, which does find
  // and then it merges them.
  $this->lock
    ->expects($this->once())
    ->method('acquire')
    ->with($this->cid . ':Drupal\\Core\\Cache\\CacheCollector')
    ->willReturn(TRUE);
  $cache = (object) [
    'data' => [
      'other key' => 'other value',
    ],
    'created' => (int) $_SERVER['REQUEST_TIME'] + 1,
  ];
  $this->cacheBackend
    ->expects($this->once())
    ->method('get')
    ->with($this->cid)
    ->willReturn($cache);
  // Destruct the object to trigger the update data process.
  $this->collector
    ->destruct();
}

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