function ViewsDataTest::testCacheCallsWithWarmCacheForInvalidTable

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

Tests the cache calls for a non-existent table.

Warm cache:

  • all tables
  • views_test_data
  • $non_existing_table

File

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

Class

ViewsDataTest
@coversDefaultClass <a href="/api/drupal/core%21modules%21views%21src%21ViewsData.php/class/ViewsData/9" title="Class to manage and lazy load cached views data." class="local">\Drupal\views\ViewsData</a> @group views

Namespace

Drupal\Tests\views\Unit

Code

public function testCacheCallsWithWarmCacheForInvalidTable() {
    $non_existing_table = $this->randomMachineName();
    $this->moduleHandler
        ->expects($this->never())
        ->method('invokeAllWith');
    // Setup a warm cache backend for a single table.
    $this->cacheBackend
        ->expects($this->once())
        ->method('get')
        ->with("views_data:{$non_existing_table}:en")
        ->willReturn((object) [
        'data' => [],
    ]);
    $this->cacheBackend
        ->expects($this->never())
        ->method('set');
    // Initialize the views data cache and request a non-existing table. This
    // will result in the same cache requests as we explicitly write an empty
    // cache entry for non-existing tables to avoid unnecessary requests in
    // those situations. We do have to load the cache entry for all tables to
    // check if the table does exist or not.
    for ($i = 0; $i < 5; $i++) {
        $views_data = $this->viewsData
            ->get($non_existing_table);
        $this->assertSame([], $views_data);
    }
}

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