summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAymeric Augustin <aymeric.augustin@m4x.org>2012-10-26 22:47:45 +0200
committerAymeric Augustin <aymeric.augustin@m4x.org>2012-10-26 22:47:45 +0200
commit789ea3342d5cdfc850a2f68818e707cdc5111bb9 (patch)
tree0fd8a5a5f7cd3744c114770266ece35445096ba4
parent46d27a6b8d8e988f665d102a1504e178133f7668 (diff)
Fixed comment_test tests under hash randomization.
Thanks clelland for the patch.
-rw-r--r--tests/regressiontests/comment_tests/tests/feed_tests.py23
1 files changed, 19 insertions, 4 deletions
diff --git a/tests/regressiontests/comment_tests/tests/feed_tests.py b/tests/regressiontests/comment_tests/tests/feed_tests.py
index 1ec316eab8..c93d7abf7d 100644
--- a/tests/regressiontests/comment_tests/tests/feed_tests.py
+++ b/tests/regressiontests/comment_tests/tests/feed_tests.py
@@ -1,5 +1,7 @@
from __future__ import absolute_import
+from xml.etree import ElementTree as ET
+
from django.conf import settings
from django.contrib.comments.models import Comment
from django.contrib.contenttypes.models import ContentType
@@ -31,8 +33,21 @@ class CommentFeedTests(CommentTestCase):
response = self.client.get(self.feed_url)
self.assertEqual(response.status_code, 200)
self.assertEqual(response['Content-Type'], 'application/rss+xml; charset=utf-8')
- self.assertContains(response, '<rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0">')
- self.assertContains(response, '<title>example.com comments</title>')
- self.assertContains(response, '<link>http://example.com/</link>')
- self.assertContains(response, '</rss>')
+
+ rss_elem = ET.fromstring(response.content)
+
+ self.assertEqual(rss_elem.tag, "rss")
+ self.assertEqual(rss_elem.attrib, {"version": "2.0"})
+
+ channel_elem = rss_elem.find("channel")
+
+ title_elem = channel_elem.find("title")
+ self.assertEqual(title_elem.text, "example.com comments")
+
+ link_elem = channel_elem.find("link")
+ self.assertEqual(link_elem.text, "http://example.com/")
+
+ atomlink_elem = channel_elem.find("{http://www.w3.org/2005/Atom}link")
+ self.assertEqual(atomlink_elem.attrib, {"href": "http://example.com/rss/comments/", "rel": "self"})
+
self.assertNotContains(response, "A comment for the second site.")