1 comment.test CommentPagerTest::testCommentPaging()

Confirms comment paging works correctly with flat and threaded comments.

File

core/modules/comment/tests/comment.test, line 1354
Tests for the Comment module.

Class

CommentPagerTest
Verifies pagination of comments.

Code

function testCommentPaging() {
  $this->backdropLogin($this->admin_user);

  // Set comment config.
  $this->setCommentForm(TRUE);
  $this->setCommentSubject(COMMENT_TITLE_CUSTOM);
  $this->setCommentPreview(BACKDROP_DISABLED);

  // Create a node and three comments.
  $node = $this->backdropCreateNode(array('type' => 'post', 'promote' => 1));
  $comments = array();
  $comments[] = $this->postComment($node, $this->randomName(), '', TRUE);
  $comments[] = $this->postComment($node, $this->randomName(), '', TRUE);
  $comments[] = $this->postComment($node, $this->randomName(), '', TRUE);

  $this->setCommentSettings('comment_mode', COMMENT_MODE_FLAT, 'Comment paging changed.');

  // Set comments to one per page so that we are able to test paging without
  // needing to insert large numbers of comments.
  $this->setCommentsPerPage(1);

  // Check the first page of the node, and confirm the correct comments are
  // shown.
  $this->backdropGet('node/' . $node->nid);
  $this->assertRaw(t('next'), 'Paging links found.');
  $this->assertTrue($this->commentExists($comments[0]), 'Comment 1 appears on page 1.');
  $this->assertFalse($this->commentExists($comments[1]), 'Comment 2 does not appear on page 1.');
  $this->assertFalse($this->commentExists($comments[2]), 'Comment 3 does not appear on page 1.');

  // Check the second page.
  $this->backdropGet('node/' . $node->nid, array('query' => array('page' => 1)));
  $this->assertTrue($this->commentExists($comments[1]), 'Comment 2 appears on page 2.');
  $this->assertFalse($this->commentExists($comments[0]), 'Comment 1 does not appear on page 2.');
  $this->assertFalse($this->commentExists($comments[2]), 'Comment 3 does not appear on page 2.');

  // Check the third page.
  $this->backdropGet('node/' . $node->nid, array('query' => array('page' => 2)));
  $this->assertTrue($this->commentExists($comments[2]), 'Comment 3 appears on page 3.');
  $this->assertFalse($this->commentExists($comments[0]), 'Comment 1 does not appear on page 3.');
  $this->assertFalse($this->commentExists($comments[1]), 'Comment 2 does not appear on page 3.');

  // Post a reply to the oldest comment and test again.
  $replies = array();
  $oldest_comment = reset($comments);
  $this->backdropGet('comment/reply/' . $node->nid . '/' . $oldest_comment->id);
  $reply = $this->postComment(NULL, $this->randomName(), '', TRUE);

  $this->setCommentsPerPage(2);
  // We are still in flat view - the replies should not be on the first page,
  // even though they are replies to the oldest comment.
  $this->backdropGet('node/' . $node->nid, array('query' => array('page' => 0)));
  $this->assertFalse($this->commentExists($reply, TRUE), 'In flat mode, reply does not appear on page 1.');

  // If we switch to threaded mode, the replies on the oldest comment
  // should be bumped to the first page and comment 6 should be bumped
  // to the second page.
  $this->setCommentSettings('comment_mode', COMMENT_MODE_THREADED, 'Switched to threaded mode.');
  $this->backdropGet('node/' . $node->nid, array('query' => array('page' => 0)));
  $this->assertTrue($this->commentExists($reply, TRUE), 'In threaded mode, reply appears on page 1.');
  $this->assertFalse($this->commentExists($comments[1]), 'In threaded mode, comment 2 has been bumped off of page 1.');

  // If (# replies > # comments per page) in threaded expanded view,
  // the overage should be bumped.
  $reply2 = $this->postComment(NULL, $this->randomName(), $this->randomName(), TRUE);
  $this->backdropGet('node/' . $node->nid, array('query' => array('page' => 0)));
  $this->assertFalse($this->commentExists($reply2, TRUE), 'In threaded mode where # replies > # comments per page, the newest reply does not appear on page 1.');

  $this->backdropLogout();
}