2011-01-15 07:18:21 +08:00
|
|
|
from django.utils import unittest
|
|
|
|
from django.conf import settings
|
|
|
|
from django.core.handlers.wsgi import WSGIHandler
|
2011-04-22 20:15:52 +08:00
|
|
|
from django.test import RequestFactory
|
|
|
|
|
2011-01-15 07:18:21 +08:00
|
|
|
|
|
|
|
class HandlerTests(unittest.TestCase):
|
|
|
|
|
|
|
|
def test_lock_safety(self):
|
|
|
|
"""
|
|
|
|
Tests for bug #11193 (errors inside middleware shouldn't leave
|
|
|
|
the initLock locked).
|
|
|
|
"""
|
|
|
|
# Mangle settings so the handler will fail
|
|
|
|
old_middleware_classes = settings.MIDDLEWARE_CLASSES
|
|
|
|
settings.MIDDLEWARE_CLASSES = 42
|
|
|
|
# Try running the handler, it will fail in load_middleware
|
|
|
|
handler = WSGIHandler()
|
|
|
|
self.assertEqual(handler.initLock.locked(), False)
|
|
|
|
try:
|
|
|
|
handler(None, None)
|
|
|
|
except:
|
|
|
|
pass
|
|
|
|
self.assertEqual(handler.initLock.locked(), False)
|
|
|
|
# Reset settings
|
|
|
|
settings.MIDDLEWARE_CLASSES = old_middleware_classes
|
|
|
|
|
2011-04-22 20:15:52 +08:00
|
|
|
def test_bad_path_info(self):
|
|
|
|
"""Tests for bug #15672 ('request' referenced before assignment)"""
|
|
|
|
environ = RequestFactory().get('/').environ
|
|
|
|
environ['PATH_INFO'] = '\xed'
|
|
|
|
handler = WSGIHandler()
|
|
|
|
response = handler(environ, lambda *a, **k: None)
|
|
|
|
self.assertEqual(response.status_code, 400)
|