##// END OF EJS Templates
Redirect after sending POST to the tag page
Redirect after sending POST to the tag page

File last commit:

r1088:9cc4c6f4 default
r1095:e052559b default
Show More
test_api.py
77 lines | 3.2 KiB | text/x-python | PythonLexer
neko259
Split tests module into separate modules
r821 import simplejson
from django.test import TestCase
neko259
Added test for threads list API
r978 from boards.views import api
neko259
Split tests module into separate modules
r821
from boards.models import Tag, Post
from boards.tests.mocks import MockRequest
from boards.utils import datetime_to_epoch
class ApiTest(TestCase):
def test_thread_diff(self):
tag = Tag.objects.create(name='test_tag')
opening_post = Post.objects.create_post(title='title', text='text',
tags=[tag])
neko259
Refactored websockets notifications and updating threads when updating posts
r1088 last_edit_time = str(opening_post.last_edit_time)
neko259
Split tests module into separate modules
r821
neko259
Refactored websockets notifications and updating threads when updating posts
r1088 req = MockRequest()
req.GET['thread'] = opening_post.id
req.GET['last_update'] = last_edit_time
req.GET['last_post'] = opening_post.id
neko259
Split tests module into separate modules
r821 # Check the exact timestamp post was added
neko259
Refactored websockets notifications and updating threads when updating posts
r1088 empty_response = api.api_get_threaddiff(req)
neko259
Split tests module into separate modules
r821 diff = simplejson.loads(empty_response.content)
self.assertEqual(0, len(diff['added']),
'There must be no added posts in the diff.')
self.assertEqual(0, len(diff['updated']),
'There must be no updated posts in the diff.')
reply = Post.objects.create_post(title='',
text='[post]%d[/post]\ntext' % opening_post.id,
neko259
Allow connecting post to many threads
r979 thread=opening_post.get_thread())
neko259
Split tests module into separate modules
r821
neko259
Refactored websockets notifications and updating threads when updating posts
r1088 req = MockRequest()
req.GET['thread'] = opening_post.id
req.GET['last_update'] = last_edit_time
req.GET['last_post'] = opening_post.id
neko259
Split tests module into separate modules
r821 # Check the timestamp before post was added
neko259
Refactored websockets notifications and updating threads when updating posts
r1088 response = api.api_get_threaddiff(req)
neko259
Split tests module into separate modules
r821 diff = simplejson.loads(response.content)
self.assertEqual(1, len(diff['added']),
'There must be 1 added posts in the diff.')
self.assertEqual(1, len(diff['updated']),
'There must be 1 updated posts in the diff.')
neko259
Refactored websockets notifications and updating threads when updating posts
r1088 req = MockRequest()
req.GET['thread'] = opening_post.id
req.GET['last_update'] = str(reply.last_edit_time)
req.GET['last_post'] = reply.id
empty_response = api.api_get_threaddiff(req)
neko259
Split tests module into separate modules
r821 diff = simplejson.loads(empty_response.content)
self.assertEqual(0, len(diff['added']),
'There must be no added posts in the diff.')
self.assertEqual(0, len(diff['updated']),
neko259
Added test for threads list API
r978 'There must be no updated posts in the diff.')
def test_get_threads(self):
# Create 10 threads
tag = Tag.objects.create(name='test_tag')
for i in range(5):
Post.objects.create_post(title='title', text='text', tags=[tag])
# Get all threads
response = api.api_get_threads(MockRequest(), 5)
diff = simplejson.loads(response.content)
self.assertEqual(5, len(diff), 'Invalid thread list response.')
# Get less threads then exist
response = api.api_get_threads(MockRequest(), 3)
diff = simplejson.loads(response.content)
self.assertEqual(3, len(diff), 'Invalid thread list response.')
# Get more threads then exist
response = api.api_get_threads(MockRequest(), 10)
diff = simplejson.loads(response.content)
self.assertEqual(5, len(diff), 'Invalid thread list response.')