You are here

public function ViewsDataTest::testCacheCallsWithWarmCacheAndGetAllTables in Drupal 8

Tests the cache calls for all views data.

Warm cache:

  • all tables

File

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

Class

ViewsDataTest
@coversDefaultClass \Drupal\views\ViewsData @group views

Namespace

Drupal\Tests\views\Unit

Code

public function testCacheCallsWithWarmCacheAndGetAllTables() {
  $expected_views_data = $this
    ->viewsDataWithProvider();
  $this->moduleHandler
    ->expects($this
    ->never())
    ->method('getImplementations');

  // Setup a warm cache backend for a single table.
  $this->cacheBackend
    ->expects($this
    ->once())
    ->method('get')
    ->with("views_data:en")
    ->will($this
    ->returnValue((object) [
    'data' => $expected_views_data,
  ]));
  $this->cacheBackend
    ->expects($this
    ->never())
    ->method('set');

  // 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);
  }
}