2008-05-29 21:11:23 +08:00
|
|
|
"""
|
|
|
|
Test cases for the template loaders
|
2008-06-26 12:22:12 +08:00
|
|
|
|
|
|
|
Note: This test requires setuptools!
|
2008-05-29 21:11:23 +08:00
|
|
|
"""
|
|
|
|
|
|
|
|
from django.conf import settings
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
settings.configure()
|
|
|
|
|
|
|
|
import imp
|
2008-07-29 14:05:15 +08:00
|
|
|
import os.path
|
2013-07-01 20:22:27 +08:00
|
|
|
import sys
|
|
|
|
import unittest
|
2008-05-29 21:11:23 +08:00
|
|
|
|
2013-07-26 06:17:40 +08:00
|
|
|
try:
|
|
|
|
import pkg_resources
|
|
|
|
except ImportError:
|
|
|
|
pkg_resources = None
|
|
|
|
|
|
|
|
|
2010-05-21 16:54:15 +08:00
|
|
|
from django.template import TemplateDoesNotExist, Context
|
2010-09-13 05:53:35 +08:00
|
|
|
from django.template.loaders.eggs import Loader as EggLoader
|
2010-05-21 16:54:15 +08:00
|
|
|
from django.template import loader
|
2013-12-23 17:37:34 +08:00
|
|
|
from django.test import TestCase, override_settings
|
2013-07-01 20:22:27 +08:00
|
|
|
from django.utils import six
|
2012-12-08 18:13:52 +08:00
|
|
|
from django.utils._os import upath
|
2012-08-07 21:41:54 +08:00
|
|
|
from django.utils.six import StringIO
|
2010-10-11 20:55:17 +08:00
|
|
|
|
2008-05-29 21:11:23 +08:00
|
|
|
|
2008-06-26 12:22:12 +08:00
|
|
|
# Mock classes and objects for pkg_resources functions.
|
|
|
|
class MockLoader(object):
|
|
|
|
pass
|
2008-05-29 21:11:23 +08:00
|
|
|
|
2013-11-03 05:34:05 +08:00
|
|
|
|
2008-05-29 21:11:23 +08:00
|
|
|
def create_egg(name, resources):
|
|
|
|
"""
|
2008-06-26 12:22:12 +08:00
|
|
|
Creates a mock egg with a list of resources.
|
|
|
|
|
|
|
|
name: The name of the module.
|
2009-05-18 00:45:28 +08:00
|
|
|
resources: A dictionary of resources. Keys are the names and values the data.
|
2008-05-29 21:11:23 +08:00
|
|
|
"""
|
|
|
|
egg = imp.new_module(name)
|
|
|
|
egg.__loader__ = MockLoader()
|
|
|
|
egg._resources = resources
|
|
|
|
sys.modules[name] = egg
|
|
|
|
|
2010-09-13 05:53:35 +08:00
|
|
|
|
2013-07-26 06:17:40 +08:00
|
|
|
@unittest.skipUnless(pkg_resources, 'setuptools is not installed')
|
2013-10-14 21:14:17 +08:00
|
|
|
class EggLoaderTest(TestCase):
|
2008-05-29 21:11:23 +08:00
|
|
|
def setUp(self):
|
2013-07-26 06:17:40 +08:00
|
|
|
# Defined here b/c at module scope we may not have pkg_resources
|
|
|
|
class MockProvider(pkg_resources.NullProvider):
|
|
|
|
def __init__(self, module):
|
|
|
|
pkg_resources.NullProvider.__init__(self, module)
|
|
|
|
self.module = module
|
|
|
|
|
|
|
|
def _has(self, path):
|
|
|
|
return path in self.module._resources
|
|
|
|
|
|
|
|
def _isdir(self, path):
|
|
|
|
return False
|
|
|
|
|
|
|
|
def get_resource_stream(self, manager, resource_name):
|
|
|
|
return self.module._resources[resource_name]
|
|
|
|
|
|
|
|
def _get(self, path):
|
|
|
|
return self.module._resources[path].read()
|
|
|
|
|
2008-05-29 21:11:23 +08:00
|
|
|
pkg_resources._provider_factories[MockLoader] = MockProvider
|
2008-06-26 12:22:12 +08:00
|
|
|
|
2008-05-29 21:11:23 +08:00
|
|
|
self.empty_egg = create_egg("egg_empty", {})
|
|
|
|
self.egg_1 = create_egg("egg_1", {
|
2012-09-08 01:17:09 +08:00
|
|
|
os.path.normcase('templates/y.html'): StringIO("y"),
|
|
|
|
os.path.normcase('templates/x.txt'): StringIO("x"),
|
2008-05-29 21:11:23 +08:00
|
|
|
})
|
|
|
|
|
2013-12-23 17:37:34 +08:00
|
|
|
@override_settings(INSTALLED_APPS=['egg_empty'])
|
2008-05-29 21:11:23 +08:00
|
|
|
def test_empty(self):
|
|
|
|
"Loading any template on an empty egg should fail"
|
2013-12-23 17:37:34 +08:00
|
|
|
egg_loader = EggLoader()
|
|
|
|
self.assertRaises(TemplateDoesNotExist, egg_loader.load_template_source, "not-existing.html")
|
2008-05-29 21:11:23 +08:00
|
|
|
|
2013-12-23 17:37:34 +08:00
|
|
|
@override_settings(INSTALLED_APPS=['egg_1'])
|
2008-05-29 21:11:23 +08:00
|
|
|
def test_non_existing(self):
|
|
|
|
"Template loading fails if the template is not in the egg"
|
2013-12-23 17:37:34 +08:00
|
|
|
egg_loader = EggLoader()
|
|
|
|
self.assertRaises(TemplateDoesNotExist, egg_loader.load_template_source, "not-existing.html")
|
2008-06-26 12:22:12 +08:00
|
|
|
|
2013-12-23 17:37:34 +08:00
|
|
|
@override_settings(INSTALLED_APPS=['egg_1'])
|
2008-05-29 21:11:23 +08:00
|
|
|
def test_existing(self):
|
|
|
|
"A template can be loaded from an egg"
|
2013-12-23 17:37:34 +08:00
|
|
|
egg_loader = EggLoader()
|
|
|
|
contents, template_name = egg_loader.load_template_source("y.html")
|
|
|
|
self.assertEqual(contents, "y")
|
|
|
|
self.assertEqual(template_name, "egg:egg_1:templates/y.html")
|
2008-06-26 12:22:12 +08:00
|
|
|
|
2008-05-29 21:11:23 +08:00
|
|
|
def test_not_installed(self):
|
2013-12-19 22:57:23 +08:00
|
|
|
"Loading an existent template from an egg not included in any app should fail"
|
2010-09-13 05:53:35 +08:00
|
|
|
egg_loader = EggLoader()
|
|
|
|
self.assertRaises(TemplateDoesNotExist, egg_loader.load_template_source, "y.html")
|
2008-05-29 21:11:23 +08:00
|
|
|
|
2013-08-22 02:23:53 +08:00
|
|
|
|
2013-10-14 21:14:17 +08:00
|
|
|
@override_settings(
|
2013-11-03 05:34:05 +08:00
|
|
|
TEMPLATE_LOADERS=(
|
2013-10-14 21:14:17 +08:00
|
|
|
('django.template.loaders.cached.Loader', (
|
|
|
|
'django.template.loaders.filesystem.Loader',
|
|
|
|
)),
|
|
|
|
)
|
|
|
|
)
|
|
|
|
class CachedLoader(TestCase):
|
2010-05-21 16:54:15 +08:00
|
|
|
def test_templatedir_caching(self):
|
|
|
|
"Check that the template directories form part of the template cache key. Refs #13573"
|
|
|
|
# Retrive a template specifying a template directory to check
|
2012-12-08 18:13:52 +08:00
|
|
|
t1, name = loader.find_template('test.html', (os.path.join(os.path.dirname(upath(__file__)), 'templates', 'first'),))
|
2010-05-21 16:54:15 +08:00
|
|
|
# Now retrieve the same template name, but from a different directory
|
2012-12-08 18:13:52 +08:00
|
|
|
t2, name = loader.find_template('test.html', (os.path.join(os.path.dirname(upath(__file__)), 'templates', 'second'),))
|
2010-05-21 16:54:15 +08:00
|
|
|
|
|
|
|
# The two templates should not have the same content
|
|
|
|
self.assertNotEqual(t1.render(Context({})), t2.render(Context({})))
|
|
|
|
|
2013-08-22 02:23:53 +08:00
|
|
|
def test_missing_template_is_cached(self):
|
2013-08-25 08:26:34 +08:00
|
|
|
"#19949 -- Check that the missing template is cached."
|
2013-08-22 02:23:53 +08:00
|
|
|
template_loader = loader.find_template_loader(settings.TEMPLATE_LOADERS[0])
|
|
|
|
# Empty cache, which may be filled from previous tests.
|
|
|
|
template_loader.reset()
|
2013-08-25 08:26:34 +08:00
|
|
|
# Check that 'missing.html' isn't already in cache before 'missing.html' is loaded
|
2013-08-22 02:23:53 +08:00
|
|
|
self.assertRaises(KeyError, lambda: template_loader.template_cache["missing.html"])
|
2013-08-25 08:26:34 +08:00
|
|
|
# Try to load it, it should fail
|
2013-08-22 02:23:53 +08:00
|
|
|
self.assertRaises(TemplateDoesNotExist, template_loader.load_template, "missing.html")
|
2013-08-25 08:26:34 +08:00
|
|
|
# Verify that the fact that the missing template, which hasn't been found, has actually
|
|
|
|
# been cached:
|
|
|
|
self.assertEqual(template_loader.template_cache.get("missing.html"),
|
|
|
|
TemplateDoesNotExist,
|
|
|
|
"Cached template loader doesn't cache file lookup misses. It should.")
|
2013-08-22 02:23:53 +08:00
|
|
|
|
|
|
|
|
2013-10-14 21:14:17 +08:00
|
|
|
@override_settings(
|
2013-11-03 05:34:05 +08:00
|
|
|
TEMPLATE_DIRS=(
|
2013-10-14 21:14:17 +08:00
|
|
|
os.path.join(os.path.dirname(upath(__file__)), 'templates'),
|
|
|
|
)
|
|
|
|
)
|
|
|
|
class RenderToStringTest(TestCase):
|
2011-02-20 12:55:11 +08:00
|
|
|
def test_basic(self):
|
|
|
|
self.assertEqual(loader.render_to_string('test_context.html'), 'obj:')
|
|
|
|
|
|
|
|
def test_basic_context(self):
|
|
|
|
self.assertEqual(loader.render_to_string('test_context.html',
|
|
|
|
{'obj': 'test'}), 'obj:test')
|
|
|
|
|
|
|
|
def test_existing_context_kept_clean(self):
|
|
|
|
context = Context({'obj': 'before'})
|
|
|
|
output = loader.render_to_string('test_context.html', {'obj': 'after'},
|
|
|
|
context_instance=context)
|
|
|
|
self.assertEqual(output, 'obj:after')
|
|
|
|
self.assertEqual(context['obj'], 'before')
|
|
|
|
|
2011-09-21 22:20:18 +08:00
|
|
|
def test_empty_list(self):
|
2012-09-08 01:17:09 +08:00
|
|
|
six.assertRaisesRegex(self, TemplateDoesNotExist,
|
2013-11-03 05:34:05 +08:00
|
|
|
'No template names provided$',
|
|
|
|
loader.render_to_string, [])
|
2011-09-21 22:20:18 +08:00
|
|
|
|
|
|
|
def test_select_templates_from_empty_list(self):
|
2012-09-08 01:17:09 +08:00
|
|
|
six.assertRaisesRegex(self, TemplateDoesNotExist,
|
2013-11-03 05:34:05 +08:00
|
|
|
'No template names provided$',
|
|
|
|
loader.select_template, [])
|
2013-09-16 05:51:24 +08:00
|
|
|
|
|
|
|
|
|
|
|
class TemplateDirsOverrideTest(unittest.TestCase):
|
|
|
|
|
|
|
|
dirs_tuple = (os.path.join(os.path.dirname(upath(__file__)), 'other_templates'),)
|
|
|
|
dirs_list = list(dirs_tuple)
|
|
|
|
dirs_iter = (dirs_tuple, dirs_list)
|
|
|
|
|
|
|
|
def test_render_to_string(self):
|
|
|
|
for dirs in self.dirs_iter:
|
|
|
|
self.assertEqual(loader.render_to_string('test_dirs.html', dirs=dirs), 'spam eggs\n')
|
|
|
|
|
|
|
|
def test_get_template(self):
|
|
|
|
for dirs in self.dirs_iter:
|
|
|
|
template = loader.get_template('test_dirs.html', dirs=dirs)
|
|
|
|
self.assertEqual(template.render(Context({})), 'spam eggs\n')
|
|
|
|
|
|
|
|
def test_select_template(self):
|
|
|
|
for dirs in self.dirs_iter:
|
|
|
|
template = loader.select_template(['test_dirs.html'], dirs=dirs)
|
|
|
|
self.assertEqual(template.render(Context({})), 'spam eggs\n')
|
2013-11-20 00:49:16 +08:00
|
|
|
|
|
|
|
|
|
|
|
@override_settings(
|
|
|
|
TEMPLATE_LOADERS=(
|
|
|
|
('django.template.loaders.cached.Loader', (
|
|
|
|
'django.template.loaders.filesystem.Loader',
|
|
|
|
'django.template.loaders.app_directories.Loader',
|
|
|
|
)),
|
|
|
|
)
|
|
|
|
)
|
|
|
|
class PriorityCacheLoader(TestCase):
|
|
|
|
def test_basic(self):
|
|
|
|
"""
|
|
|
|
Check that the order of template loader works. Refs #21460.
|
|
|
|
"""
|
|
|
|
t1, name = loader.find_template('priority/foo.html')
|
|
|
|
self.assertEqual(t1.render(Context({})), 'priority\n')
|
|
|
|
|
|
|
|
|
|
|
|
@override_settings(
|
|
|
|
TEMPLATE_LOADERS=('django.template.loaders.filesystem.Loader',
|
|
|
|
'django.template.loaders.app_directories.Loader',),
|
|
|
|
)
|
|
|
|
class PriorityLoader(TestCase):
|
|
|
|
def test_basic(self):
|
|
|
|
"""
|
|
|
|
Check that the order of template loader works. Refs #21460.
|
|
|
|
"""
|
|
|
|
t1, name = loader.find_template('priority/foo.html')
|
|
|
|
self.assertEqual(t1.render(Context({})), 'priority\n')
|