我希望客户管理员能够编辑其网站发送的各种状态电子邮件。电子邮件是非常简单的django模板,存储在数据库中。
我想验证它们没有任何语法错误,缺少变量等,但我无法想出一个简单的方法。
对于未知的块标签,很容易:
from django import template
def render(templ, **args):
"""Convenience function to render a template with `args` as the context.
The rendered template is normalized to 1 space between 'words'.
"""
try:
t = template.Template(templ)
out_text = t.render(template.Context(args))
normalized = ' '.join(out_text.split())
except template.TemplateSyntaxError as e:
normalized = str(e)
return normalized
def test_unknown_tag():
txt = render("""
a {% b %} c
""")
assert txt == "Invalid block tag: 'b'"
我不知道怎么会检测到一个空变量?我知道TEMPLATE_STRING_IF_INVALID
设置,但这是一个网站范围的设置。
def test_missing_value():
txt = render("""
a {{ b }} c
""")
assert txt == "?"
缺少结束标记/值也不会导致任何例外..
def test_missing_close_tag():
txt = render("""
a {% b c
""")
assert txt == "?"
def test_missing_close_value():
txt = render("""
a {{ b c
""")
assert txt == "?"
我是否必须从头开始编写解析器来进行基本的语法验证?
答案 0 :(得分:2)
我不知道如何检测到一个空变量?
class CheckContext(template.Context):
allowed_vars = ['foo', 'bar', 'baz']
def __getitem__(self, k):
if k in self.allowed_vars:
return 'something'
else:
raise SomeError('bad variable name %s' % k)
缺少结束标记/值不会导致任何例外..
您只需检查呈现的字符串中是否还有{%
,}}
等。