You are here

public function CommentFieldsTest::testCommentFieldLinksNonDefaultName in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 core/modules/comment/src/Tests/CommentFieldsTest.php \Drupal\comment\Tests\CommentFieldsTest::testCommentFieldLinksNonDefaultName()

Tests link building with non-default comment field names.

File

core/modules/comment/src/Tests/CommentFieldsTest.php, line 100
Contains \Drupal\comment\Tests\CommentFieldsTest.

Class

CommentFieldsTest
Tests fields on comments.

Namespace

Drupal\comment\Tests

Code

public function testCommentFieldLinksNonDefaultName() {
  $this
    ->drupalCreateContentType([
    'type' => 'test_node_type',
  ]);
  $this
    ->addDefaultCommentField('node', 'test_node_type', 'comment2');
  $web_user2 = $this
    ->drupalCreateUser([
    'access comments',
    'post comments',
    'create article content',
    'edit own comments',
    'skip comment approval',
    'access content',
  ]);

  // Create a sample node.
  $node = $this
    ->drupalCreateNode([
    'title' => 'Baloney',
    'type' => 'test_node_type',
  ]);

  // Go to the node first so that webuser2 see new comments.
  $this
    ->drupalLogin($web_user2);
  $this
    ->drupalGet($node
    ->urlInfo());
  $this
    ->drupalLogout();

  // Test that buildCommentedEntityLinks() does not break when the 'comment'
  // field does not exist. Requires at least one comment.
  $this
    ->drupalLogin($this->webUser);
  $this
    ->postComment($node, 'Here is a comment', '', NULL, 'comment2');
  $this
    ->drupalLogout();
  $this
    ->drupalLogin($web_user2);

  // We want to check the attached drupalSettings of
  // \Drupal\comment\CommentLinkBuilder::buildCommentedEntityLinks. Therefore
  // we need a node listing, let's use views for that.
  $this->container
    ->get('module_installer')
    ->install([
    'views',
  ], TRUE);

  // We also need a router rebuild, as the router is lazily rebuild in the
  // module installer.
  \Drupal::service('router.builder')
    ->rebuild();
  $this
    ->drupalGet('node');
  $link_info = $this
    ->getDrupalSettings()['comment']['newCommentsLinks']['node']['comment2']['2'];
  $this
    ->assertIdentical($link_info['new_comment_count'], 1);
  $this
    ->assertIdentical($link_info['first_new_comment_link'], $node
    ->url('canonical', [
    'fragment' => 'new',
  ]));
}