public function ViewsDataTest::testFullGetCache in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/modules/views/tests/src/Unit/ViewsDataTest.php \Drupal\Tests\views\Unit\ViewsDataTest::testFullGetCache()
Tests the caching of the full views data.
File
- core/
modules/ views/ tests/ src/ Unit/ ViewsDataTest.php, line 305 - Contains \Drupal\Tests\views\Unit\ViewsDataTest.
Class
- ViewsDataTest
- @coversDefaultClass \Drupal\views\ViewsData @group views
Namespace
Drupal\Tests\views\UnitCode
public function testFullGetCache() {
$expected_views_data = $this
->viewsDataWithProvider();
// Views data should be invoked once.
$this
->setupMockedModuleHandler();
$this->moduleHandler
->expects($this
->once())
->method('alter')
->with('views_data', $expected_views_data);
$this->cacheBackend
->expects($this
->once())
->method('get')
->with("views_data:en")
->will($this
->returnValue(FALSE));
$views_data = $this->viewsData
->get();
$this
->assertSame($expected_views_data, $views_data);
$views_data = $this->viewsData
->get();
$this
->assertSame($expected_views_data, $views_data);
}