2010-01-11 01:35:01 +08:00
|
|
|
import sys
|
|
|
|
|
|
|
|
from django.test import TestCase
|
|
|
|
from django.core.signals import got_request_exception
|
|
|
|
|
2010-03-13 00:45:29 +08:00
|
|
|
class TestException(Exception):
|
|
|
|
pass
|
|
|
|
|
2010-10-29 15:43:56 +08:00
|
|
|
class TestRequestMiddleware(object):
|
2010-01-11 01:35:01 +08:00
|
|
|
def process_request(self, request):
|
2010-03-13 00:45:29 +08:00
|
|
|
raise TestException('Test Exception')
|
2010-01-11 01:35:01 +08:00
|
|
|
|
2010-10-29 15:43:56 +08:00
|
|
|
class TestResponseMiddleware(object):
|
|
|
|
def process_response(self, request, response):
|
|
|
|
raise TestException('Test Exception')
|
|
|
|
|
2010-01-11 01:35:01 +08:00
|
|
|
class MiddlewareExceptionTest(TestCase):
|
2010-01-11 02:48:08 +08:00
|
|
|
def setUp(self):
|
2010-01-11 01:35:01 +08:00
|
|
|
self.exceptions = []
|
|
|
|
got_request_exception.connect(self._on_request_exception)
|
|
|
|
self.client.handler.load_middleware()
|
|
|
|
|
|
|
|
def tearDown(self):
|
2010-01-11 02:48:08 +08:00
|
|
|
got_request_exception.disconnect(self._on_request_exception)
|
2010-01-11 01:35:01 +08:00
|
|
|
self.exceptions = []
|
|
|
|
|
|
|
|
def _on_request_exception(self, sender, request, **kwargs):
|
|
|
|
self.exceptions.append(sys.exc_info())
|
|
|
|
|
2010-10-29 15:43:56 +08:00
|
|
|
def _assert_exception_handled(self):
|
2010-01-11 01:35:01 +08:00
|
|
|
try:
|
2010-10-29 15:43:56 +08:00
|
|
|
response = self.client.get('/middleware_exceptions/')
|
2010-03-13 00:45:29 +08:00
|
|
|
except TestException, e:
|
2010-10-29 15:43:56 +08:00
|
|
|
# Test client intentionally re-raises any exceptions being raised
|
2010-01-11 01:35:01 +08:00
|
|
|
# during request handling. Hence actual testing that exception was
|
|
|
|
# properly handled is done by relying on got_request_exception
|
|
|
|
# signal being sent.
|
|
|
|
pass
|
2010-03-13 00:45:29 +08:00
|
|
|
except Exception, e:
|
|
|
|
self.fail("Unexpected exception: %s" % e)
|
2010-01-11 01:35:01 +08:00
|
|
|
self.assertEquals(len(self.exceptions), 1)
|
|
|
|
exception, value, tb = self.exceptions[0]
|
2010-03-13 00:45:29 +08:00
|
|
|
self.assertEquals(value.args, ('Test Exception', ))
|
2010-10-29 15:43:56 +08:00
|
|
|
|
|
|
|
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()
|