summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClaude Paroz <claude@2xlibre.net>2013-11-23 20:51:17 +0100
committerClaude Paroz <claude@2xlibre.net>2013-11-26 20:41:51 +0100
commit384816fccb6dfc7fc40f8059811341ba3572d9ff (patch)
tree2d2578f616a1f8aacd7265dc0757fbd9dfa64c67
parent5725236c3ee4323203aa681cb54d1ff1d7f376df (diff)
Fixed #21448 -- Fixed test client logout with cookie-based sessions
Thanks Gunnar Scherf for the report and the suggested patch.
-rw-r--r--django/test/client.py1
-rw-r--r--docs/releases/1.6.1.txt2
-rw-r--r--tests/test_client/tests.py4
3 files changed, 7 insertions, 0 deletions
diff --git a/django/test/client.py b/django/test/client.py
index bf099e5b37..8c9a17564c 100644
--- a/django/test/client.py
+++ b/django/test/client.py
@@ -600,6 +600,7 @@ class Client(RequestFactory):
else:
request.session = engine.SessionStore()
logout(request)
+ self.cookies = SimpleCookie()
def _handle_redirects(self, response, **extra):
"Follows any redirects by requesting responses from the server using GET."
diff --git a/docs/releases/1.6.1.txt b/docs/releases/1.6.1.txt
index 156378f928..91c6a9e261 100644
--- a/docs/releases/1.6.1.txt
+++ b/docs/releases/1.6.1.txt
@@ -37,3 +37,5 @@ Bug fixes
multiple times (#21488, #17181).
* Fixed a regression that unnecessarily triggered settings configuration when
importing ``get_wsgi_application`` (#21486).
+* Fixed test client ``logout()`` method when using the cookie-based session
+ backend (#21448).
diff --git a/tests/test_client/tests.py b/tests/test_client/tests.py
index 14191306c4..d914a89043 100644
--- a/tests/test_client/tests.py
+++ b/tests/test_client/tests.py
@@ -368,6 +368,10 @@ class ClientTest(TestCase):
response = self.client.get('/test_client/login_protected_view/')
self.assertRedirects(response, 'http://testserver/accounts/login/?next=/test_client/login_protected_view/')
+ @override_settings(SESSION_ENGINE="django.contrib.sessions.backends.signed_cookies")
+ def test_logout_cookie_sessions(self):
+ self.test_logout()
+
def test_view_with_permissions(self):
"Request a page that is protected with @permission_required"