function RowRssTest::testRssRow

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

Tests comment rss output.

File

core/modules/comment/tests/src/Functional/Views/RowRssTest.php, line 28

Class

RowRssTest
Tests the comment rss row plugin.

Namespace

Drupal\Tests\comment\Functional\Views

Code

public function testRssRow() {
    $this->drupalGet('test-comment-rss');
    // Because the response is XML we can't use the page which depends on an
    // HTML tag being present.
    $result = $this->getSession()
        ->getDriver()
        ->find('//item');
    $this->assertCount(1, $result, 'Just one comment was found in the rss output.');
    $this->assertEquals(gmdate('r', $this->comment
        ->getCreatedTime()), $result[0]->find('xpath', '//pubDate')
        ->getHtml(), 'The right pubDate appears in the rss output.');
}

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