2008-08-04 03:55:26 +08:00
|
|
|
"""
|
|
|
|
Tests for Django's bundled context processors.
|
|
|
|
"""
|
2015-04-18 05:38:20 +08:00
|
|
|
from django.test import SimpleTestCase, TestCase, override_settings
|
2011-04-02 16:44:47 +08:00
|
|
|
|
2008-08-04 03:55:26 +08:00
|
|
|
|
2014-12-14 17:17:18 +08:00
|
|
|
@override_settings(
|
|
|
|
ROOT_URLCONF="context_processors.urls",
|
2014-12-18 06:36:32 +08:00
|
|
|
TEMPLATES=[
|
|
|
|
{
|
|
|
|
"BACKEND": "django.template.backends.django.DjangoTemplates",
|
|
|
|
"APP_DIRS": True,
|
|
|
|
"OPTIONS": {
|
|
|
|
"context_processors": [
|
|
|
|
"django.template.context_processors.request",
|
|
|
|
],
|
|
|
|
},
|
|
|
|
}
|
|
|
|
],
|
2014-12-14 17:17:18 +08:00
|
|
|
)
|
2015-04-18 05:38:20 +08:00
|
|
|
class RequestContextProcessorTests(SimpleTestCase):
|
2008-08-04 03:55:26 +08:00
|
|
|
"""
|
2014-12-03 06:23:51 +08:00
|
|
|
Tests for the ``django.template.context_processors.request`` processor.
|
2008-08-04 03:55:26 +08:00
|
|
|
"""
|
|
|
|
|
|
|
|
def test_request_attributes(self):
|
|
|
|
"""
|
2016-10-27 15:53:39 +08:00
|
|
|
The request object is available in the template and that its
|
2008-08-04 03:55:26 +08:00
|
|
|
attributes can't be overridden by GET and POST parameters (#3828).
|
|
|
|
"""
|
|
|
|
url = "/request_attrs/"
|
|
|
|
# We should have the request object in the template.
|
|
|
|
response = self.client.get(url)
|
|
|
|
self.assertContains(response, "Have request")
|
|
|
|
# Test is_secure.
|
|
|
|
response = self.client.get(url)
|
|
|
|
self.assertContains(response, "Not secure")
|
|
|
|
response = self.client.get(url, {"is_secure": "blah"})
|
|
|
|
self.assertContains(response, "Not secure")
|
|
|
|
response = self.client.post(url, {"is_secure": "blah"})
|
|
|
|
self.assertContains(response, "Not secure")
|
|
|
|
# Test path.
|
|
|
|
response = self.client.get(url)
|
|
|
|
self.assertContains(response, url)
|
|
|
|
response = self.client.get(url, {"path": "/blah/"})
|
|
|
|
self.assertContains(response, url)
|
|
|
|
response = self.client.post(url, {"path": "/blah/"})
|
|
|
|
self.assertContains(response, url)
|
2014-08-27 16:41:12 +08:00
|
|
|
|
|
|
|
|
2014-12-14 17:17:18 +08:00
|
|
|
@override_settings(
|
|
|
|
DEBUG=True,
|
2015-01-22 00:55:57 +08:00
|
|
|
INTERNAL_IPS=["127.0.0.1"],
|
2014-12-14 17:17:18 +08:00
|
|
|
ROOT_URLCONF="context_processors.urls",
|
2014-12-18 06:36:32 +08:00
|
|
|
TEMPLATES=[
|
|
|
|
{
|
|
|
|
"BACKEND": "django.template.backends.django.DjangoTemplates",
|
|
|
|
"APP_DIRS": True,
|
|
|
|
"OPTIONS": {
|
|
|
|
"context_processors": [
|
|
|
|
"django.template.context_processors.debug",
|
|
|
|
],
|
|
|
|
},
|
|
|
|
}
|
|
|
|
],
|
2014-12-14 17:17:18 +08:00
|
|
|
)
|
2014-08-27 16:41:12 +08:00
|
|
|
class DebugContextProcessorTests(TestCase):
|
|
|
|
"""
|
2014-12-03 06:23:51 +08:00
|
|
|
Tests for the ``django.template.context_processors.debug`` processor.
|
2014-08-27 16:41:12 +08:00
|
|
|
"""
|
2022-02-04 03:24:19 +08:00
|
|
|
|
2018-07-12 12:12:20 +08:00
|
|
|
databases = {"default", "other"}
|
2014-08-27 16:41:12 +08:00
|
|
|
|
|
|
|
def test_debug(self):
|
|
|
|
url = "/debug/"
|
|
|
|
# We should have the debug flag in the template.
|
|
|
|
response = self.client.get(url)
|
|
|
|
self.assertContains(response, "Have debug")
|
|
|
|
|
|
|
|
# And now we should not
|
|
|
|
with override_settings(DEBUG=False):
|
|
|
|
response = self.client.get(url)
|
|
|
|
self.assertNotContains(response, "Have debug")
|
|
|
|
|
|
|
|
def test_sql_queries(self):
|
|
|
|
"""
|
|
|
|
Test whether sql_queries represents the actual amount
|
|
|
|
of queries executed. (#23364)
|
|
|
|
"""
|
|
|
|
url = "/debug/"
|
|
|
|
response = self.client.get(url)
|
|
|
|
self.assertContains(response, "First query list: 0")
|
|
|
|
self.assertContains(response, "Second query list: 1")
|
|
|
|
# Check we have not actually memoized connection.queries
|
|
|
|
self.assertContains(response, "Third query list: 2")
|
2016-04-09 20:09:08 +08:00
|
|
|
# Check queries for DB connection 'other'
|
|
|
|
self.assertContains(response, "Fourth query list: 3")
|