summaryrefslogtreecommitdiff
path: root/django/contrib/sessions/tests.py
AgeCommit message (Expand)Author
2013-07-10[1.5.x] Fixed #20075 -- Fixed session test fail when using a cache other than...Mathijs de Bruin
2012-10-31Fixed #17083 -- Allowed sessions to use non-default cache.Aymeric Augustin
2012-10-28[1.5.x] Marked cookies-based session expiry test as an expected failure.Aymeric Augustin
2012-10-28[1.5.x] Fixed #18194 -- Expiration of file-based sessionsAymeric Augustin
2012-10-28[1.5.x] Improved tests introduced in 04b00b6.Aymeric Augustin
2012-10-28[1.5.x] Added optional kwargs to get_expiry_age/date.Aymeric Augustin
2012-10-27[1.5.x] Fixed #19200 -- Session expiry with cached_dbAymeric Augustin
2012-09-21Fixed #10853 -- Skipped some sessions tests with dummy cache backendClaude Paroz
2012-09-08Adjust d7853c5 to not show ignorable warnings when running tests.Malcolm Tredinnick
2012-09-08Remove a couple unused imports.Carl Meyer
2012-09-08Removed warning check in test_load_overlong_keyClaude Paroz
2012-08-07[py3] Fixed access to dict keys/values/items.Aymeric Augustin
2012-07-16Fixed #3881 -- skip saving session when response status is 500Anssi Kääriäinen
2012-05-03Inserted more simplefilter calls to be sure warnings are emitted.Claude Paroz
2012-05-03Made warning assertions work with or without -Wall python switchClaude Paroz
2012-05-03Used catch_warnings instead of save/restore methods. Refs #17049.Claude Paroz
2012-03-31Fixed #17965 -- Definitely dropped support for Python 2.5. Thanks jonash for ...Claude Paroz
2012-03-30Use the class decorator syntax available in Python >= 2.6. Refs #17965.Aymeric Augustin
2012-03-30Removed with_statement imports, useless in Python >= 2.6. Refs #17965. Thanks...Claude Paroz
2012-03-23Fixed #17810. Catch session key errors.Paul McMillan
2011-12-17Fixed various dodgy behavioursAdrian Holovaty
2011-11-27Optimized the cached_db session backend to check if a key exists in the cache...Aymeric Augustin
2011-11-27Fixed #11555 -- Made SessionBase.session_key read-only. Cleaned up code sligh...Aymeric Augustin
2011-11-22Improved the test for #16847.Paul McMillan
2011-11-21Fixed Python 2.5 test failure introduced in r17135.Paul McMillan
2011-11-21Fixed #16847. Session Cookies now default to httponly = True.Paul McMillan
2011-11-20Upgraded django.contrib.sessions to be compatible with time zone support.Aymeric Augustin
2011-10-05Fixed #16987 -- Improved error message for session tests. Thanks jMyles and D...Paul McMillan
2011-09-09Replaced `has_key()` calls with `in` to ease Python 3 port. Thanks, Martin vo...Jannis Leidel
2011-06-26Fixed a typo, and added an ``__future__`` import to the new signed cookie tets.Alex Gaynor
2011-06-26Fixed #16199 -- Added a Cookie based session backend. Many thanks to Eric Flo...Jannis Leidel
2011-03-30Removed Django 1.2 compatibility fallback for session data integrity check hash.Luke Plant
2011-03-28Removed a bunch of Python 2.4 workarounds now that we don't support it. Refs ...Adrian Holovaty
2011-02-09Fixed a security issue in the file session backend. Disclosure and new relea...Alex Gaynor
2011-01-31Fixed duplicate-named contrib.sessions tests, and removed unused import (clea...Carl Meyer
2011-01-17Fixed #15026 -- Added cleanup to the invalid key session tests; when using Me...Russell Keith-Magee
2010-11-26Fixed #3304 -- Added support for HTTPOnly cookies. Thanks to arvin for the su...Russell Keith-Magee
2010-11-14Fixed #14685 - incompatible code in contrib.sessions.modelsLuke Plant
2010-10-14Fixed #14445 - Use HMAC and constant-time comparison functions where needed.Luke Plant
2010-10-11Fixed #12991 -- Added unittest2 support. Thanks to PaulM for the draft patch,...Russell Keith-Magee
2010-08-14Fixed #14096 -- Corrected Python 2.4 syntax issue. Thanks to PaulM for the re...Russell Keith-Magee
2010-08-05Converted sessions tests from doctest to unittest.Luke Plant
2009-03-01Fixed #9548 -- Correctly detect existence of empty sessions with cache backend.Malcolm Tredinnick
2009-01-10Fixed #6791: added a write-through cache session backend: session data is wri...Jacob Kaplan-Moss
2008-10-10More be-nice-to-the-buildbot: be better about cleaning up files created by th...Jacob Kaplan-Moss
2008-08-21When logging in, change the session key whilst preserving any existingMalcolm Tredinnick
2008-08-16Fixed #8351 -- Fixed the returned value when we attempt to load a cache-backe...Malcolm Tredinnick
2008-08-14Fixed #8314 -- Fixed an infinite loop caused when submitting a session key (viaMalcolm Tredinnick
2008-08-14Implemented a flush() method on sessions that cleans out the session andMalcolm Tredinnick
2008-08-14Added a clear() method to sessions. Patch from mrts. Refs #7515.Malcolm Tredinnick