public function ForumIntegrationTest::testForumIntegration

Tests the integration.

File

drupal/core/modules/forum/lib/Drupal/forum/Tests/Views/ForumIntegrationTest.php, line 50
Contains \Drupal\forum\Tests\Views\ForumIntegrationTest.

Class

ForumIntegrationTest
Tests the forum integration into views.

Namespace

Drupal\forum\Tests\Views

Code

public function testForumIntegration() {

  // Create a forum.
  $entity_manager = $this->container
    ->get('plugin.manager.entity');
  $term = $entity_manager
    ->getStorageController('taxonomy_term')
    ->create(array(
    'vid' => 'forums',
  ));
  $term
    ->save();
  $comment_storage_controller = $entity_manager
    ->getStorageController('comment');

  // Create some nodes which are part of this forum with some comments.
  $nodes = array();
  for ($i = 0; $i < 3; $i++) {
    $node = $this
      ->drupalCreateNode(array(
      'type' => 'forum',
      'taxonomy_forums' => array(
        $term
          ->id(),
      ),
      'sticky' => $i == 0 ? NODE_STICKY : NODE_NOT_STICKY,
    ));
    $nodes[] = $node;
  }
  $comments = array();
  foreach ($nodes as $index => $node) {
    for ($i = 0; $i <= $index; $i++) {
      $comment = $comment_storage_controller
        ->create(array(
        'node_type' => 'node_type_forum',
        'nid' => $node
          ->id(),
      ));
      $comment
        ->save();
      $comments[$comment
        ->get('nid')->target_id][$comment
        ->id()] = $comment;
    }
  }
  $view = views_get_view('test_forum_index');
  $this
    ->executeView($view);
  $expected_result = array();
  $expected_result[] = array(
    'nid' => $nodes[0]
      ->id(),
    'sticky' => NODE_STICKY,
    'comment_count' => 1.0,
  );
  $expected_result[] = array(
    'nid' => $nodes[1]
      ->id(),
    'sticky' => NODE_NOT_STICKY,
    'comment_count' => 2.0,
  );
  $expected_result[] = array(
    'nid' => $nodes[2]
      ->id(),
    'sticky' => NODE_NOT_STICKY,
    'comment_count' => 3.0,
  );
  $column_map = array(
    'nid' => 'nid',
    'forum_index_sticky' => 'sticky',
    'forum_index_comment_count' => 'comment_count',
  );
  $this
    ->assertIdenticalResultset($view, $expected_result, $column_map);
}