diff options
author | Arthur Koziel <arthur@arthurkoziel.com> | 2010-09-13 00:04:27 +0000 |
---|---|---|
committer | Arthur Koziel <arthur@arthurkoziel.com> | 2010-09-13 00:04:27 +0000 |
commit | dd49269c7db008b2567f50cb03c4d3d9b321daa1 (patch) | |
tree | 326dd25bb045ac016cda7966b43cbdfe1f67d699 /tests/regressiontests/requests/tests.py | |
parent | c9b188c4ec939abbe48dae5a371276742e64b6b8 (diff) | |
download | django-soc2010/app-loading.tar.gz |
[soc2010/app-loading] merged trunkarchive/soc2010/app-loadingsoc2010/app-loading
git-svn-id: http://code.djangoproject.com/svn/django/branches/soc2010/app-loading@13818 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'tests/regressiontests/requests/tests.py')
-rw-r--r-- | tests/regressiontests/requests/tests.py | 25 |
1 files changed, 24 insertions, 1 deletions
diff --git a/tests/regressiontests/requests/tests.py b/tests/regressiontests/requests/tests.py index 1615a73406..22bc88c172 100644 --- a/tests/regressiontests/requests/tests.py +++ b/tests/regressiontests/requests/tests.py @@ -1,5 +1,5 @@ """ ->>> from django.http import HttpRequest +>>> from django.http import HttpRequest, HttpResponse >>> print repr(HttpRequest()) <HttpRequest GET:{}, @@ -44,4 +44,27 @@ https://www.example.com/asdf >>> request.path = '' >>> print request.build_absolute_uri(location="/path/with:colons") http://www.example.com/path/with:colons + + +# Test cookie datetime expiration logic +>>> from datetime import datetime, timedelta +>>> delta = timedelta(seconds=10) +>>> response = HttpResponse() +>>> response.set_cookie('datetime', expires=datetime.utcnow()+delta) +>>> datetime_cookie = response.cookies['datetime'] +>>> datetime_cookie['max-age'] +10 +>>> response.set_cookie('datetime', expires=datetime(2028, 1, 1, 4, 5, 6)) +>>> response.cookies['datetime']['expires'] +'Sat, 01-Jan-2028 04:05:06 GMT' + +# Test automatically setting cookie expires if only max_age is provided +>>> response.set_cookie('max_age', max_age=10) +>>> max_age_cookie = response.cookies['max_age'] +>>> max_age_cookie['max-age'] +10 +>>> from django.utils.http import cookie_date +>>> import time +>>> max_age_cookie['expires'] == cookie_date(time.time()+10) +True """ |