summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorRussell Keith-Magee <russell@keith-magee.com>2010-04-19 14:18:14 +0000
committerRussell Keith-Magee <russell@keith-magee.com>2010-04-19 14:18:14 +0000
commitfef0d25bdccbb8f01314cf3a94651d3cfe67a34e (patch)
tree20b1cb6c8bed74d1e6e3dfecde921061769c31b0 /tests
parentebfe9383bfbc53cb6c29e1170d99f64feb9ad010 (diff)
downloaddjango-fef0d25bdccbb8f01314cf3a94651d3cfe67a34e.tar.gz
Fixed #13373 -- Ensured that {% if %} statements will short circuit template logic and not evaluate clauses that don't require evaluation. Thanks to Jerry Stratton for the report.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@13001 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'tests')
-rw-r--r--tests/regressiontests/templates/tests.py31
1 files changed, 30 insertions, 1 deletions
diff --git a/tests/regressiontests/templates/tests.py b/tests/regressiontests/templates/tests.py
index 33d0650c7c..5902e8d5e7 100644
--- a/tests/regressiontests/templates/tests.py
+++ b/tests/regressiontests/templates/tests.py
@@ -7,6 +7,7 @@ if __name__ == '__main__':
settings.configure()
from datetime import datetime, timedelta
+import time
import os
import sys
import traceback
@@ -97,6 +98,17 @@ class OtherClass:
def method(self):
return "OtherClass.method"
+class TestObj(object):
+ def is_true(self):
+ return True
+
+ def is_false(self):
+ return False
+
+ def is_bad(self):
+ time.sleep(0.3)
+ return True
+
class SilentGetItemClass(object):
def __getitem__(self, key):
raise SomeException
@@ -342,6 +354,11 @@ class Templates(unittest.TestCase):
old_invalid = settings.TEMPLATE_STRING_IF_INVALID
expected_invalid_str = 'INVALID'
+ # Warm the URL reversing cache. This ensures we don't pay the cost
+ # warming the cache during one of the tests.
+ urlresolvers.reverse('regressiontests.templates.views.client_action',
+ kwargs={'id':0,'action':"update"})
+
for name, vals in tests:
if isinstance(vals[2], tuple):
normal_string_result = vals[2][0]
@@ -367,9 +384,14 @@ class Templates(unittest.TestCase):
start = datetime.now()
test_template = loader.get_template(name)
end = datetime.now()
- output = self.render(test_template, vals)
if end-start > timedelta(seconds=0.2):
failures.append("Template test (Cached='%s', TEMPLATE_STRING_IF_INVALID='%s'): %s -- FAILED. Took too long to parse test" % (is_cached, invalid_str, name))
+
+ start = datetime.now()
+ output = self.render(test_template, vals)
+ end = datetime.now()
+ if end-start > timedelta(seconds=0.2):
+ failures.append("Template test (Cached='%s', TEMPLATE_STRING_IF_INVALID='%s'): %s -- FAILED. Took too long to render test" % (is_cached, invalid_str, name))
except ContextStackException:
failures.append("Template test (Cached='%s', TEMPLATE_STRING_IF_INVALID='%s'): %s -- FAILED. Context stack was left imbalanced" % (is_cached, invalid_str, name))
continue
@@ -782,6 +804,13 @@ class Templates(unittest.TestCase):
'if-tag-error11': ("{% if 1 == %}yes{% endif %}", {}, template.TemplateSyntaxError),
'if-tag-error12': ("{% if a not b %}yes{% endif %}", {}, template.TemplateSyntaxError),
+ # If evaluations are shortcircuited where possible
+ # These tests will fail by taking too long to run. When the if clause
+ # is shortcircuiting correctly, the is_bad() function shouldn't be
+ # evaluated, and the deliberate sleep won't happen.
+ 'if-tag-shortcircuit01': ('{% if x.is_true or x.is_bad %}yes{% else %}no{% endif %}', {'x': TestObj()}, "yes"),
+ 'if-tag-shortcircuit02': ('{% if x.is_false and x.is_bad %}yes{% else %}no{% endif %}', {'x': TestObj()}, "no"),
+
# Non-existent args
'if-tag-badarg01':("{% if x|default_if_none:y %}yes{% endif %}", {}, ''),
'if-tag-badarg02':("{% if x|default_if_none:y %}yes{% endif %}", {'y': 0}, ''),