#17342: Accessing session in middleware causes contrib.auth tests to fail
------------------------------+--------------------
     Reporter:  oinopion      |      Owner:  nobody
         Type:  Bug           |     Status:  new
    Component:  contrib.auth  |    Version:  SVN
     Severity:  Normal        |   Keywords:
 Triage Stage:  Unreviewed    |  Has patch:  0
Easy pickings:  0             |      UI/UX:  0
------------------------------+--------------------
 I have custom middleware that looks like this:
 {{{#!python
 class MyMiddleware:
     def process_request(self, request):
         if request.user.is_authenticated():
             pass # not important
 }}}
 After adding to `MIDDLEWARE_CLASSES` this causes following error to appear
 in tests:
 {{{
 FAIL: test_session_not_accessed
 (django.contrib.auth.tests.context_processors.AuthContextProcessorTests)
 ----------------------------------------------------------------------
 Traceback (most recent call last):
   File
 "/home/oinopion/Devel/django/django/contrib/auth/tests/context_processors.py",
 line 31, in test_session_not_accessed
     self.assertContains(response, "Session not accessed")
   File "/home/oinopion/Devel/django/django/test/testcases.py", line 524,
 in assertContains
     msg_prefix + "Couldn't find '%s' in response" % text)
 AssertionError: False is not True : Couldn't find 'Session not accessed'
 in response
 }}}

-- 
Ticket URL: <https://code.djangoproject.com/ticket/17342>
Django <https://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en.

Reply via email to