function ViewExecutableTest::testCacheIsIgnoredDuringPreview

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

@covers ::execute

File

core/modules/views/tests/src/Unit/ViewExecutableTest.php, line 690

Class

ViewExecutableTest
@coversDefaultClass \Drupal\views\ViewExecutable[[api-linebreak]] @group views

Namespace

Drupal\Tests\views\Unit

Code

public function testCacheIsIgnoredDuringPreview() : void {
  /** @var \Drupal\views\ViewExecutable|\PHPUnit\Framework\MockObject\MockObject $view */
  /** @var \Drupal\views\Plugin\views\display\DisplayPluginBase|\PHPUnit\Framework\MockObject\MockObject $display */
  [
    $view,
    $display,
  ] = $this->setupBaseViewAndDisplay();
  // Pager needs to be set to avoid false test failures.
  $view->pager = $this->getMockBuilder(NonePager::class)
    ->disableOriginalConstructor()
    ->getMock();
  $query = $this->getMockBuilder(QueryPluginBase::class)
    ->disableOriginalConstructor()
    ->getMock();
  $view->query = $query;
  $view->built = TRUE;
  $view->live_preview = TRUE;
  $this->noneCache
    ->expects($this->once())
    ->method('cacheGet');
  $query->expects($this->once())
    ->method('execute');
  $view->execute();
}

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