private function ForumTest::verifyForums

Verifies that the logged in user has access to a forum node.

Parameters

$node_user: The user who creates the node.

Drupal\node\Node $node: The node being checked.

$admin: Boolean to indicate whether the user can 'access administration pages'.

$response: The exptected HTTP response code.

2 calls to ForumTest::verifyForums()
ForumTest::doBasicTests in drupal/core/modules/forum/lib/Drupal/forum/Tests/ForumTest.php
Runs basic tests on the indicated user.
ForumTest::testForum in drupal/core/modules/forum/lib/Drupal/forum/Tests/ForumTest.php
Tests forum functionality through the admin and user interfaces.

File

drupal/core/modules/forum/lib/Drupal/forum/Tests/ForumTest.php, line 507
Tests for forum.module.

Class

ForumTest
Provides automated tests for the Forum module.

Namespace

Drupal\forum\Tests

Code

private function verifyForums($node_user, Node $node, $admin, $response = 200) {
  $response2 = $admin ? 200 : 403;

  // View forum help node.
  $this
    ->drupalGet('admin/help/forum');
  $this
    ->assertResponse($response2);
  if ($response2 == 200) {
    $this
      ->assertTitle(t('Forum | Drupal'), 'Forum help title was displayed');
    $this
      ->assertText(t('Forum'), 'Forum help node was displayed');
  }

  // View forum container page.
  $this
    ->verifyForumView($this->forumContainer);

  // View forum page.
  $this
    ->verifyForumView($this->forum, $this->forumContainer);

  // View root forum page.
  $this
    ->verifyForumView($this->root_forum);

  // View forum node.
  $this
    ->drupalGet('node/' . $node->nid);
  $this
    ->assertResponse(200);
  $this
    ->assertTitle($node
    ->label() . ' | Drupal', 'Forum node was displayed');
  $breadcrumb = array(
    l(t('Home'), NULL),
    l(t('Forums'), 'forum'),
    l($this->forumContainer['name'], 'forum/' . $this->forumContainer['tid']),
    l($this->forum['name'], 'forum/' . $this->forum['tid']),
  );
  $this
    ->assertRaw(theme('breadcrumb', array(
    'breadcrumb' => $breadcrumb,
  )), 'Breadcrumbs were displayed');

  // View forum edit node.
  $this
    ->drupalGet('node/' . $node->nid . '/edit');
  $this
    ->assertResponse($response);
  if ($response == 200) {
    $this
      ->assertTitle('Edit Forum topic ' . $node
      ->label() . ' | Drupal', 'Forum edit node was displayed');
  }
  if ($response == 200) {

    // Edit forum node (including moving it to another forum).
    $edit = array();
    $langcode = LANGUAGE_NOT_SPECIFIED;
    $edit["title"] = 'node/' . $node->nid;
    $edit["body[{$langcode}][0][value]"] = $this
      ->randomName(256);

    // Assume the topic is initially associated with $forum.
    $edit["taxonomy_forums[{$langcode}]"] = $this->root_forum['tid'];
    $edit['shadow'] = TRUE;
    $this
      ->drupalPost('node/' . $node->nid . '/edit', $edit, t('Save'));
    $this
      ->assertRaw(t('Forum topic %title has been updated.', array(
      '%title' => $edit["title"],
    )), 'Forum node was edited');

    // Verify topic was moved to a different forum.
    $forum_tid = db_query("SELECT tid FROM {forum} WHERE nid = :nid AND vid = :vid", array(
      ':nid' => $node->nid,
      ':vid' => $node->vid,
    ))
      ->fetchField();
    $this
      ->assertTrue($forum_tid == $this->root_forum['tid'], 'The forum topic is linked to a different forum');

    // Delete forum node.
    $this
      ->drupalPost('node/' . $node->nid . '/delete', array(), t('Delete'));
    $this
      ->assertResponse($response);
    $this
      ->assertRaw(t('Forum topic %title has been deleted.', array(
      '%title' => $edit['title'],
    )), 'Forum node was deleted');
  }
}