function CommentTitleTest::testCommentPopulatedTitles

Same name and namespace in other branches
  1. 9 core/modules/comment/tests/src/Functional/CommentTitleTest.php \Drupal\Tests\comment\Functional\CommentTitleTest::testCommentPopulatedTitles()
  2. 8.9.x core/modules/comment/tests/src/Functional/CommentTitleTest.php \Drupal\Tests\comment\Functional\CommentTitleTest::testCommentPopulatedTitles()
  3. 10 core/modules/comment/tests/src/Functional/CommentTitleTest.php \Drupal\Tests\comment\Functional\CommentTitleTest::testCommentPopulatedTitles()

Tests markup for comments with populated titles.

File

core/modules/comment/tests/src/Functional/CommentTitleTest.php, line 70

Class

CommentTitleTest
Tests that appropriate and accessible markup is created for comment titles.

Namespace

Drupal\Tests\comment\Functional

Code

public function testCommentPopulatedTitles() : void {
    // Set comments to have a subject with preview disabled.
    $this->setCommentPreview(DRUPAL_DISABLED);
    $this->setCommentForm(TRUE);
    $this->setCommentSubject(TRUE);
    // Create a node.
    $this->drupalLogin($this->webUser);
    $this->node = $this->drupalCreateNode([
        'type' => 'article',
        'promote' => 1,
        'uid' => $this->webUser
            ->id(),
    ]);
    // Post comment #1 and verify that title is rendered in h3.
    $subject_text = $this->randomMachineName();
    $comment_text = $this->randomMachineName();
    $comment1 = $this->postComment($this->node, $comment_text, $subject_text, TRUE);
    // The entity fields for name and mail have no meaning if the user is not
    // Anonymous.
    $this->assertNull($comment1->name->value);
    $this->assertNull($comment1->mail->value);
    // Confirm that the comment was created.
    $this->assertTrue($this->commentExists($comment1), 'Comment #1. Comment found.');
    // Tests that markup is created for comment with heading.
    $this->assertSession()
        ->responseMatches('|<h3[^>]*><a[^>]*>' . $subject_text . '</a></h3>|');
    // Tests that the comment's title link is the permalink of the comment.
    $comment_permalink = $this->cssSelect('.permalink');
    $comment_permalink = $comment_permalink[0]->getAttribute('href');
    // Tests that the comment's title link contains the URL fragment.
    $this->assertStringContainsString('#comment-' . $comment1->id(), $comment_permalink, "The comment's title link contains the url fragment.");
    $this->assertEquals($comment1->permalink()
        ->toString(), $comment_permalink, "The comment's title has the correct link.");
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.