Security update for Core, with self-updated composer
[yaffs-website] / web / core / modules / comment / tests / src / Functional / Views / RowRssTest.php
diff --git a/web/core/modules/comment/tests/src/Functional/Views/RowRssTest.php b/web/core/modules/comment/tests/src/Functional/Views/RowRssTest.php
new file mode 100644 (file)
index 0000000..7d61852
--- /dev/null
@@ -0,0 +1,34 @@
+<?php
+
+namespace Drupal\Tests\comment\Functional\Views;
+
+/**
+ * Tests the comment rss row plugin.
+ *
+ * @group comment
+ * @see \Drupal\comment\Plugin\views\row\Rss
+ */
+class RowRssTest extends CommentTestBase {
+
+  /**
+   * Views used by this test.
+   *
+   * @var array
+   */
+  public static $testViews = ['test_comment_rss'];
+
+  /**
+   * Test 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->assertEqual(count($result), 1, 'Just one comment was found in the rss output.');
+
+    $this->assertEqual($result[0]->find('xpath', '//pubDate')->getHtml(), gmdate('r', $this->comment->getCreatedTime()), 'The right pubDate appears in the rss output.');
+  }
+
+}