function CommentNodeAccessTest::testThreadedCommentView in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/modules/comment/src/Tests/CommentNodeAccessTest.php \Drupal\comment\Tests\CommentNodeAccessTest::testThreadedCommentView()
Test that threaded comments can be viewed.
File
- core/
modules/ comment/ src/ Tests/ CommentNodeAccessTest.php, line 51 - Contains \Drupal\comment\Tests\CommentNodeAccessTest.
Class
- CommentNodeAccessTest
- Tests comments with node access.
Namespace
Drupal\comment\TestsCode
function testThreadedCommentView() {
// Set comments to have subject required and preview disabled.
$this
->drupalLogin($this->adminUser);
$this
->setCommentPreview(DRUPAL_DISABLED);
$this
->setCommentForm(TRUE);
$this
->setCommentSubject(TRUE);
$this
->setCommentSettings('default_mode', CommentManagerInterface::COMMENT_MODE_THREADED, 'Comment paging changed.');
$this
->drupalLogout();
// Post comment.
$this
->drupalLogin($this->webUser);
$comment_text = $this
->randomMachineName();
$comment_subject = $this
->randomMachineName();
$comment = $this
->postComment($this->node, $comment_text, $comment_subject);
$this
->assertTrue($this
->commentExists($comment), 'Comment found.');
// Check comment display.
$this
->drupalGet('node/' . $this->node
->id());
$this
->assertText($comment_subject, 'Individual comment subject found.');
$this
->assertText($comment_text, 'Individual comment body found.');
// Reply to comment, creating second comment.
$this
->drupalGet('comment/reply/node/' . $this->node
->id() . '/comment/' . $comment
->id());
$reply_text = $this
->randomMachineName();
$reply_subject = $this
->randomMachineName();
$reply = $this
->postComment(NULL, $reply_text, $reply_subject, TRUE);
$this
->assertTrue($this
->commentExists($reply, TRUE), 'Reply found.');
// Go to the node page and verify comment and reply are visible.
$this
->drupalGet('node/' . $this->node
->id());
$this
->assertText($comment_text);
$this
->assertText($comment_subject);
$this
->assertText($reply_text);
$this
->assertText($reply_subject);
}