##// END OF EJS Templates
Continue to extract section strings
Continue to extract section strings

File last commit:

r1988:5bf4a97e default
r2004:d0cc4756 default
Show More
test_views.py
46 lines | 1.2 KiB | text/x-python | PythonLexer
neko259
Split tests module into separate modules
r821 import logging
neko259
Fixed page 404 and some tests
r1988 from django.urls import reverse, NoReverseMatch
neko259
Split tests module into separate modules
r821 from django.test import TestCase, Client
from boards import urls
logger = logging.getLogger(__name__)
HTTP_CODE_OK = 200
neko259
404 page now returns the 404 status for real. Fixed some tests related to...
r890 EXCLUDED_VIEWS = {
neko259
Fixed API related tests
r1175 'banned',
'get_thread_diff',
'api_sync_pull',
neko259
404 page now returns the 404 status for real. Fixed some tests related to...
r890 }
neko259
Split tests module into separate modules
r821
class ViewTest(TestCase):
def test_all_views(self):
"""
Try opening all views defined in ulrs.py that don't need additional
parameters
"""
client = Client()
for url in urls.urlpatterns:
try:
view_name = url.name
neko259
404 page now returns the 404 status for real. Fixed some tests related to...
r890 if view_name in EXCLUDED_VIEWS:
logger.debug('View {} is excluded.'.format(view_name))
continue
neko259
Split tests module into separate modules
r821 logger.debug('Testing view %s' % view_name)
try:
response = client.get(reverse(view_name))
self.assertEqual(HTTP_CODE_OK, response.status_code,
neko259
404 page now returns the 404 status for real. Fixed some tests related to...
r890 'View not opened: {}'.format(view_name))
neko259
Split tests module into separate modules
r821 except NoReverseMatch:
# This view just needs additional arguments
pass
except AttributeError:
# This is normal, some views do not have names
pass