You are here

public function MenuAccessTest::testMenuBlockLinksAccessCheck in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 core/modules/system/src/Tests/Menu/MenuAccessTest.php \Drupal\system\Tests\Menu\MenuAccessTest::testMenuBlockLinksAccessCheck()

Tests menu link for route with access check.

See also

\Drupal\menu_test\Access\AccessCheck::access()

File

core/modules/system/src/Tests/Menu/MenuAccessTest.php, line 41
Contains \Drupal\system\Tests\Menu\MenuAccessTest.

Class

MenuAccessTest
Tests the route access checks on menu links.

Namespace

Drupal\system\Tests\Menu

Code

public function testMenuBlockLinksAccessCheck() {
  $this
    ->drupalPlaceBlock('system_menu_block:account');

  // Test that there's link rendered on the route.
  $this
    ->drupalGet('menu_test_access_check_session');
  $this
    ->assertLink('Test custom route access check');

  // Page still accessible but thre should not be menu link.
  $this
    ->drupalGet('menu_test_access_check_session');
  $this
    ->assertResponse(200);
  $this
    ->assertNoLink('Test custom route access check');

  // Test that page is no more accessible.
  $this
    ->drupalGet('menu_test_access_check_session');
  $this
    ->assertResponse(403);

  // Check for access to a restricted local task from a default local task.
  $this
    ->drupalGet('foo/asdf');
  $this
    ->assertResponse(200);
  $this
    ->assertLinkByHref('foo/asdf');
  $this
    ->assertLinkByHref('foo/asdf/b');
  $this
    ->assertNoLinkByHref('foo/asdf/c');

  // Attempt to access a restricted local task.
  $this
    ->drupalGet('foo/asdf/c');
  $this
    ->assertResponse(403);
  $elements = $this
    ->xpath('//ul[@class=:class]/li/a[@href=:href]', array(
    ':class' => 'tabs primary',
    ':href' => Url::fromRoute('menu_test.router_test1', [
      'bar' => 'asdf',
    ])
      ->toString(),
  ));
  $this
    ->assertTrue(empty($elements), 'No tab linking to foo/asdf found');
  $this
    ->assertNoLinkByHref('foo/asdf/b');
  $this
    ->assertNoLinkByHref('foo/asdf/c');
}