##// END OF EJS Templates
Updates to the user model
Updates to the user model

File last commit:

r596:5657c06f default
r624:e21a263d default
Show More
tests.py
260 lines | 8.7 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
Added test for all views get requests. Fixed banned view failing this test
r545 import time
import logging
neko259
Updated paginator for long page lists. Removed old get_threads method in the post manager
r596 from django.core.paginator import Paginator
neko259
Added test for all views get requests. Fixed banned view failing this test
r545
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
Added test for all views get requests. Fixed banned view failing this test
r545 from django.core.urlresolvers import reverse, NoReverseMatch
Ilyas
Completed login and logout functionality and covered by tests.
r13
neko259
Updated paginator for long page lists. Removed old get_threads method in the post manager
r596 from boards.models import Post, Tag, Thread
neko259
Added test for all views get requests. Fixed banned view failing this test
r545 from boards import urls
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
Added test for all views get requests. Fixed banned view failing this test
r545 logger = logging.getLogger(__name__)
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
Split up post model into post and thread to normalise models. Still need some refactoring
r398 self.assertIsNotNone(post, 'No post was created')
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
Removed strange 'exists' method in post manager, fixed tests in which it was...
r396 self.assertFalse(Post.objects.filter(id=post_id).exists())
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"""
neko259
Split up post model into post and thread to normalise models. Still need some refactoring
r398 opening_post = self._create_post()
thread = opening_post.thread_new
neko259
Moved adding linked posts from view to post manager. Cleaned up tests, added some more tests
r381 reply = Post.objects.create_post("", "", thread=thread)
neko259
Split up post model into post and thread to normalise models. Still need some refactoring
r398 thread.delete_with_posts()
neko259
Moved adding linked posts from view to post manager. Cleaned up tests, added some more tests
r381
neko259
Removed strange 'exists' method in post manager, fixed tests in which it was...
r396 self.assertFalse(Post.objects.filter(id=reply.id).exists())
neko259
Moved adding linked posts from view to post manager. Cleaned up tests, added some more tests
r381
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()
neko259
Split up post model into post and thread to normalise models. Still need some refactoring
r398 post = Post.objects.create_post("", "", thread=op.thread_new)
neko259
Minor fixes. Added test for posting to thread
r380
self.assertIsNotNone(post, 'Reply to thread wasn\'t created')
neko259
Split up post model into post and thread to normalise models. Still need some refactoring
r398 self.assertEqual(op.thread_new.last_edit_time, post.pub_time,
neko259
Minor fixes. Added test for posting to thread
r380 '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
Removed strange 'exists' method in post manager, fixed tests in which it was...
r396 self.assertFalse(Post.objects.filter(id=post_id).exists())
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
Split up post model into post and thread to normalise models. Still need some refactoring
r398 Post.objects.create_post('title', 'text',
thread=opening_post.thread_new)
neko259
Fixed getting posts for a thread. Implemented thread getting test.
r17
neko259
Fixed some issues with post model migration
r400 thread = opening_post.thread_new
neko259
Fixed getting posts for a thread. Implemented thread getting test.
r17
neko259
Split up post model into post and thread to normalise models. Still need some refactoring
r398 self.assertEqual(3, thread.replies.count())
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
Split up post model into post and thread to normalise models. Still need some refactoring
r398
thread = post.thread_new
self.assertIsNotNone(post, 'Post not created')
self.assertTrue(tag in thread.tags.all(), 'Tag not added to thread')
self.assertTrue(thread in tag.threads.all(), 'Thread not added to tag')
neko259
Added maximum threads count parameter to the settings. Delete the old posts to preserve the max count. Small design tweaks.
r28
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
Updated paginator for long page lists. Removed old get_threads method in the post manager
r596 len(Thread.objects.filter(archived=False)))
neko259
Compiling regexes for gets. #17 Added pagination. #28 Visually differing the dead (not bumpable) threads.
r46
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()
neko259
Updated paginator for long page lists. Removed old get_threads method in the post manager
r596 all_threads = Thread.objects.filter(archived=False)
neko259
Compiling regexes for gets. #17 Added pagination. #28 Visually differing the dead (not bumpable) threads.
r46
neko259
Updated paginator for long page lists. Removed old get_threads method in the post manager
r596 paginator = Paginator(Thread.objects.filter(archived=False),
settings.THREADS_PER_PAGE)
posts_in_second_page = paginator.page(2).object_list
neko259
Compiling regexes for gets. #17 Added pagination. #28 Visually differing the dead (not bumpable) threads.
r46 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])
neko259
Split up post model into post and thread to normalise models. Still need some refactoring
r398 self.assertTrue(linked_tag in post.thread_new.tags.all(),
neko259
Moved adding linked posts from view to post manager. Cleaned up tests, added some more tests
r381 '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,
neko259
Split up post model into post and thread to normalise models. Still need some refactoring
r398 thread=Post.objects.all()[0]
.thread)
neko259
Moved adding linked posts from view to post manager. Cleaned up tests, added some more tests
r381 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):
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
neko259
Small refactoring. Added index view test
r415
class ViewTest(TestCase):
neko259
Added test for all views get requests. Fixed banned view failing this test
r545
def test_all_views(self):
'''
Try opening all views defined in ulrs.py that don't need additional
parameters
'''
neko259
Small refactoring. Added index view test
r415 client = Client()
neko259
Added test for all views get requests. Fixed banned view failing this test
r545 for url in urls.urlpatterns:
try:
view_name = url.name
logger.debug('Testing view %s' % view_name)
neko259
Small refactoring. Added index view test
r415
neko259
Added test for all views get requests. Fixed banned view failing this test
r545 try:
response = client.get(reverse(view_name))
self.assertEqual(HTTP_CODE_OK, response.status_code,
'%s view not opened' % view_name)
except NoReverseMatch:
# This view just needs additional arguments
pass
except Exception, e:
self.fail('Got exception %s at %s view' % (e, view_name))
except AttributeError:
# This is normal, some views do not have names
pass