ForumNodeAccessTest.php in Zircon Profile 8.0
Same filename and directory in other branches
Contains \Drupal\forum\Tests\ForumNodeAccessTest.
Namespace
Drupal\forum\TestsFile
core/modules/forum/src/Tests/ForumNodeAccessTest.phpView source
<?php
/**
 * @file
 * Contains \Drupal\forum\Tests\ForumNodeAccessTest.
 */
namespace Drupal\forum\Tests;
use Drupal\simpletest\WebTestBase;
use Drupal\node\Entity\NodeType;
/**
 * Tests forum block view for private node access.
 *
 * @group forum
 */
class ForumNodeAccessTest extends WebTestBase {
  /**
   * Modules to enable.
   *
   * @var array
   */
  public static $modules = array(
    'node',
    'comment',
    'forum',
    'taxonomy',
    'tracker',
    'node_access_test',
    'block',
  );
  protected function setUp() {
    parent::setUp();
    node_access_rebuild();
    node_access_test_add_field(NodeType::load('forum'));
    \Drupal::state()
      ->set('node_access_test.private', TRUE);
  }
  /**
   * Creates some users and creates a public node and a private node.
   *
   * Adds both active forum topics and new forum topics blocks to the sidebar.
   * Tests to ensure private node/public node access is respected on blocks.
   */
  function testForumNodeAccess() {
    // Create some users.
    $access_user = $this
      ->drupalCreateUser(array(
      'node test view',
    ));
    $no_access_user = $this
      ->drupalCreateUser();
    $admin_user = $this
      ->drupalCreateUser(array(
      'access administration pages',
      'administer modules',
      'administer blocks',
      'create forum content',
    ));
    $this
      ->drupalLogin($admin_user);
    // Create a private node.
    $private_node_title = $this
      ->randomMachineName(20);
    $edit = array(
      'title[0][value]' => $private_node_title,
      'body[0][value]' => $this
        ->randomMachineName(200),
      'private[0][value]' => TRUE,
    );
    $this
      ->drupalPostForm('node/add/forum', $edit, t('Save'), array(
      'query' => array(
        'forum_id' => 1,
      ),
    ));
    $private_node = $this
      ->drupalGetNodeByTitle($private_node_title);
    $this
      ->assertTrue(!empty($private_node), 'New private forum node found in database.');
    // Create a public node.
    $public_node_title = $this
      ->randomMachineName(20);
    $edit = array(
      'title[0][value]' => $public_node_title,
      'body[0][value]' => $this
        ->randomMachineName(200),
    );
    $this
      ->drupalPostForm('node/add/forum', $edit, t('Save'), array(
      'query' => array(
        'forum_id' => 1,
      ),
    ));
    $public_node = $this
      ->drupalGetNodeByTitle($public_node_title);
    $this
      ->assertTrue(!empty($public_node), 'New public forum node found in database.');
    // Enable the new and active forum blocks.
    $this
      ->drupalPlaceBlock('forum_active_block');
    $this
      ->drupalPlaceBlock('forum_new_block');
    // Test for $access_user.
    $this
      ->drupalLogin($access_user);
    $this
      ->drupalGet('');
    // Ensure private node and public node are found.
    $this
      ->assertText($private_node
      ->getTitle(), 'Private node found in block by $access_user');
    $this
      ->assertText($public_node
      ->getTitle(), 'Public node found in block by $access_user');
    // Test for $no_access_user.
    $this
      ->drupalLogin($no_access_user);
    $this
      ->drupalGet('');
    // Ensure private node is not found but public is found.
    $this
      ->assertNoText($private_node
      ->getTitle(), 'Private node not found in block by $no_access_user');
    $this
      ->assertText($public_node
      ->getTitle(), 'Public node found in block by $no_access_user');
  }
}Classes
| 
            Name | 
                  Description | 
|---|---|
| ForumNodeAccessTest | Tests forum block view for private node access. |