Fixed #14523 -- Modified response handling so that exceptions raised by process_response() in a middleware are caught and handled like any other exception. Thanks to Ivan Sagalaev for the report and patch.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@14393 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
c38a174f7c
commit
3086b55b0e
|
@ -120,6 +120,11 @@ class BaseHandler(object):
|
||||||
view_name = callback.__class__.__name__ + '.__call__' # If it's a class
|
view_name = callback.__class__.__name__ + '.__call__' # If it's a class
|
||||||
raise ValueError("The view %s.%s didn't return an HttpResponse object." % (callback.__module__, view_name))
|
raise ValueError("The view %s.%s didn't return an HttpResponse object." % (callback.__module__, view_name))
|
||||||
|
|
||||||
|
# Apply response middleware
|
||||||
|
for middleware_method in self._response_middleware:
|
||||||
|
response = middleware_method(request, response)
|
||||||
|
response = self.apply_response_fixes(request, response)
|
||||||
|
|
||||||
return response
|
return response
|
||||||
except http.Http404, e:
|
except http.Http404, e:
|
||||||
logger.warning('Not Found: %s' % request.path,
|
logger.warning('Not Found: %s' % request.path,
|
||||||
|
|
|
@ -215,11 +215,6 @@ class ModPythonHandler(BaseHandler):
|
||||||
response = http.HttpResponseBadRequest()
|
response = http.HttpResponseBadRequest()
|
||||||
else:
|
else:
|
||||||
response = self.get_response(request)
|
response = self.get_response(request)
|
||||||
|
|
||||||
# Apply response middleware
|
|
||||||
for middleware_method in self._response_middleware:
|
|
||||||
response = middleware_method(request, response)
|
|
||||||
response = self.apply_response_fixes(request, response)
|
|
||||||
finally:
|
finally:
|
||||||
signals.request_finished.send(sender=self.__class__)
|
signals.request_finished.send(sender=self.__class__)
|
||||||
|
|
||||||
|
|
|
@ -251,11 +251,6 @@ class WSGIHandler(base.BaseHandler):
|
||||||
response = http.HttpResponseBadRequest()
|
response = http.HttpResponseBadRequest()
|
||||||
else:
|
else:
|
||||||
response = self.get_response(request)
|
response = self.get_response(request)
|
||||||
|
|
||||||
# Apply response middleware
|
|
||||||
for middleware_method in self._response_middleware:
|
|
||||||
response = middleware_method(request, response)
|
|
||||||
response = self.apply_response_fixes(request, response)
|
|
||||||
finally:
|
finally:
|
||||||
signals.request_finished.send(sender=self.__class__)
|
signals.request_finished.send(sender=self.__class__)
|
||||||
|
|
||||||
|
|
|
@ -6,10 +6,14 @@ from django.core.signals import got_request_exception
|
||||||
class TestException(Exception):
|
class TestException(Exception):
|
||||||
pass
|
pass
|
||||||
|
|
||||||
class TestMiddleware(object):
|
class TestRequestMiddleware(object):
|
||||||
def process_request(self, request):
|
def process_request(self, request):
|
||||||
raise TestException('Test Exception')
|
raise TestException('Test Exception')
|
||||||
|
|
||||||
|
class TestResponseMiddleware(object):
|
||||||
|
def process_response(self, request, response):
|
||||||
|
raise TestException('Test Exception')
|
||||||
|
|
||||||
class MiddlewareExceptionTest(TestCase):
|
class MiddlewareExceptionTest(TestCase):
|
||||||
def setUp(self):
|
def setUp(self):
|
||||||
self.exceptions = []
|
self.exceptions = []
|
||||||
|
@ -23,12 +27,11 @@ class MiddlewareExceptionTest(TestCase):
|
||||||
def _on_request_exception(self, sender, request, **kwargs):
|
def _on_request_exception(self, sender, request, **kwargs):
|
||||||
self.exceptions.append(sys.exc_info())
|
self.exceptions.append(sys.exc_info())
|
||||||
|
|
||||||
def test_process_request(self):
|
def _assert_exception_handled(self):
|
||||||
self.client.handler._request_middleware.insert(0, TestMiddleware().process_request)
|
|
||||||
try:
|
try:
|
||||||
response = self.client.get('/')
|
response = self.client.get('/middleware_exceptions/')
|
||||||
except TestException, e:
|
except TestException, e:
|
||||||
# Test client indefinitely re-raises any exceptions being raised
|
# Test client intentionally re-raises any exceptions being raised
|
||||||
# during request handling. Hence actual testing that exception was
|
# during request handling. Hence actual testing that exception was
|
||||||
# properly handled is done by relying on got_request_exception
|
# properly handled is done by relying on got_request_exception
|
||||||
# signal being sent.
|
# signal being sent.
|
||||||
|
@ -38,3 +41,11 @@ class MiddlewareExceptionTest(TestCase):
|
||||||
self.assertEquals(len(self.exceptions), 1)
|
self.assertEquals(len(self.exceptions), 1)
|
||||||
exception, value, tb = self.exceptions[0]
|
exception, value, tb = self.exceptions[0]
|
||||||
self.assertEquals(value.args, ('Test Exception', ))
|
self.assertEquals(value.args, ('Test Exception', ))
|
||||||
|
|
||||||
|
def test_process_request(self):
|
||||||
|
self.client.handler._request_middleware.insert(0, TestRequestMiddleware().process_request)
|
||||||
|
self._assert_exception_handled()
|
||||||
|
|
||||||
|
def test_process_response(self):
|
||||||
|
self.client.handler._response_middleware.insert(0, TestResponseMiddleware().process_response)
|
||||||
|
self._assert_exception_handled()
|
||||||
|
|
Loading…
Reference in New Issue