##// END OF EJS Templates
Removed old markup module. Use transaction for thread diff
Removed old markup module. Use transaction for thread diff

File last commit:

r383:c975bb03 default
r392:c9afaff6 default
Show More
tests.py
218 lines | 7.2 KiB | text/x-python | PythonLexer
neko259
Fixed unicode tags validation. Moved constants from classes to modules. Added error 404 when trying to get the non-existent thread. This fixes #19
r71 # coding=utf-8
neko259
Use django's test case that works with database correctry without the need to flush transactions manually. Removed some workarounds that were used before
r345 from django.test import TestCase
Ilyas
Completed login and logout functionality and covered by tests.
r13 from django.test.client import Client
neko259
Fixed validation test.
r180 import time
Ilyas
Completed login and logout functionality and covered by tests.
r13
neko259
Fixed some tests and views. Added migration for admin model removal.
r141 from boards.models import Post, Tag
neko259
Added maximum threads count parameter to the settings. Delete the old posts to preserve the max count. Small design tweaks.
r28 from neboard import settings
neko259
Initial commit. One test doesn't work, missing posting form.
r0
neko259
Cleaned up code in some modules. Added a new style for the contributor roles.
r203 PAGE_404 = 'boards/404.html'
neko259
Fixed unicode tags validation. Moved constants from classes to modules. Added error 404 when trying to get the non-existent thread. This fixes #19
r71 TEST_TEXT = 'test text'
NEW_THREAD_PAGE = '/'
neko259
Added error 404 for opening not existing thread or tag. This fixes #8
r79 THREAD_PAGE_ONE = '/thread/1/'
THREAD_PAGE = '/thread/'
TAG_PAGE = '/tag/'
neko259
Fixed unicode tags validation. Moved constants from classes to modules. Added error 404 when trying to get the non-existent thread. This fixes #19
r71 HTTP_CODE_REDIRECT = 302
neko259
Added error 404 for opening not existing thread or tag. This fixes #8
r79 HTTP_CODE_OK = 200
HTTP_CODE_NOT_FOUND = 404
neko259
Fixed unicode tags validation. Moved constants from classes to modules. Added error 404 when trying to get the non-existent thread. This fixes #19
r71
neko259
Fixed the tests. Added exists() method for the post.
r8
neko259
Moved adding linked posts from view to post manager. Cleaned up tests, added some more tests
r381 class PostTests(TestCase):
neko259
Cleaned up code in some modules. Added a new style for the contributor roles.
r203
neko259
Added a text area to the posting form. Added a basic CSS style. Changed threads list a bit.
r16 def _create_post(self):
neko259
Added images upload. Changed the design a bit. Reformatted some code by PEP 8. Changed the urls: not the main site is located at /, not /boards/.
r22 return Post.objects.create_post(title='title',
text='text')
neko259
Initial commit. One test doesn't work, missing posting form.
r0
def test_post_add(self):
neko259
Moved adding linked posts from view to post manager. Cleaned up tests, added some more tests
r381 """Test adding post"""
neko259
Added a text area to the posting form. Added a basic CSS style. Changed threads list a bit.
r16 post = self._create_post()
neko259
Added images upload. Changed the design a bit. Reformatted some code by PEP 8. Changed the urls: not the main site is located at /, not /boards/.
r22
neko259
Fixed indents for pycharm. Moved images upload path to settings. Some cosmetic changes.
r1 self.assertIsNotNone(post)
neko259
Fixed new user creation. Fixed some posting tests.
r202 self.assertIsNone(post.thread, 'Opening post has a thread')
neko259
Initial commit. One test doesn't work, missing posting form.
r0
def test_delete_post(self):
neko259
Moved adding linked posts from view to post manager. Cleaned up tests, added some more tests
r381 """Test post deletion"""
neko259
Added a text area to the posting form. Added a basic CSS style. Changed threads list a bit.
r16 post = self._create_post()
neko259
Fixed the tests. Added exists() method for the post.
r8 post_id = post.id
neko259
Added images upload. Changed the design a bit. Reformatted some code by PEP 8. Changed the urls: not the main site is located at /, not /boards/.
r22
neko259
Fixed indents for pycharm. Moved images upload path to settings. Some cosmetic changes.
r1 Post.objects.delete_post(post)
neko259
Initial commit. One test doesn't work, missing posting form.
r0
neko259
Added a text area to the posting form. Added a basic CSS style. Changed threads list a bit.
r16 self.assertFalse(Post.objects.exists(post_id))
neko259
Initial commit. One test doesn't work, missing posting form.
r0
neko259
Moved adding linked posts from view to post manager. Cleaned up tests, added some more tests
r381 def test_delete_thread(self):
"""Test thread deletion"""
thread = self._create_post()
reply = Post.objects.create_post("", "", thread=thread)
Post.objects.delete_post(thread)
self.assertFalse(Post.objects.exists(reply.id))
neko259
Minor fixes. Added test for posting to thread
r380 def test_post_to_thread(self):
neko259
Moved adding linked posts from view to post manager. Cleaned up tests, added some more tests
r381 """Test adding post to a thread"""
neko259
Minor fixes. Added test for posting to thread
r380 op = self._create_post()
post = Post.objects.create_post("", "", thread=op)
self.assertIsNotNone(post, 'Reply to thread wasn\'t created')
self.assertEqual(op.last_edit_time, post.pub_time,
'Post\'s create time doesn\'t match thread last edit'
' time')
neko259
Initial commit. One test doesn't work, missing posting form.
r0 def test_delete_posts_by_ip(self):
neko259
Moved adding linked posts from view to post manager. Cleaned up tests, added some more tests
r381 """Test deleting posts with the given ip"""
neko259
Added a text area to the posting form. Added a basic CSS style. Changed threads list a bit.
r16 post = self._create_post()
neko259
Fixed the tests. Added exists() method for the post.
r8 post_id = post.id
neko259
Initial commit. One test doesn't work, missing posting form.
r0
neko259
Fixed indents for pycharm. Moved images upload path to settings. Some cosmetic changes.
r1 Post.objects.delete_posts_by_ip('0.0.0.0')
neko259
Initial commit. One test doesn't work, missing posting form.
r0
neko259
Added a text area to the posting form. Added a basic CSS style. Changed threads list a bit.
r16 self.assertFalse(Post.objects.exists(post_id))
Ilyas
Completed login and logout functionality and covered by tests.
r13
neko259
Fixed getting posts for a thread. Implemented thread getting test.
r17 def test_get_thread(self):
neko259
Moved adding linked posts from view to post manager. Cleaned up tests, added some more tests
r381 """Test getting all posts of a thread"""
neko259
Fixed getting posts for a thread. Implemented thread getting test.
r17 opening_post = self._create_post()
for i in range(0, 2):
neko259
Fixed new user creation. Fixed some posting tests.
r202 Post.objects.create_post('title', 'text', thread=opening_post)
neko259
Fixed getting posts for a thread. Implemented thread getting test.
r17
neko259
Added thread field to the post. 'parent' field is deprecated now.
r174 thread = Post.objects.get_thread(opening_post.id)
neko259
Fixed getting posts for a thread. Implemented thread getting test.
r17
neko259
Removed call to en internal method in test.
r19 self.assertEqual(3, len(thread))
neko259
Added localization (not fully working). Added tags posting. Changed the design a bit.
r24
def test_create_post_with_tag(self):
neko259
Moved adding linked posts from view to post manager. Cleaned up tests, added some more tests
r381 """Test adding tag to post"""
neko259
Added localization (not fully working). Added tags posting. Changed the design a bit.
r24 tag = Tag.objects.create(name='test_tag')
post = Post.objects.create_post(title='title', text='text', tags=[tag])
neko259
Added maximum threads count parameter to the settings. Delete the old posts to preserve the max count. Small design tweaks.
r28 self.assertIsNotNone(post)
def test_thread_max_count(self):
neko259
Moved adding linked posts from view to post manager. Cleaned up tests, added some more tests
r381 """Test deletion of old posts when the max thread count is reached"""
neko259
Added maximum threads count parameter to the settings. Delete the old posts to preserve the max count. Small design tweaks.
r28 for i in range(settings.MAX_THREAD_COUNT + 1):
self._create_post()
self.assertEqual(settings.MAX_THREAD_COUNT,
neko259
Compiling regexes for gets. #17 Added pagination. #28 Visually differing the dead (not bumpable) threads.
r46 len(Post.objects.get_threads()))
def test_pages(self):
"""Test that the thread list is properly split into pages"""
for i in range(settings.MAX_THREAD_COUNT):
self._create_post()
all_threads = Post.objects.get_threads()
posts_in_second_page = Post.objects.get_threads(page=1)
first_post = posts_in_second_page[0]
self.assertEqual(all_threads[settings.THREADS_PER_PAGE].id,
neko259
Fixed unicode tags validation. Moved constants from classes to modules. Added error 404 when trying to get the non-existent thread. This fixes #19
r71 first_post.id)
neko259
Moved adding linked posts from view to post manager. Cleaned up tests, added some more tests
r381 def test_linked_tag(self):
"""Test adding a linked tag"""
linked_tag = Tag.objects.create(name=u'tag1')
tag = Tag.objects.create(name=u'tag2', linked=linked_tag)
post = Post.objects.create_post("", "", tags=[tag])
self.assertTrue(linked_tag in post.tags.all(),
'Linked tag was not added')
class PagesTest(TestCase):
def test_404(self):
"""Test receiving error 404 when opening a non-existent page"""
tag_name = u'test_tag'
tag = Tag.objects.create(name=tag_name)
client = Client()
Post.objects.create_post('title', TEST_TEXT, tags=[tag])
existing_post_id = Post.objects.all()[0].id
response_existing = client.get(THREAD_PAGE + str(existing_post_id) +
'/')
self.assertEqual(HTTP_CODE_OK, response_existing.status_code,
u'Cannot open existing thread')
response_not_existing = client.get(THREAD_PAGE + str(
existing_post_id + 1) + '/')
self.assertEqual(PAGE_404,
response_not_existing.templates[0].name,
u'Not existing thread is opened')
response_existing = client.get(TAG_PAGE + tag_name + '/')
self.assertEqual(HTTP_CODE_OK,
response_existing.status_code,
u'Cannot open existing tag')
response_not_existing = client.get(TAG_PAGE + u'not_tag' + '/')
self.assertEqual(PAGE_404,
response_not_existing.templates[0].name,
u'Not existing tag is opened')
reply_id = Post.objects.create_post('', TEST_TEXT,
thread=Post.objects.all()[0])
response_not_existing = client.get(THREAD_PAGE + str(
reply_id) + '/')
self.assertEqual(PAGE_404,
response_not_existing.templates[0].name,
u'Reply is opened as a thread')
class FormTest(TestCase):
neko259
Fixed unicode tags validation. Moved constants from classes to modules. Added error 404 when trying to get the non-existent thread. This fixes #19
r71 def test_post_validation(self):
"""Test the validation of the post form"""
neko259
Fixed validation test with enabled captcha.
r102 # Disable captcha for the test
captcha_enabled = settings.ENABLE_CAPTCHA
settings.ENABLE_CAPTCHA = False
neko259
Fixed unicode tags validation. Moved constants from classes to modules. Added error 404 when trying to get the non-existent thread. This fixes #19
r71 client = Client()
valid_tags = u'tag1 tag_2 тег_3'
invalid_tags = u'$%_356 ---'
response = client.post(NEW_THREAD_PAGE, {'title': 'test title',
'text': TEST_TEXT,
'tags': valid_tags})
self.assertEqual(response.status_code, HTTP_CODE_REDIRECT,
msg='Posting new message failed: got code ' +
str(response.status_code))
self.assertEqual(1, Post.objects.count(),
msg='No posts were created')
neko259
Added form validation, added style for the tag panel. This fixes #13
r76 client.post(NEW_THREAD_PAGE, {'text': TEST_TEXT,
'tags': invalid_tags})
neko259
Fixed unicode tags validation. Moved constants from classes to modules. Added error 404 when trying to get the non-existent thread. This fixes #19
r71 self.assertEqual(1, Post.objects.count(), msg='The validation passed '
neko259
Fixed validation of image without text. This refs #13
r77 'where it should fail')
neko259
Fixed page 404 test. Added a cat image to the banned page.
r181 # Change posting delay so we don't have to wait for 30 seconds or more
old_posting_delay = settings.POSTING_DELAY
neko259
Fixed validation test.
r180 # Wait fot the posting delay or we won't be able to post
neko259
Fixed page 404 test. Added a cat image to the banned page.
r181 settings.POSTING_DELAY = 1
neko259
Fixed validation test.
r180 time.sleep(settings.POSTING_DELAY + 1)
neko259
Added error 404 for opening not existing thread or tag. This fixes #8
r79 response = client.post(THREAD_PAGE_ONE, {'text': TEST_TEXT,
neko259
Implemented RSS support. This fixes #11
r89 'tags': valid_tags})
neko259
Added error 404 for opening not existing thread or tag. This fixes #8
r79 self.assertEqual(HTTP_CODE_REDIRECT, response.status_code,
msg=u'Posting new message failed: got code ' +
neko259
Fixed validation of image without text. This refs #13
r77 str(response.status_code))
neko259
Fixed page 404 test. Added a cat image to the banned page.
r181 # Restore posting delay
settings.POSTING_DELAY = old_posting_delay
neko259
Fixed validation of image without text. This refs #13
r77
self.assertEqual(2, Post.objects.count(),
neko259
Added error 404 for opening not existing thread or tag. This fixes #8
r79 msg=u'No posts were created')
neko259
Fixed validation test with enabled captcha.
r102 # Restore captcha setting
settings.ENABLE_CAPTCHA = captcha_enabled