function LocalTaskManagerTest::testGetLocalTaskForRouteWithEmptyCache

Same name and namespace in other branches
  1. 9 core/tests/Drupal/Tests/Core/Menu/LocalTaskManagerTest.php \Drupal\Tests\Core\Menu\LocalTaskManagerTest::testGetLocalTaskForRouteWithEmptyCache()
  2. 8.9.x core/tests/Drupal/Tests/Core/Menu/LocalTaskManagerTest.php \Drupal\Tests\Core\Menu\LocalTaskManagerTest::testGetLocalTaskForRouteWithEmptyCache()
  3. 11.x core/tests/Drupal/Tests/Core/Menu/LocalTaskManagerTest.php \Drupal\Tests\Core\Menu\LocalTaskManagerTest::testGetLocalTaskForRouteWithEmptyCache()

Tests the cache of the local task manager with an empty initial cache.

File

core/tests/Drupal/Tests/Core/Menu/LocalTaskManagerTest.php, line 169

Class

LocalTaskManagerTest
@coversDefaultClass \Drupal\Core\Menu\LocalTaskManager[[api-linebreak]] @group Menu

Namespace

Drupal\Tests\Core\Menu

Code

public function testGetLocalTaskForRouteWithEmptyCache() : void {
  $definitions = $this->getLocalTaskFixtures();
  $this->pluginDiscovery
    ->expects($this->once())
    ->method('getDefinitions')
    ->willReturn($definitions);
  $mock_plugin = $this->createMock('Drupal\\Core\\Menu\\LocalTaskInterface');
  $this->setupFactory($mock_plugin);
  $this->setupLocalTaskManager();
  $result = $this->getLocalTasksForRouteResult($mock_plugin);
  $this->cacheBackend
    ->get('local_task_plugins:en:menu_local_task_test_tasks_view')
    ->shouldBeCalled();
  $this->cacheBackend
    ->get('local_task_plugins:en')
    ->shouldBeCalled();
  $this->cacheBackend
    ->set('local_task_plugins:en', $definitions, Cache::PERMANENT, [
    "local_task",
  ])
    ->shouldBeCalled();
  $this->cacheBackend
    ->set('local_task_plugins:en:menu_local_task_test_tasks_view', $this->getLocalTasksCache(), Cache::PERMANENT, [
    'local_task',
  ])
    ->shouldBeCalled();
  $local_tasks = $this->manager
    ->getLocalTasksForRoute('menu_local_task_test_tasks_view');
  $this->assertEquals($result, $local_tasks);
}

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