How Tdd Can Be Applied To Django Class Based Generic Views?
Solution 1:
Generally, that would include creating a request via the RequestFactory
and instantiating the view class with keyword arguments. Afterwards, you can call any of the view methods and evaluate the result, passing any required arguments.
I'd recommend that you review the base View
class, specifically the __init__
, as_view
and dispatch
methods. They're crucial to understanding how the framework interacts with view objects.
The most important bit to notice there is that view methods expect to be called during a request-response process, so they're allowed to rely upon self.request
, self.args
and self.kwargs
to be present before they're called, so make sure you've got that covered.
Solution 2:
Not sure if this is exactly what you're looking for, but this is an example of how I try to unit test my views (untested code below):
import unittest
from django.core.urlresolvers import reverse
from django.test.client import RequestFactory
from ..views import MyClassBasedView
classMyClassBasedViewTestCase(unittest.TestCase):
defsetUp(self):
self.factory = RequestFactory()
deftest_list_view(self):
request = self.factory.get(reverse('your_url'))
# additional params can go after request
response = MyClassBasedView.as_view()(request)
self.assertEqual(response.status_code, 200)
I'd also recommend looking at the documentation that Filip mentioned in his answer.
Solution 3:
I was looking for a simple solution for the same issue today and found this really great blog-post by BenoƮt Bryon (thanks!).
He suggested the following function:
defsetup_view(view, request, *args, **kwargs):
"""Mimic as_view() returned callable, but returns view instance.
args and kwargs are the same you would pass to ``reverse()``
"""
view.request = request
view.args = args
view.kwargs = kwargs
return view
Example
I wanted to test the following CBV:
classCreateList(CreateView):
model = Item
form_class = NewListForm
template_name = 'lists/home_page.html'defform_valid(self, form):
list_ = form.save(owner=self.request.user)
return redirect(list_)
The necessary tests are for the form.save
method arguments and for the redirect
arguments, which should be the return value of the former. These tests will look something like:
classCreateListTest(unittest.TestCase):
defsetUp(self):
self.request = HttpRequest()
self.request.user = Mock()
self.form = Mock()
self.view = setup_view(views.CreateList(), self.request)
deftest_form_dot_save_called_with_user(self):
self.view.form_valid(self.form)
self.form.save.assert_called_once_with(owner=self.request.user)
@patch('lists.views.redirect')deftest_redirect(self, mock_redirect):
self.view.form_valid(self.form)
mock_redirect.assert_called_once_with(self.form.save.return_value)
Post a Comment for "How Tdd Can Be Applied To Django Class Based Generic Views?"