Modified the requests unit tests so that they aren't dependent on dictionary ordering.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@13948 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
778cfe3041
commit
75536fef1f
|
@ -10,22 +10,21 @@ from django.utils.http import cookie_date
|
||||||
class RequestsTests(unittest.TestCase):
|
class RequestsTests(unittest.TestCase):
|
||||||
|
|
||||||
def test_httprequest(self):
|
def test_httprequest(self):
|
||||||
self.assertEquals(repr(HttpRequest()),
|
request = HttpRequest()
|
||||||
"<HttpRequest\n"\
|
self.assertEqual(request.GET.keys(), [])
|
||||||
"GET:{},\n"\
|
self.assertEqual(request.POST.keys(), [])
|
||||||
"POST:{},\n"\
|
self.assertEqual(request.COOKIES.keys(), [])
|
||||||
"COOKIES:{},\n"\
|
self.assertEqual(request.META.keys(), [])
|
||||||
"META:{}>"
|
|
||||||
)
|
|
||||||
|
|
||||||
def test_wsgirequest(self):
|
def test_wsgirequest(self):
|
||||||
self.assertEquals(repr(WSGIRequest({'PATH_INFO': 'bogus', 'REQUEST_METHOD': 'bogus'})),
|
request = WSGIRequest({'PATH_INFO': 'bogus', 'REQUEST_METHOD': 'bogus'})
|
||||||
"<WSGIRequest\n"\
|
self.assertEqual(request.GET.keys(), [])
|
||||||
"GET:<QueryDict: {}>,\n"\
|
self.assertEqual(request.POST.keys(), [])
|
||||||
"POST:<QueryDict: {}>,\n"\
|
self.assertEqual(request.COOKIES.keys(), [])
|
||||||
"COOKIES:{},\n"\
|
self.assertEqual(set(request.META.keys()), set(['PATH_INFO', 'REQUEST_METHOD', 'SCRIPT_NAME']))
|
||||||
"META:{'PATH_INFO': u'bogus', 'REQUEST_METHOD': 'bogus', 'SCRIPT_NAME': u''}>"
|
self.assertEqual(request.META['PATH_INFO'], 'bogus')
|
||||||
)
|
self.assertEqual(request.META['REQUEST_METHOD'], 'bogus')
|
||||||
|
self.assertEqual(request.META['SCRIPT_NAME'], '')
|
||||||
|
|
||||||
def test_modpythonrequest(self):
|
def test_modpythonrequest(self):
|
||||||
class FakeModPythonRequest(ModPythonRequest):
|
class FakeModPythonRequest(ModPythonRequest):
|
||||||
|
@ -39,25 +38,24 @@ class RequestsTests(unittest.TestCase):
|
||||||
|
|
||||||
req = Dummy()
|
req = Dummy()
|
||||||
req.uri = 'bogus'
|
req.uri = 'bogus'
|
||||||
self.assertEquals(repr(FakeModPythonRequest(req)),
|
request = FakeModPythonRequest(req)
|
||||||
"<ModPythonRequest\n"\
|
self.assertEqual(request.path, 'bogus')
|
||||||
"path:bogus,\n"\
|
self.assertEqual(request.GET.keys(), [])
|
||||||
"GET:{},\n"\
|
self.assertEqual(request.POST.keys(), [])
|
||||||
"POST:{},\n"\
|
self.assertEqual(request.COOKIES.keys(), [])
|
||||||
"COOKIES:{},\n"\
|
self.assertEqual(request.META.keys(), [])
|
||||||
"META:{}>")
|
|
||||||
|
|
||||||
def test_parse_cookie(self):
|
def test_parse_cookie(self):
|
||||||
self.assertEquals(parse_cookie('invalid:key=true'), {})
|
self.assertEqual(parse_cookie('invalid:key=true'), {})
|
||||||
|
|
||||||
def test_httprequest_location(self):
|
def test_httprequest_location(self):
|
||||||
request = HttpRequest()
|
request = HttpRequest()
|
||||||
self.assertEquals(request.build_absolute_uri(location="https://www.example.com/asdf"),
|
self.assertEqual(request.build_absolute_uri(location="https://www.example.com/asdf"),
|
||||||
'https://www.example.com/asdf')
|
'https://www.example.com/asdf')
|
||||||
|
|
||||||
request.get_host = lambda: 'www.example.com'
|
request.get_host = lambda: 'www.example.com'
|
||||||
request.path = ''
|
request.path = ''
|
||||||
self.assertEquals(request.build_absolute_uri(location="/path/with:colons"),
|
self.assertEqual(request.build_absolute_uri(location="/path/with:colons"),
|
||||||
'http://www.example.com/path/with:colons')
|
'http://www.example.com/path/with:colons')
|
||||||
|
|
||||||
def test_near_expiration(self):
|
def test_near_expiration(self):
|
||||||
|
@ -74,14 +72,14 @@ class RequestsTests(unittest.TestCase):
|
||||||
time.sleep(0.001)
|
time.sleep(0.001)
|
||||||
response.set_cookie('datetime', expires=expires)
|
response.set_cookie('datetime', expires=expires)
|
||||||
datetime_cookie = response.cookies['datetime']
|
datetime_cookie = response.cookies['datetime']
|
||||||
self.assertEquals(datetime_cookie['max-age'], 10)
|
self.assertEqual(datetime_cookie['max-age'], 10)
|
||||||
|
|
||||||
def test_far_expiration(self):
|
def test_far_expiration(self):
|
||||||
"Cookie will expire when an distant expiration time is provided"
|
"Cookie will expire when an distant expiration time is provided"
|
||||||
response = HttpResponse()
|
response = HttpResponse()
|
||||||
response.set_cookie('datetime', expires=datetime(2028, 1, 1, 4, 5, 6))
|
response.set_cookie('datetime', expires=datetime(2028, 1, 1, 4, 5, 6))
|
||||||
datetime_cookie = response.cookies['datetime']
|
datetime_cookie = response.cookies['datetime']
|
||||||
self.assertEquals(datetime_cookie['expires'], 'Sat, 01-Jan-2028 04:05:06 GMT')
|
self.assertEqual(datetime_cookie['expires'], 'Sat, 01-Jan-2028 04:05:06 GMT')
|
||||||
|
|
||||||
def test_max_age_expiration(self):
|
def test_max_age_expiration(self):
|
||||||
"Cookie will expire if max_age is provided"
|
"Cookie will expire if max_age is provided"
|
||||||
|
|
Loading…
Reference in New Issue