lostplaces-backend/lostplaces/lostplaces_app/tests/views/__init__.py

108 lines
3.3 KiB
Python
Raw Normal View History

2020-09-12 11:02:23 +02:00
from django.test import Client
2020-09-13 12:39:46 +02:00
class ViewTestCaseMixin:
2020-09-13 12:41:31 +02:00
'''
This is a mixni for testing views. It provides functionality to
test the context, forms and HTTP Response of responses.
2020-09-13 12:49:26 +02:00
Also works with django's ReqeustFactory and provides a self.client
2020-09-13 12:41:31 +02:00
'''
2020-09-12 11:02:23 +02:00
view = None
def setUp(self):
self.view_name = self.view.__name__
2020-09-13 12:49:26 +02:00
self.client = Client()
2020-09-12 11:02:23 +02:00
2020-09-13 12:49:26 +02:00
def assertContext(self, response, key, value=None):
'''
Checks weather the response's context has the given key
and, if passed, checks the value
'''
self.assertTrue(
key in response.context,
2020-09-12 11:02:23 +02:00
msg='Expecting the context of %s to have an attribute \'%s\'' % (
self.view_name,
2020-09-13 12:49:26 +02:00
key
2020-09-12 11:02:23 +02:00
)
)
2020-09-13 12:49:26 +02:00
if value:
self.assertEqual(
value,
response.context[key],
msg='Expecting the context of %s to have %s set to \'%s\'' % (
self.view_name,
key,
str(value)
)
)
2020-09-12 11:02:23 +02:00
2020-09-13 12:39:02 +02:00
def assertHasForm(self, response, context_key, form_class):
2020-09-13 12:49:26 +02:00
'''
Checks if response has a form under the given key and if
the forms class matches.
'''
self.assertContext(response, context_key)
2020-09-12 11:02:23 +02:00
self.assertEqual(
type(response.context[context_key]),
form_class,
msg='Expecting %s\'s context.%s to be of the type %s' % (
self.view_name,
context_key,
form_class.__name__
)
2020-09-13 12:39:02 +02:00
)
def assertHttpCode(self, response, code):
2020-09-13 12:49:26 +02:00
'''
Checks if the response has the given status code
'''
2020-09-13 12:39:02 +02:00
self.assertEqual(
response.status_code, code,
"Expected an HTTP %s response, but got HTTP %s" % (
code,
response.status_code
)
)
def assertHttpOK(self, response):
self.assertHttpCode(response, 200)
def assertHttpCreated(self, response):
self.assertHttpCode(response, 201)
2020-09-13 12:49:26 +02:00
def assertHttpRedirect(self, response, redirect_to=None):
2020-09-13 12:39:02 +02:00
'''
2020-09-13 12:49:26 +02:00
Checks weather the response redirected, and if passed,
if it redirected to the expected loaction
2020-09-13 12:39:02 +02:00
'''
self.assertTrue(
300 <= response.status_code < 400,
'Expected an HTTP 3XX (redirect) response, but got HTTP %s' %
response.status_code
)
2020-09-13 12:49:26 +02:00
if redirect_to:
self.assertEqual(
response['Location'],
redirect_to,
msg='Expecing the response to redirect to %s, where redirected to %s instea' % (
str(redirect_to),
str(response['Location'])
)
)
2020-09-13 12:39:02 +02:00
def assertHttpBadRequest(self, response):
self.assertHttpCode(response, 400)
def assertHttpUnauthorized(self, response):
self.assertHttpCode(response, 401)
def assertHttpForbidden(self, response):
self.assertHttpCode(response, 403)
def assertHttpNotFound(self, response):
self.assertHttpCode(response, 404)
def assertHttpMethodNotAllowed(self, response):
self.assertHttpCode(response, 405)