##// END OF EJS Templates
Fixed thread max posts to not create new migration each time it changes in settings
Fixed thread max posts to not create new migration each time it changes in settings

File last commit:

r1120:4781481d default
r1136:f6ecb53d default
Show More
test_api.py
71 lines | 2.7 KiB | text/x-python | PythonLexer
import simplejson
from django.test import TestCase
from boards.views import api
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])
last_edit_time = str(opening_post.last_edit_time)
req = MockRequest()
req.GET['thread'] = opening_post.id
req.POST['uids'] = opening_post.uid
# Check the exact timestamp post was added
empty_response = api.api_get_threaddiff(req)
diff = simplejson.loads(empty_response.content)
self.assertEqual(0, len(diff['updated']),
'There must be no updated posts in the diff.')
uids = [opening_post.uid]
reply = Post.objects.create_post(title='',
text='[post]%d[/post]\ntext' % opening_post.id,
thread=opening_post.get_thread())
uids += [reply.uid]
req = MockRequest()
req.GET['thread'] = opening_post.id
req.POST['uids'] = ' '.join(uids)
# Check the timestamp before post was added
response = api.api_get_threaddiff(req)
diff = simplejson.loads(response.content)
self.assertEqual(2, len(diff['updated']),
'There must be 2 updated posts in the diff.')
req = MockRequest()
req.GET['thread'] = opening_post.id
req.GET['uids'] = ' '.join([opening_post.uid, reply.uid])
empty_response = api.api_get_threaddiff(req)
diff = simplejson.loads(empty_response.content)
self.assertEqual(0, len(diff['updated']),
'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.')