You are here

NodeAccessMenuLinkTest.php in Zircon Profile 8

Same filename and directory in other branches
  1. 8.0 core/modules/node/src/Tests/NodeAccessMenuLinkTest.php

Namespace

Drupal\node\Tests

File

core/modules/node/src/Tests/NodeAccessMenuLinkTest.php
View source
<?php

/**
 * @file
 * Contains \Drupal\node\Tests\NodeAccessMenuLinkTest.
 */
namespace Drupal\node\Tests;

use Drupal\user\RoleInterface;

/**
 * Tests the interaction of the node access system with menu links.
 *
 * @group node
 */
class NodeAccessMenuLinkTest extends NodeTestBase {

  /**
   * Modules to enable.
   *
   * @var array
   */
  public static $modules = array(
    'menu_ui',
    'block',
  );

  /**
   * A user with permission to manage menu links and create nodes.
   *
   * @var \Drupal\user\UserInterface
   */
  protected $contentAdminUser;
  protected function setUp() {
    parent::setUp();
    $this
      ->drupalPlaceBlock('system_menu_block:main');
    $this->contentAdminUser = $this
      ->drupalCreateUser(array(
      'access content',
      'administer content types',
      'administer menu',
    ));
    $this
      ->config('user.role.' . RoleInterface::ANONYMOUS_ID)
      ->set('permissions', array())
      ->save();
  }

  /**
   * SA-CORE-2015-003: Tests menu links to nodes when node access is restricted.
   */
  function testNodeAccessMenuLink() {
    $menu_link_title = $this
      ->randomString();
    $this
      ->drupalLogin($this->contentAdminUser);
    $edit = [
      'title[0][value]' => $this
        ->randomString(),
      'body[0][value]' => $this
        ->randomString(),
      'menu[enabled]' => 1,
      'menu[title]' => $menu_link_title,
    ];
    $this
      ->drupalPostForm('node/add/page', $edit, t('Save'));
    $this
      ->assertLink($menu_link_title);

    // Ensure anonymous users without "access content" permission do not see
    // this menu link.
    $this
      ->drupalLogout();
    $this
      ->drupalGet('');
    $this
      ->assertNoLink($menu_link_title);

    // Ensure anonymous users with "access content" permission see this menu
    // link.
    $this
      ->config('user.role.' . RoleInterface::ANONYMOUS_ID)
      ->set('permissions', array(
      'access content',
    ))
      ->save();
    $this
      ->drupalGet('');
    $this
      ->assertLink($menu_link_title);
  }

}

Classes

Namesort descending Description
NodeAccessMenuLinkTest Tests the interaction of the node access system with menu links.