12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- from misago.acl import add_acl
- from misago.forums.models import Forum
- from misago.users.testutils import AuthenticatedUserTestCase
- from misago.threads import goto
- from misago.threads.testutils import post_thread, reply_thread
- class GotoViewsTests(AuthenticatedUserTestCase):
- def setUp(self):
- super(GotoViewsTests, self).setUp()
- self.forum = Forum.objects.all_forums().filter(role="forum")[:1][0]
- self.forum.labels = []
- self.thread = post_thread(self.forum)
- add_acl(self.user, self.forum)
- add_acl(self.user, self.thread)
- def test_goto_last(self):
- """thread_last link points to last post in thread"""
- response = self.client.get(self.thread.get_last_reply_url())
- self.assertEqual(response.status_code, 302)
- self.assertTrue(
- response['location'].endswith(goto.last(self.user, self.thread)))
- # add 36 posts to thread
- [reply_thread(self.thread) for p in xrange(36)]
- response = self.client.get(self.thread.get_last_reply_url())
- self.assertEqual(response.status_code, 302)
- self.assertTrue(
- response['location'].endswith(goto.last(self.user, self.thread)))
- def test_goto_new(self):
- """thread_new link points to first unread post in thread"""
- # add 32 posts to thread
- [reply_thread(self.thread) for p in xrange(32)]
- # read thread
- response = self.client.get(self.thread.get_last_reply_url())
- response = self.client.get(response['location'])
- # add unread posts
- unread_post = reply_thread(self.thread)
- [reply_thread(self.thread) for p in xrange(32)]
- unread_post_link = goto.new(self.user, self.thread)
- response = self.client.get(self.thread.get_new_reply_url())
- self.assertEqual(response.status_code, 302)
- self.assertTrue(response['location'].endswith(unread_post_link))
- def test_goto_post(self):
- """thread_post link points to specific post in thread"""
- # add 32 posts to thread
- [reply_thread(self.thread) for p in xrange(32)]
- # add target post to thread
- target_post = reply_thread(self.thread)
- # add 32 more posts to thread
- [reply_thread(self.thread) for p in xrange(32)]
- # see post link
- post_link = goto.post(self.user, self.thread, target_post)
- response = self.client.get(target_post.get_absolute_url())
- self.assertEqual(response.status_code, 302)
- self.assertTrue(response['location'].endswith(post_link))
|