summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAymeric Augustin <aymeric.augustin@m4x.org>2012-10-27 21:59:35 +0200
committerAymeric Augustin <aymeric.augustin@m4x.org>2012-10-28 09:21:27 +0100
commite6b0ee768c46368a41a5b278180d1d1ecbd3d5c6 (patch)
treebc7916d387dbd9b377c5659e80a03081e2a24812
parent845d8408e7aa09a63c98f160b2c6bc9fa6dbb20f (diff)
[1.5.x] Improved tests introduced in 04b00b6.
These tests are expected to fail for the file session backend because it doesn't handle expiry properly. They didn't because of an error in the test setup sequence. Refs #19200, #18194. Backport of 882c47c from master.
-rw-r--r--django/contrib/sessions/tests.py8
1 files changed, 5 insertions, 3 deletions
diff --git a/django/contrib/sessions/tests.py b/django/contrib/sessions/tests.py
index 44c3b485e9..21e8d845b8 100644
--- a/django/contrib/sessions/tests.py
+++ b/django/contrib/sessions/tests.py
@@ -277,9 +277,11 @@ class SessionTestsMixin(object):
try:
self.session['foo'] = 'bar'
self.session.set_expiry(-timedelta(seconds=10))
- self.session.create()
+ self.session.save()
+ old_session_key = self.session.session_key
# With an expiry date in the past, the session expires instantly.
new_session = self.backend(self.session.session_key)
+ new_session_key = new_session.session_key
self.assertNotIn('foo', new_session)
finally:
self.session.delete(old_session_key)
@@ -353,15 +355,15 @@ class FileSessionTests(SessionTestsMixin, unittest.TestCase):
backend = FileSession
def setUp(self):
- super(FileSessionTests, self).setUp()
# Do file session tests in an isolated directory, and kill it after we're done.
self.original_session_file_path = settings.SESSION_FILE_PATH
self.temp_session_store = settings.SESSION_FILE_PATH = tempfile.mkdtemp()
+ super(FileSessionTests, self).setUp()
def tearDown(self):
+ super(FileSessionTests, self).tearDown()
settings.SESSION_FILE_PATH = self.original_session_file_path
shutil.rmtree(self.temp_session_store)
- super(FileSessionTests, self).tearDown()
@override_settings(
SESSION_FILE_PATH="/if/this/directory/exists/you/have/a/weird/computer")