I'm new to Django and I'd like to unit test a view that requires the user to be logged in (@login_requred). Django kindly provides the RequestFactory, which I can theoretically use to call the view directly:
factory = RequestFactory()
request = factory.get("/my/home/url")
response = views.home(request)
However, the call fails with
AttributeError: 'WSGIRequest' object has no attribute 'session'
Apparently, this is intentional, but where does that leave me? How do I test views that require authentication (which in my case is all of them)? Or am I taking the wrong approach entirely?
I'm using Django 1.3 and Python 2.7.