mirror of
https://github.com/django/django.git
synced 2025-11-25 21:22:14 +00:00
Fixed #26603 -- Forced lazy template names to text when computing cache key.
Refs #26536. Thanks Sylvain Fankhauser for the very detailed report.
This commit is contained in:
parent
bf3057d10b
commit
207c5b4acd
3 changed files with 13 additions and 2 deletions
|
|
@ -13,6 +13,7 @@ from django.template.engine import Engine
|
|||
from django.test import SimpleTestCase, ignore_warnings, override_settings
|
||||
from django.utils import six
|
||||
from django.utils.deprecation import RemovedInDjango20Warning
|
||||
from django.utils.functional import lazystr
|
||||
|
||||
from .utils import TEMPLATE_DIR
|
||||
|
||||
|
|
@ -153,6 +154,13 @@ class CachedLoaderTests(SimpleTestCase):
|
|||
"""
|
||||
self.assertEqual(self.engine.template_loaders[0].cache_key('-template.html', []), '-template.html')
|
||||
|
||||
def test_template_name_lazy_string(self):
|
||||
"""
|
||||
#26603 -- A template name specified as a lazy string should be forced
|
||||
to text before computing its cache key.
|
||||
"""
|
||||
self.assertEqual(self.engine.template_loaders[0].cache_key(lazystr('template.html'), []), 'template.html')
|
||||
|
||||
|
||||
@unittest.skipUnless(pkg_resources, 'setuptools is not installed')
|
||||
class EggLoaderTests(SimpleTestCase):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue