2013-07-01 20:22:27 +08:00
|
|
|
from unittest import TestCase
|
|
|
|
|
2015-04-12 07:41:45 +08:00
|
|
|
from django.template import Context, Engine
|
2011-04-20 06:06:19 +08:00
|
|
|
|
2013-11-03 05:34:05 +08:00
|
|
|
|
2011-04-20 06:06:19 +08:00
|
|
|
class CallableVariablesTests(TestCase):
|
|
|
|
|
2015-04-12 07:41:45 +08:00
|
|
|
@classmethod
|
|
|
|
def setUpClass(cls):
|
|
|
|
cls.engine = Engine()
|
|
|
|
super(CallableVariablesTests, cls).setUpClass()
|
|
|
|
|
2011-04-20 06:06:19 +08:00
|
|
|
def test_callable(self):
|
|
|
|
|
|
|
|
class Doodad(object):
|
|
|
|
def __init__(self, value):
|
|
|
|
self.num_calls = 0
|
|
|
|
self.value = value
|
2013-10-22 18:21:07 +08:00
|
|
|
|
2011-04-20 06:06:19 +08:00
|
|
|
def __call__(self):
|
|
|
|
self.num_calls += 1
|
|
|
|
return {"the_value": self.value}
|
|
|
|
|
|
|
|
my_doodad = Doodad(42)
|
2015-04-12 07:41:45 +08:00
|
|
|
c = Context({"my_doodad": my_doodad})
|
2011-04-20 06:06:19 +08:00
|
|
|
|
|
|
|
# We can't access ``my_doodad.value`` in the template, because
|
|
|
|
# ``my_doodad.__call__`` will be invoked first, yielding a dictionary
|
|
|
|
# without a key ``value``.
|
2015-04-12 07:41:45 +08:00
|
|
|
t = self.engine.from_string('{{ my_doodad.value }}')
|
2012-06-08 00:08:47 +08:00
|
|
|
self.assertEqual(t.render(c), '')
|
2011-04-20 06:06:19 +08:00
|
|
|
|
|
|
|
# We can confirm that the doodad has been called
|
|
|
|
self.assertEqual(my_doodad.num_calls, 1)
|
|
|
|
|
|
|
|
# But we can access keys on the dict that's returned
|
|
|
|
# by ``__call__``, instead.
|
2015-04-12 07:41:45 +08:00
|
|
|
t = self.engine.from_string('{{ my_doodad.the_value }}')
|
2012-06-08 00:08:47 +08:00
|
|
|
self.assertEqual(t.render(c), '42')
|
2011-04-20 06:06:19 +08:00
|
|
|
self.assertEqual(my_doodad.num_calls, 2)
|
|
|
|
|
|
|
|
def test_alters_data(self):
|
|
|
|
|
|
|
|
class Doodad(object):
|
|
|
|
alters_data = True
|
2013-10-22 18:21:07 +08:00
|
|
|
|
2011-04-20 06:06:19 +08:00
|
|
|
def __init__(self, value):
|
|
|
|
self.num_calls = 0
|
|
|
|
self.value = value
|
2013-10-22 18:21:07 +08:00
|
|
|
|
2011-04-20 06:06:19 +08:00
|
|
|
def __call__(self):
|
|
|
|
self.num_calls += 1
|
|
|
|
return {"the_value": self.value}
|
|
|
|
|
|
|
|
my_doodad = Doodad(42)
|
2015-04-12 07:41:45 +08:00
|
|
|
c = Context({"my_doodad": my_doodad})
|
2011-04-20 06:06:19 +08:00
|
|
|
|
|
|
|
# Since ``my_doodad.alters_data`` is True, the template system will not
|
2014-12-15 06:13:03 +08:00
|
|
|
# try to call our doodad but will use string_if_invalid
|
2015-04-12 07:41:45 +08:00
|
|
|
t = self.engine.from_string('{{ my_doodad.value }}')
|
2012-06-08 00:08:47 +08:00
|
|
|
self.assertEqual(t.render(c), '')
|
2015-04-12 07:41:45 +08:00
|
|
|
t = self.engine.from_string('{{ my_doodad.the_value }}')
|
2012-06-08 00:08:47 +08:00
|
|
|
self.assertEqual(t.render(c), '')
|
2011-04-20 06:06:19 +08:00
|
|
|
|
|
|
|
# Double-check that the object was really never called during the
|
|
|
|
# template rendering.
|
|
|
|
self.assertEqual(my_doodad.num_calls, 0)
|
|
|
|
|
|
|
|
def test_do_not_call(self):
|
|
|
|
|
|
|
|
class Doodad(object):
|
|
|
|
do_not_call_in_templates = True
|
2013-10-22 18:21:07 +08:00
|
|
|
|
2011-04-20 06:06:19 +08:00
|
|
|
def __init__(self, value):
|
|
|
|
self.num_calls = 0
|
|
|
|
self.value = value
|
2013-10-22 18:21:07 +08:00
|
|
|
|
2011-04-20 06:06:19 +08:00
|
|
|
def __call__(self):
|
|
|
|
self.num_calls += 1
|
|
|
|
return {"the_value": self.value}
|
|
|
|
|
|
|
|
my_doodad = Doodad(42)
|
2015-04-12 07:41:45 +08:00
|
|
|
c = Context({"my_doodad": my_doodad})
|
2011-04-20 06:06:19 +08:00
|
|
|
|
|
|
|
# Since ``my_doodad.do_not_call_in_templates`` is True, the template
|
|
|
|
# system will not try to call our doodad. We can access its attributes
|
|
|
|
# as normal, and we don't have access to the dict that it returns when
|
|
|
|
# called.
|
2015-04-12 07:41:45 +08:00
|
|
|
t = self.engine.from_string('{{ my_doodad.value }}')
|
2012-06-08 00:08:47 +08:00
|
|
|
self.assertEqual(t.render(c), '42')
|
2015-04-12 07:41:45 +08:00
|
|
|
t = self.engine.from_string('{{ my_doodad.the_value }}')
|
2012-06-08 00:08:47 +08:00
|
|
|
self.assertEqual(t.render(c), '')
|
2011-04-20 06:06:19 +08:00
|
|
|
|
|
|
|
# Double-check that the object was really never called during the
|
|
|
|
# template rendering.
|
|
|
|
self.assertEqual(my_doodad.num_calls, 0)
|
|
|
|
|
|
|
|
def test_do_not_call_and_alters_data(self):
|
|
|
|
# If we combine ``alters_data`` and ``do_not_call_in_templates``, the
|
|
|
|
# ``alters_data`` attribute will not make any difference in the
|
|
|
|
# template system's behavior.
|
|
|
|
|
|
|
|
class Doodad(object):
|
|
|
|
do_not_call_in_templates = True
|
|
|
|
alters_data = True
|
2013-10-22 18:21:07 +08:00
|
|
|
|
2011-04-20 06:06:19 +08:00
|
|
|
def __init__(self, value):
|
|
|
|
self.num_calls = 0
|
|
|
|
self.value = value
|
2013-10-22 18:21:07 +08:00
|
|
|
|
2011-04-20 06:06:19 +08:00
|
|
|
def __call__(self):
|
|
|
|
self.num_calls += 1
|
|
|
|
return {"the_value": self.value}
|
|
|
|
|
|
|
|
my_doodad = Doodad(42)
|
2015-04-12 07:41:45 +08:00
|
|
|
c = Context({"my_doodad": my_doodad})
|
2011-04-20 06:06:19 +08:00
|
|
|
|
2015-04-12 07:41:45 +08:00
|
|
|
t = self.engine.from_string('{{ my_doodad.value }}')
|
2012-06-08 00:08:47 +08:00
|
|
|
self.assertEqual(t.render(c), '42')
|
2015-04-12 07:41:45 +08:00
|
|
|
t = self.engine.from_string('{{ my_doodad.the_value }}')
|
2012-06-08 00:08:47 +08:00
|
|
|
self.assertEqual(t.render(c), '')
|
2011-04-20 06:06:19 +08:00
|
|
|
|
|
|
|
# Double-check that the object was really never called during the
|
|
|
|
# template rendering.
|
|
|
|
self.assertEqual(my_doodad.num_calls, 0)
|