2014-11-14 03:25:08 +08:00
|
|
|
import warnings
|
|
|
|
from django.utils.deprecation import RemovedInDjango20Warning
|
2013-12-23 23:01:13 +08:00
|
|
|
from django.test import TestCase, override_settings
|
2010-12-22 01:18:41 +08:00
|
|
|
|
2013-11-03 05:34:05 +08:00
|
|
|
|
2012-04-09 21:24:57 +08:00
|
|
|
@override_settings(
|
|
|
|
TEMPLATE_CONTEXT_PROCESSORS=('django.core.context_processors.static',),
|
|
|
|
STATIC_URL='/path/to/static/media/',
|
2014-11-23 00:52:12 +08:00
|
|
|
ROOT_URLCONF='shortcuts.urls',
|
2012-04-09 21:24:57 +08:00
|
|
|
)
|
2010-12-22 01:18:41 +08:00
|
|
|
class ShortcutTests(TestCase):
|
2011-04-02 21:27:40 +08:00
|
|
|
|
2010-12-22 01:18:41 +08:00
|
|
|
def test_render_to_response(self):
|
2014-11-23 00:52:12 +08:00
|
|
|
response = self.client.get('/render_to_response/')
|
2011-03-03 23:04:39 +08:00
|
|
|
self.assertEqual(response.status_code, 200)
|
2012-08-12 04:29:18 +08:00
|
|
|
self.assertEqual(response.content, b'FOO.BAR..\n')
|
2011-03-03 23:04:39 +08:00
|
|
|
self.assertEqual(response['Content-Type'], 'text/html; charset=utf-8')
|
2010-12-22 01:18:41 +08:00
|
|
|
|
|
|
|
def test_render_to_response_with_request_context(self):
|
2014-11-23 00:52:12 +08:00
|
|
|
response = self.client.get('/render_to_response/request_context/')
|
2011-03-03 23:04:39 +08:00
|
|
|
self.assertEqual(response.status_code, 200)
|
2012-08-12 04:29:18 +08:00
|
|
|
self.assertEqual(response.content, b'FOO.BAR../path/to/static/media/\n')
|
2011-03-03 23:04:39 +08:00
|
|
|
self.assertEqual(response['Content-Type'], 'text/html; charset=utf-8')
|
2010-12-22 01:18:41 +08:00
|
|
|
|
2013-01-31 20:39:29 +08:00
|
|
|
def test_render_to_response_with_content_type(self):
|
2014-11-23 00:52:12 +08:00
|
|
|
response = self.client.get('/render_to_response/content_type/')
|
2011-03-03 23:04:39 +08:00
|
|
|
self.assertEqual(response.status_code, 200)
|
2012-08-12 04:29:18 +08:00
|
|
|
self.assertEqual(response.content, b'FOO.BAR..\n')
|
2011-03-03 23:04:39 +08:00
|
|
|
self.assertEqual(response['Content-Type'], 'application/x-rendertest')
|
2010-12-22 01:18:41 +08:00
|
|
|
|
2013-09-16 05:51:24 +08:00
|
|
|
def test_render_to_response_with_dirs(self):
|
2014-11-14 03:25:08 +08:00
|
|
|
with warnings.catch_warnings():
|
|
|
|
warnings.filterwarnings("ignore", category=RemovedInDjango20Warning)
|
|
|
|
response = self.client.get('/render_to_response/dirs/')
|
2013-09-16 05:51:24 +08:00
|
|
|
self.assertEqual(response.status_code, 200)
|
|
|
|
self.assertEqual(response.content, b'spam eggs\n')
|
|
|
|
self.assertEqual(response['Content-Type'], 'text/html; charset=utf-8')
|
|
|
|
|
2014-11-22 16:22:38 +08:00
|
|
|
def test_render_to_response_with_context_instance_misuse(self):
|
|
|
|
"""
|
|
|
|
For backwards-compatibility, ensure that it's possible to pass a
|
|
|
|
RequestContext instance in the dictionary argument instead of the
|
|
|
|
context_instance argument.
|
|
|
|
"""
|
|
|
|
response = self.client.get('/render_to_response/context_instance_misuse/')
|
|
|
|
self.assertContains(response, 'context processor output')
|
|
|
|
|
2010-12-22 01:18:41 +08:00
|
|
|
def test_render(self):
|
2014-11-23 00:52:12 +08:00
|
|
|
response = self.client.get('/render/')
|
2011-03-03 23:04:39 +08:00
|
|
|
self.assertEqual(response.status_code, 200)
|
2012-08-12 04:29:18 +08:00
|
|
|
self.assertEqual(response.content, b'FOO.BAR../path/to/static/media/\n')
|
2011-03-03 23:04:39 +08:00
|
|
|
self.assertEqual(response['Content-Type'], 'text/html; charset=utf-8')
|
|
|
|
self.assertEqual(response.context.current_app, None)
|
2010-12-22 01:18:41 +08:00
|
|
|
|
|
|
|
def test_render_with_base_context(self):
|
2014-11-23 00:52:12 +08:00
|
|
|
response = self.client.get('/render/base_context/')
|
2011-03-03 23:04:39 +08:00
|
|
|
self.assertEqual(response.status_code, 200)
|
2012-08-12 04:29:18 +08:00
|
|
|
self.assertEqual(response.content, b'FOO.BAR..\n')
|
2011-03-03 23:04:39 +08:00
|
|
|
self.assertEqual(response['Content-Type'], 'text/html; charset=utf-8')
|
2010-12-22 01:18:41 +08:00
|
|
|
|
2010-12-22 12:54:10 +08:00
|
|
|
def test_render_with_content_type(self):
|
2014-11-23 00:52:12 +08:00
|
|
|
response = self.client.get('/render/content_type/')
|
2011-03-03 23:04:39 +08:00
|
|
|
self.assertEqual(response.status_code, 200)
|
2012-08-12 04:29:18 +08:00
|
|
|
self.assertEqual(response.content, b'FOO.BAR../path/to/static/media/\n')
|
2011-03-03 23:04:39 +08:00
|
|
|
self.assertEqual(response['Content-Type'], 'application/x-rendertest')
|
2010-12-22 01:18:41 +08:00
|
|
|
|
2010-12-22 12:54:10 +08:00
|
|
|
def test_render_with_status(self):
|
2014-11-23 00:52:12 +08:00
|
|
|
response = self.client.get('/render/status/')
|
2011-03-03 23:04:39 +08:00
|
|
|
self.assertEqual(response.status_code, 403)
|
2012-08-12 04:29:18 +08:00
|
|
|
self.assertEqual(response.content, b'FOO.BAR../path/to/static/media/\n')
|
2010-12-22 12:54:10 +08:00
|
|
|
|
2011-01-06 06:41:43 +08:00
|
|
|
def test_render_with_current_app(self):
|
2014-11-23 00:52:12 +08:00
|
|
|
response = self.client.get('/render/current_app/')
|
2011-03-03 23:04:39 +08:00
|
|
|
self.assertEqual(response.context.current_app, "foobar_app")
|
2011-01-06 06:41:43 +08:00
|
|
|
|
2013-09-16 05:51:24 +08:00
|
|
|
def test_render_with_dirs(self):
|
2014-11-14 03:25:08 +08:00
|
|
|
with warnings.catch_warnings():
|
|
|
|
warnings.filterwarnings("ignore", category=RemovedInDjango20Warning)
|
|
|
|
response = self.client.get('/render/dirs/')
|
2013-09-16 05:51:24 +08:00
|
|
|
self.assertEqual(response.status_code, 200)
|
|
|
|
self.assertEqual(response.content, b'spam eggs\n')
|
|
|
|
self.assertEqual(response['Content-Type'], 'text/html; charset=utf-8')
|
|
|
|
|
2011-01-06 06:41:43 +08:00
|
|
|
def test_render_with_current_app_conflict(self):
|
2014-11-23 00:52:12 +08:00
|
|
|
with self.assertRaises(ValueError):
|
|
|
|
self.client.get('/render/current_app_conflict/')
|