public function ForumIntegrationTest::testForumIntegration in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/modules/forum/src/Tests/Views/ForumIntegrationTest.php \Drupal\forum\Tests\Views\ForumIntegrationTest::testForumIntegration()
Tests the integration.
File
- core/
modules/ forum/ src/ Tests/ Views/ ForumIntegrationTest.php, line 45 - Contains \Drupal\forum\Tests\Views\ForumIntegrationTest.
Class
- ForumIntegrationTest
- Tests the forum integration into views.
Namespace
Drupal\forum\Tests\ViewsCode
public function testForumIntegration() {
// Create a forum.
$entity_manager = $this->container
->get('entity.manager');
$term = $entity_manager
->getStorage('taxonomy_term')
->create(array(
'vid' => 'forums',
'name' => $this
->randomMachineName(),
));
$term
->save();
$comment_storage = $entity_manager
->getStorage('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;
}
$account = $this
->drupalCreateUser(array(
'skip comment approval',
));
$this
->drupalLogin($account);
$comments = array();
foreach ($nodes as $index => $node) {
for ($i = 0; $i <= $index; $i++) {
$comment = $comment_storage
->create(array(
'entity_type' => 'node',
'entity_id' => $node
->id(),
'field_name' => 'comment_forum',
));
$comment
->save();
$comments[$comment
->get('entity_id')->target_id][$comment
->id()] = $comment;
}
}
$view = Views::getView('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);
}