2012-06-08 00:08:47 +08:00
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
2013-07-02 04:49:07 +08:00
|
|
|
import unittest
|
|
|
|
|
2011-10-22 12:30:10 +08:00
|
|
|
from django.core.exceptions import ImproperlyConfigured
|
|
|
|
from django.core.servers.basehttp import get_internal_wsgi_application
|
2013-02-18 18:37:26 +08:00
|
|
|
from django.core.signals import request_started
|
2011-10-22 12:30:10 +08:00
|
|
|
from django.core.wsgi import get_wsgi_application
|
2013-02-18 18:37:26 +08:00
|
|
|
from django.db import close_old_connections
|
2011-10-22 12:30:10 +08:00
|
|
|
from django.test import TestCase
|
|
|
|
from django.test.client import RequestFactory
|
|
|
|
from django.test.utils import override_settings
|
2013-07-02 04:49:07 +08:00
|
|
|
from django.utils import six
|
2011-10-22 12:30:10 +08:00
|
|
|
|
|
|
|
|
|
|
|
class WSGITest(TestCase):
|
2013-02-26 20:19:18 +08:00
|
|
|
urls = "wsgi.urls"
|
2011-10-22 12:30:10 +08:00
|
|
|
|
2013-02-18 18:37:26 +08:00
|
|
|
def setUp(self):
|
|
|
|
request_started.disconnect(close_old_connections)
|
|
|
|
|
|
|
|
def tearDown(self):
|
|
|
|
request_started.connect(close_old_connections)
|
|
|
|
|
2011-10-22 12:30:10 +08:00
|
|
|
def test_get_wsgi_application(self):
|
|
|
|
"""
|
|
|
|
Verify that ``get_wsgi_application`` returns a functioning WSGI
|
|
|
|
callable.
|
|
|
|
|
|
|
|
"""
|
|
|
|
application = get_wsgi_application()
|
|
|
|
|
|
|
|
environ = RequestFactory()._base_environ(
|
|
|
|
PATH_INFO="/",
|
|
|
|
CONTENT_TYPE="text/html; charset=utf-8",
|
|
|
|
REQUEST_METHOD="GET"
|
|
|
|
)
|
|
|
|
|
|
|
|
response_data = {}
|
|
|
|
|
|
|
|
def start_response(status, headers):
|
|
|
|
response_data["status"] = status
|
|
|
|
response_data["headers"] = headers
|
|
|
|
|
|
|
|
response = application(environ, start_response)
|
|
|
|
|
|
|
|
self.assertEqual(response_data["status"], "200 OK")
|
|
|
|
self.assertEqual(
|
|
|
|
response_data["headers"],
|
|
|
|
[('Content-Type', 'text/html; charset=utf-8')])
|
|
|
|
self.assertEqual(
|
2012-08-14 15:44:04 +08:00
|
|
|
bytes(response),
|
|
|
|
b"Content-Type: text/html; charset=utf-8\r\n\r\nHello World!")
|
2011-10-22 12:30:10 +08:00
|
|
|
|
|
|
|
|
|
|
|
class GetInternalWSGIApplicationTest(unittest.TestCase):
|
2013-02-26 20:19:18 +08:00
|
|
|
@override_settings(WSGI_APPLICATION="wsgi.wsgi.application")
|
2011-10-22 12:30:10 +08:00
|
|
|
def test_success(self):
|
|
|
|
"""
|
|
|
|
If ``WSGI_APPLICATION`` is a dotted path, the referenced object is
|
|
|
|
returned.
|
|
|
|
|
|
|
|
"""
|
|
|
|
app = get_internal_wsgi_application()
|
|
|
|
|
|
|
|
from .wsgi import application
|
|
|
|
|
|
|
|
self.assertTrue(app is application)
|
|
|
|
|
|
|
|
|
|
|
|
@override_settings(WSGI_APPLICATION=None)
|
|
|
|
def test_default(self):
|
|
|
|
"""
|
|
|
|
If ``WSGI_APPLICATION`` is ``None``, the return value of
|
|
|
|
``get_wsgi_application`` is returned.
|
|
|
|
|
|
|
|
"""
|
|
|
|
# Mock out get_wsgi_application so we know its return value is used
|
|
|
|
fake_app = object()
|
|
|
|
def mock_get_wsgi_app():
|
|
|
|
return fake_app
|
|
|
|
from django.core.servers import basehttp
|
|
|
|
_orig_get_wsgi_app = basehttp.get_wsgi_application
|
|
|
|
basehttp.get_wsgi_application = mock_get_wsgi_app
|
|
|
|
|
|
|
|
try:
|
|
|
|
app = get_internal_wsgi_application()
|
|
|
|
|
|
|
|
self.assertTrue(app is fake_app)
|
|
|
|
finally:
|
|
|
|
basehttp.get_wsgi_application = _orig_get_wsgi_app
|
|
|
|
|
|
|
|
|
2013-02-26 20:19:18 +08:00
|
|
|
@override_settings(WSGI_APPLICATION="wsgi.noexist.app")
|
2011-10-22 12:30:10 +08:00
|
|
|
def test_bad_module(self):
|
2012-09-08 01:17:09 +08:00
|
|
|
with six.assertRaisesRegex(self,
|
2011-10-27 05:07:12 +08:00
|
|
|
ImproperlyConfigured,
|
2013-02-26 20:19:18 +08:00
|
|
|
r"^WSGI application 'wsgi.noexist.app' could not be loaded; Error importing.*"):
|
2011-10-22 12:30:10 +08:00
|
|
|
|
2011-10-27 05:07:12 +08:00
|
|
|
get_internal_wsgi_application()
|
2011-10-22 12:30:10 +08:00
|
|
|
|
|
|
|
|
2013-02-26 20:19:18 +08:00
|
|
|
@override_settings(WSGI_APPLICATION="wsgi.wsgi.noexist")
|
2011-10-22 12:30:10 +08:00
|
|
|
def test_bad_name(self):
|
2012-09-08 01:17:09 +08:00
|
|
|
with six.assertRaisesRegex(self,
|
2011-10-27 05:07:12 +08:00
|
|
|
ImproperlyConfigured,
|
2013-02-26 20:19:18 +08:00
|
|
|
r"^WSGI application 'wsgi.wsgi.noexist' could not be loaded; Module.*"):
|
2011-10-22 12:30:10 +08:00
|
|
|
|
2011-10-27 05:07:12 +08:00
|
|
|
get_internal_wsgi_application()
|