function ViewsDataTest::testCacheCallsWithoutWarmCacheAndGetAllTables

Same name and namespace in other branches
  1. 9 core/modules/views/tests/src/Unit/ViewsDataTest.php \Drupal\Tests\views\Unit\ViewsDataTest::testCacheCallsWithoutWarmCacheAndGetAllTables()
  2. 8.9.x core/modules/views/tests/src/Unit/ViewsDataTest.php \Drupal\Tests\views\Unit\ViewsDataTest::testCacheCallsWithoutWarmCacheAndGetAllTables()
  3. 11.x core/modules/views/tests/src/Unit/ViewsDataTest.php \Drupal\Tests\views\Unit\ViewsDataTest::testCacheCallsWithoutWarmCacheAndGetAllTables()

Tests the cache calls for all views data without a warm cache.

File

core/modules/views/tests/src/Unit/ViewsDataTest.php, line 548

Class

ViewsDataTest
@coversDefaultClass \Drupal\views\ViewsData[[api-linebreak]] @group views

Namespace

Drupal\Tests\views\Unit

Code

public function testCacheCallsWithoutWarmCacheAndGetAllTables() : void {
  $expected_views_data = $this->viewsDataWithProvider();
  $this->setupMockedModuleHandler();
  // Setup a warm cache backend for a single table.
  $this->cacheBackend
    ->expects($this->once())
    ->method('get')
    ->with("views_data:en");
  $this->cacheBackend
    ->expects($this->once())
    ->method('set')
    ->with('views_data:en', $expected_views_data);
  // Initialize the views data cache and repeat with no specified table. This
  // should only load the cache entry for all tables.
  for ($i = 0; $i < 5; $i++) {
    $views_data = $this->viewsData
      ->getAll();
    $this->assertSame($expected_views_data, $views_data);
  }
}

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