class RowRssTest
Same name and namespace in other branches
- 11.x core/modules/comment/tests/src/Functional/Views/RowRssTest.php \Drupal\Tests\comment\Functional\Views\RowRssTest
Tests the comment rss row plugin.
@group comment
Hierarchy
- class \Drupal\Tests\BrowserTestBase uses \Drupal\Core\Test\FunctionalTestSetupTrait, \Drupal\Tests\UiHelperTrait, \Drupal\Core\Test\TestSetupTrait, \Drupal\Tests\block\Traits\BlockCreationTrait, \Drupal\FunctionalTests\AssertLegacyTrait, \Drupal\Tests\RandomGeneratorTrait, \Drupal\Tests\node\Traits\NodeCreationTrait, \Drupal\Tests\node\Traits\ContentTypeCreationTrait, \Drupal\Tests\ConfigTestTrait, \Drupal\Tests\TestRequirementsTrait, \Drupal\Tests\user\Traits\UserCreationTrait, \Drupal\Tests\XdebugRequestTrait, \Drupal\Tests\Traits\PhpUnitWarnings, \Drupal\Tests\PhpUnitCompatibilityTrait, \Symfony\Bridge\PhpUnit\ExpectDeprecationTrait, \Drupal\Tests\ExtensionListTestTrait implements \PHPUnit\Framework\TestCase
- class \Drupal\Tests\views\Functional\ViewTestBase uses \Drupal\views\Tests\ViewResultAssertionTrait implements \Drupal\Tests\BrowserTestBase
- class \Drupal\Tests\comment\Functional\Views\CommentTestBase uses \Drupal\comment\Tests\CommentTestTrait implements \Drupal\Tests\views\Functional\ViewTestBase
- class \Drupal\Tests\comment\Functional\Views\RowRssTest implements \Drupal\Tests\comment\Functional\Views\CommentTestBase
- class \Drupal\Tests\comment\Functional\Views\CommentTestBase uses \Drupal\comment\Tests\CommentTestTrait implements \Drupal\Tests\views\Functional\ViewTestBase
- class \Drupal\Tests\views\Functional\ViewTestBase uses \Drupal\views\Tests\ViewResultAssertionTrait implements \Drupal\Tests\BrowserTestBase
Expanded class hierarchy of RowRssTest
See also
\Drupal\comment\Plugin\views\row\Rss
File
-
core/
modules/ comment/ tests/ src/ Functional/ Views/ RowRssTest.php, line 11
Namespace
Drupal\Tests\comment\Functional\ViewsView source
class RowRssTest extends CommentTestBase {
/**
* {@inheritdoc}
*/
protected $defaultTheme = 'stark';
/**
* Views used by this test.
*
* @var array
*/
public static $testViews = [
'test_comment_rss',
];
/**
* Tests comment rss output.
*/
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.