2008-03-08 11:06:30 +08:00
|
|
|
"""
|
|
|
|
>>> from django.http import HttpRequest
|
|
|
|
>>> print repr(HttpRequest())
|
|
|
|
<HttpRequest
|
|
|
|
GET:{},
|
|
|
|
POST:{},
|
|
|
|
COOKIES:{},
|
|
|
|
META:{}>
|
|
|
|
|
|
|
|
>>> from django.core.handlers.wsgi import WSGIRequest
|
|
|
|
>>> print repr(WSGIRequest({'PATH_INFO': 'bogus', 'REQUEST_METHOD': 'bogus'}))
|
|
|
|
<WSGIRequest
|
|
|
|
GET:<QueryDict: {}>,
|
|
|
|
POST:<QueryDict: {}>,
|
|
|
|
COOKIES:{},
|
2008-03-08 22:41:13 +08:00
|
|
|
META:{...}>
|
2008-03-08 11:06:30 +08:00
|
|
|
|
|
|
|
>>> from django.core.handlers.modpython import ModPythonRequest
|
|
|
|
>>> class FakeModPythonRequest(ModPythonRequest):
|
|
|
|
... def __init__(self, *args, **kwargs):
|
|
|
|
... super(FakeModPythonRequest, self).__init__(*args, **kwargs)
|
|
|
|
... self._get = self._post = self._meta = self._cookies = {}
|
2008-07-21 15:57:10 +08:00
|
|
|
>>> class Dummy:
|
|
|
|
... def get_options(self):
|
|
|
|
... return {}
|
2008-03-08 11:06:30 +08:00
|
|
|
>>> req = Dummy()
|
|
|
|
>>> req.uri = 'bogus'
|
|
|
|
>>> print repr(FakeModPythonRequest(req))
|
|
|
|
<ModPythonRequest
|
|
|
|
path:bogus,
|
|
|
|
GET:{},
|
|
|
|
POST:{},
|
|
|
|
COOKIES:{},
|
|
|
|
META:{}>
|
2008-03-17 21:49:04 +08:00
|
|
|
|
|
|
|
>>> from django.http import parse_cookie
|
|
|
|
>>> parse_cookie('invalid:key=true')
|
|
|
|
{}
|
2008-08-24 01:28:12 +08:00
|
|
|
|
|
|
|
>>> request = HttpRequest()
|
|
|
|
>>> print request.build_absolute_uri(location="https://www.example.com/asdf")
|
|
|
|
https://www.example.com/asdf
|
|
|
|
>>> request.get_host = lambda: 'www.example.com'
|
|
|
|
>>> request.path = ''
|
|
|
|
>>> print request.build_absolute_uri(location="/path/with:colons")
|
|
|
|
http://www.example.com/path/with:colons
|
2008-03-08 11:06:30 +08:00
|
|
|
"""
|