123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739 |
- import re
- from io import BytesIO
- import pytest
- from jinja2 import DictLoader
- from jinja2 import Environment
- from jinja2 import nodes
- from jinja2 import pass_context
- from jinja2 import TemplateSyntaxError
- from jinja2.exceptions import TemplateAssertionError
- from jinja2.ext import Extension
- from jinja2.lexer import count_newlines
- from jinja2.lexer import Token
- importable_object = 23
- _gettext_re = re.compile(r"_\((.*?)\)", re.DOTALL)
- i18n_templates = {
- "default.html": '<title>{{ page_title|default(_("missing")) }}</title>'
- "{% block body %}{% endblock %}",
- "child.html": '{% extends "default.html" %}{% block body %}'
- "{% trans %}watch out{% endtrans %}{% endblock %}",
- "plural.html": "{% trans user_count %}One user online{% pluralize %}"
- "{{ user_count }} users online{% endtrans %}",
- "plural2.html": "{% trans user_count=get_user_count() %}{{ user_count }}s"
- "{% pluralize %}{{ user_count }}p{% endtrans %}",
- "stringformat.html": '{{ _("User: %(num)s")|format(num=user_count) }}',
- }
- newstyle_i18n_templates = {
- "default.html": '<title>{{ page_title|default(_("missing")) }}</title>'
- "{% block body %}{% endblock %}",
- "child.html": '{% extends "default.html" %}{% block body %}'
- "{% trans %}watch out{% endtrans %}{% endblock %}",
- "plural.html": "{% trans user_count %}One user online{% pluralize %}"
- "{{ user_count }} users online{% endtrans %}",
- "stringformat.html": '{{ _("User: %(num)s", num=user_count) }}',
- "ngettext.html": '{{ ngettext("%(num)s apple", "%(num)s apples", apples) }}',
- "ngettext_long.html": "{% trans num=apples %}{{ num }} apple{% pluralize %}"
- "{{ num }} apples{% endtrans %}",
- "pgettext.html": '{{ pgettext("fruit", "Apple") }}',
- "npgettext.html": '{{ npgettext("fruit", "%(num)s apple", "%(num)s apples",'
- " apples) }}",
- "pgettext_block": "{% trans 'fruit' num=apples %}Apple{% endtrans %}",
- "npgettext_block": "{% trans 'fruit' num=apples %}{{ num }} apple"
- "{% pluralize %}{{ num }} apples{% endtrans %}",
- "transvars1.html": "{% trans %}User: {{ num }}{% endtrans %}",
- "transvars2.html": "{% trans num=count %}User: {{ num }}{% endtrans %}",
- "transvars3.html": "{% trans count=num %}User: {{ count }}{% endtrans %}",
- "novars.html": "{% trans %}%(hello)s{% endtrans %}",
- "vars.html": "{% trans %}{{ foo }}%(foo)s{% endtrans %}",
- "explicitvars.html": '{% trans foo="42" %}%(foo)s{% endtrans %}',
- }
- languages = {
- "de": {
- "missing": "fehlend",
- "watch out": "pass auf",
- "One user online": "Ein Benutzer online",
- "%(user_count)s users online": "%(user_count)s Benutzer online",
- "User: %(num)s": "Benutzer: %(num)s",
- "User: %(count)s": "Benutzer: %(count)s",
- "Apple": {None: "Apfel", "fruit": "Apple"},
- "%(num)s apple": {None: "%(num)s Apfel", "fruit": "%(num)s Apple"},
- "%(num)s apples": {None: "%(num)s Äpfel", "fruit": "%(num)s Apples"},
- }
- }
- def _get_with_context(value, ctx=None):
- if isinstance(value, dict):
- return value.get(ctx, value)
- return value
- @pass_context
- def gettext(context, string):
- language = context.get("LANGUAGE", "en")
- value = languages.get(language, {}).get(string, string)
- return _get_with_context(value)
- @pass_context
- def ngettext(context, s, p, n):
- language = context.get("LANGUAGE", "en")
- if n != 1:
- value = languages.get(language, {}).get(p, p)
- return _get_with_context(value)
- value = languages.get(language, {}).get(s, s)
- return _get_with_context(value)
- @pass_context
- def pgettext(context, c, s):
- language = context.get("LANGUAGE", "en")
- value = languages.get(language, {}).get(s, s)
- return _get_with_context(value, c)
- @pass_context
- def npgettext(context, c, s, p, n):
- language = context.get("LANGUAGE", "en")
- if n != 1:
- value = languages.get(language, {}).get(p, p)
- return _get_with_context(value, c)
- value = languages.get(language, {}).get(s, s)
- return _get_with_context(value, c)
- i18n_env = Environment(
- loader=DictLoader(i18n_templates), extensions=["jinja2.ext.i18n"]
- )
- i18n_env.globals.update(
- {
- "_": gettext,
- "gettext": gettext,
- "ngettext": ngettext,
- "pgettext": pgettext,
- "npgettext": npgettext,
- }
- )
- i18n_env_trimmed = Environment(extensions=["jinja2.ext.i18n"])
- i18n_env_trimmed.policies["ext.i18n.trimmed"] = True
- i18n_env_trimmed.globals.update(
- {
- "_": gettext,
- "gettext": gettext,
- "ngettext": ngettext,
- "pgettext": pgettext,
- "npgettext": npgettext,
- }
- )
- newstyle_i18n_env = Environment(
- loader=DictLoader(newstyle_i18n_templates), extensions=["jinja2.ext.i18n"]
- )
- newstyle_i18n_env.install_gettext_callables( # type: ignore
- gettext, ngettext, newstyle=True, pgettext=pgettext, npgettext=npgettext
- )
- class ExampleExtension(Extension):
- tags = {"test"}
- ext_attr = 42
- context_reference_node_cls = nodes.ContextReference
- def parse(self, parser):
- return nodes.Output(
- [
- self.call_method(
- "_dump",
- [
- nodes.EnvironmentAttribute("sandboxed"),
- self.attr("ext_attr"),
- nodes.ImportedName(__name__ + ".importable_object"),
- self.context_reference_node_cls(),
- ],
- )
- ]
- ).set_lineno(next(parser.stream).lineno)
- def _dump(self, sandboxed, ext_attr, imported_object, context):
- return (
- f"{sandboxed}|{ext_attr}|{imported_object}|{context.blocks}"
- f"|{context.get('test_var')}"
- )
- class DerivedExampleExtension(ExampleExtension):
- context_reference_node_cls = nodes.DerivedContextReference # type: ignore
- class PreprocessorExtension(Extension):
- def preprocess(self, source, name, filename=None):
- return source.replace("[[TEST]]", "({{ foo }})")
- class StreamFilterExtension(Extension):
- def filter_stream(self, stream):
- for token in stream:
- if token.type == "data":
- yield from self.interpolate(token)
- else:
- yield token
- def interpolate(self, token):
- pos = 0
- end = len(token.value)
- lineno = token.lineno
- while True:
- match = _gettext_re.search(token.value, pos)
- if match is None:
- break
- value = token.value[pos : match.start()]
- if value:
- yield Token(lineno, "data", value)
- lineno += count_newlines(token.value)
- yield Token(lineno, "variable_begin", None)
- yield Token(lineno, "name", "gettext")
- yield Token(lineno, "lparen", None)
- yield Token(lineno, "string", match.group(1))
- yield Token(lineno, "rparen", None)
- yield Token(lineno, "variable_end", None)
- pos = match.end()
- if pos < end:
- yield Token(lineno, "data", token.value[pos:])
- class TestExtensions:
- def test_extend_late(self):
- env = Environment()
- t = env.from_string('{% autoescape true %}{{ "<test>" }}{% endautoescape %}')
- assert t.render() == "<test>"
- def test_loop_controls(self):
- env = Environment(extensions=["jinja2.ext.loopcontrols"])
- tmpl = env.from_string(
- """
- {%- for item in [1, 2, 3, 4] %}
- {%- if item % 2 == 0 %}{% continue %}{% endif -%}
- {{ item }}
- {%- endfor %}"""
- )
- assert tmpl.render() == "13"
- tmpl = env.from_string(
- """
- {%- for item in [1, 2, 3, 4] %}
- {%- if item > 2 %}{% break %}{% endif -%}
- {{ item }}
- {%- endfor %}"""
- )
- assert tmpl.render() == "12"
- def test_do(self):
- env = Environment(extensions=["jinja2.ext.do"])
- tmpl = env.from_string(
- """
- {%- set items = [] %}
- {%- for char in "foo" %}
- {%- do items.append(loop.index0 ~ char) %}
- {%- endfor %}{{ items|join(', ') }}"""
- )
- assert tmpl.render() == "0f, 1o, 2o"
- def test_extension_nodes(self):
- env = Environment(extensions=[ExampleExtension])
- tmpl = env.from_string("{% test %}")
- assert tmpl.render() == "False|42|23|{}|None"
- def test_contextreference_node_passes_context(self):
- env = Environment(extensions=[ExampleExtension])
- tmpl = env.from_string('{% set test_var="test_content" %}{% test %}')
- assert tmpl.render() == "False|42|23|{}|test_content"
- def test_contextreference_node_can_pass_locals(self):
- env = Environment(extensions=[DerivedExampleExtension])
- tmpl = env.from_string(
- '{% for test_var in ["test_content"] %}{% test %}{% endfor %}'
- )
- assert tmpl.render() == "False|42|23|{}|test_content"
- def test_identifier(self):
- assert ExampleExtension.identifier == __name__ + ".ExampleExtension"
- def test_rebinding(self):
- original = Environment(extensions=[ExampleExtension])
- overlay = original.overlay()
- for env in original, overlay:
- for ext in env.extensions.values():
- assert ext.environment is env
- def test_preprocessor_extension(self):
- env = Environment(extensions=[PreprocessorExtension])
- tmpl = env.from_string("{[[TEST]]}")
- assert tmpl.render(foo=42) == "{(42)}"
- def test_streamfilter_extension(self):
- env = Environment(extensions=[StreamFilterExtension])
- env.globals["gettext"] = lambda x: x.upper()
- tmpl = env.from_string("Foo _(bar) Baz")
- out = tmpl.render()
- assert out == "Foo BAR Baz"
- def test_extension_ordering(self):
- class T1(Extension):
- priority = 1
- class T2(Extension):
- priority = 2
- env = Environment(extensions=[T1, T2])
- ext = list(env.iter_extensions())
- assert ext[0].__class__ is T1
- assert ext[1].__class__ is T2
- def test_debug(self):
- env = Environment(extensions=["jinja2.ext.debug"])
- t = env.from_string("Hello\n{% debug %}\nGoodbye")
- out = t.render()
- for value in ("context", "cycler", "filters", "abs", "tests", "!="):
- assert f"'{value}'" in out
- class TestInternationalization:
- def test_trans(self):
- tmpl = i18n_env.get_template("child.html")
- assert tmpl.render(LANGUAGE="de") == "<title>fehlend</title>pass auf"
- def test_trans_plural(self):
- tmpl = i18n_env.get_template("plural.html")
- assert tmpl.render(LANGUAGE="de", user_count=1) == "Ein Benutzer online"
- assert tmpl.render(LANGUAGE="de", user_count=2) == "2 Benutzer online"
- def test_trans_plural_with_functions(self):
- tmpl = i18n_env.get_template("plural2.html")
- def get_user_count():
- get_user_count.called += 1
- return 1
- get_user_count.called = 0
- assert tmpl.render(LANGUAGE="de", get_user_count=get_user_count) == "1s"
- assert get_user_count.called == 1
- def test_complex_plural(self):
- tmpl = i18n_env.from_string(
- "{% trans foo=42, count=2 %}{{ count }} item{% "
- "pluralize count %}{{ count }} items{% endtrans %}"
- )
- assert tmpl.render() == "2 items"
- pytest.raises(
- TemplateAssertionError,
- i18n_env.from_string,
- "{% trans foo %}...{% pluralize bar %}...{% endtrans %}",
- )
- def test_trans_stringformatting(self):
- tmpl = i18n_env.get_template("stringformat.html")
- assert tmpl.render(LANGUAGE="de", user_count=5) == "Benutzer: 5"
- def test_trimmed(self):
- tmpl = i18n_env.from_string(
- "{%- trans trimmed %} hello\n world {% endtrans -%}"
- )
- assert tmpl.render() == "hello world"
- def test_trimmed_policy(self):
- s = "{%- trans %} hello\n world {% endtrans -%}"
- tmpl = i18n_env.from_string(s)
- trimmed_tmpl = i18n_env_trimmed.from_string(s)
- assert tmpl.render() == " hello\n world "
- assert trimmed_tmpl.render() == "hello world"
- def test_trimmed_policy_override(self):
- tmpl = i18n_env_trimmed.from_string(
- "{%- trans notrimmed %} hello\n world {% endtrans -%}"
- )
- assert tmpl.render() == " hello\n world "
- def test_trimmed_vars(self):
- tmpl = i18n_env.from_string(
- '{%- trans trimmed x="world" %} hello\n {{ x }} {% endtrans -%}'
- )
- assert tmpl.render() == "hello world"
- def test_trimmed_varname_trimmed(self):
- # unlikely variable name, but when used as a variable
- # it should not enable trimming
- tmpl = i18n_env.from_string(
- "{%- trans trimmed = 'world' %} hello\n {{ trimmed }} {% endtrans -%}"
- )
- assert tmpl.render() == " hello\n world "
- def test_extract(self):
- from jinja2.ext import babel_extract
- source = BytesIO(
- b"""
- {{ gettext('Hello World') }}
- {% trans %}Hello World{% endtrans %}
- {% trans %}{{ users }} user{% pluralize %}{{ users }} users{% endtrans %}
- """
- )
- assert list(babel_extract(source, ("gettext", "ngettext", "_"), [], {})) == [
- (2, "gettext", "Hello World", []),
- (3, "gettext", "Hello World", []),
- (4, "ngettext", ("%(users)s user", "%(users)s users", None), []),
- ]
- def test_extract_trimmed(self):
- from jinja2.ext import babel_extract
- source = BytesIO(
- b"""
- {{ gettext(' Hello \n World') }}
- {% trans trimmed %} Hello \n World{% endtrans %}
- {% trans trimmed %}{{ users }} \n user
- {%- pluralize %}{{ users }} \n users{% endtrans %}
- """
- )
- assert list(babel_extract(source, ("gettext", "ngettext", "_"), [], {})) == [
- (2, "gettext", " Hello \n World", []),
- (4, "gettext", "Hello World", []),
- (6, "ngettext", ("%(users)s user", "%(users)s users", None), []),
- ]
- def test_extract_trimmed_option(self):
- from jinja2.ext import babel_extract
- source = BytesIO(
- b"""
- {{ gettext(' Hello \n World') }}
- {% trans %} Hello \n World{% endtrans %}
- {% trans %}{{ users }} \n user
- {%- pluralize %}{{ users }} \n users{% endtrans %}
- """
- )
- opts = {"trimmed": "true"}
- assert list(babel_extract(source, ("gettext", "ngettext", "_"), [], opts)) == [
- (2, "gettext", " Hello \n World", []),
- (4, "gettext", "Hello World", []),
- (6, "ngettext", ("%(users)s user", "%(users)s users", None), []),
- ]
- def test_comment_extract(self):
- from jinja2.ext import babel_extract
- source = BytesIO(
- b"""
- {# trans first #}
- {{ gettext('Hello World') }}
- {% trans %}Hello World{% endtrans %}{# trans second #}
- {#: third #}
- {% trans %}{{ users }} user{% pluralize %}{{ users }} users{% endtrans %}
- """
- )
- assert list(
- babel_extract(source, ("gettext", "ngettext", "_"), ["trans", ":"], {})
- ) == [
- (3, "gettext", "Hello World", ["first"]),
- (4, "gettext", "Hello World", ["second"]),
- (6, "ngettext", ("%(users)s user", "%(users)s users", None), ["third"]),
- ]
- def test_extract_context(self):
- from jinja2.ext import babel_extract
- source = BytesIO(
- b"""
- {{ pgettext("babel", "Hello World") }}
- {{ npgettext("babel", "%(users)s user", "%(users)s users", users) }}
- """
- )
- assert list(babel_extract(source, ("pgettext", "npgettext", "_"), [], {})) == [
- (2, "pgettext", ("babel", "Hello World"), []),
- (3, "npgettext", ("babel", "%(users)s user", "%(users)s users", None), []),
- ]
- def test_nested_trans_error(self):
- s = "{% trans %}foo{% trans %}{% endtrans %}"
- with pytest.raises(TemplateSyntaxError) as excinfo:
- i18n_env.from_string(s)
- assert "trans blocks can't be nested" in str(excinfo.value)
- def test_trans_block_error(self):
- s = "{% trans %}foo{% wibble bar %}{% endwibble %}{% endtrans %}"
- with pytest.raises(TemplateSyntaxError) as excinfo:
- i18n_env.from_string(s)
- assert "saw `wibble`" in str(excinfo.value)
- class TestScope:
- def test_basic_scope_behavior(self):
- # This is what the old with statement compiled down to
- class ScopeExt(Extension):
- tags = {"scope"}
- def parse(self, parser):
- node = nodes.Scope(lineno=next(parser.stream).lineno)
- assignments = []
- while parser.stream.current.type != "block_end":
- lineno = parser.stream.current.lineno
- if assignments:
- parser.stream.expect("comma")
- target = parser.parse_assign_target()
- parser.stream.expect("assign")
- expr = parser.parse_expression()
- assignments.append(nodes.Assign(target, expr, lineno=lineno))
- node.body = assignments + list(
- parser.parse_statements(("name:endscope",), drop_needle=True)
- )
- return node
- env = Environment(extensions=[ScopeExt])
- tmpl = env.from_string(
- """\
- {%- scope a=1, b=2, c=b, d=e, e=5 -%}
- {{ a }}|{{ b }}|{{ c }}|{{ d }}|{{ e }}
- {%- endscope -%}
- """
- )
- assert tmpl.render(b=3, e=4) == "1|2|2|4|5"
- class TestNewstyleInternationalization:
- def test_trans(self):
- tmpl = newstyle_i18n_env.get_template("child.html")
- assert tmpl.render(LANGUAGE="de") == "<title>fehlend</title>pass auf"
- def test_trans_plural(self):
- tmpl = newstyle_i18n_env.get_template("plural.html")
- assert tmpl.render(LANGUAGE="de", user_count=1) == "Ein Benutzer online"
- assert tmpl.render(LANGUAGE="de", user_count=2) == "2 Benutzer online"
- def test_complex_plural(self):
- tmpl = newstyle_i18n_env.from_string(
- "{% trans foo=42, count=2 %}{{ count }} item{% "
- "pluralize count %}{{ count }} items{% endtrans %}"
- )
- assert tmpl.render() == "2 items"
- pytest.raises(
- TemplateAssertionError,
- i18n_env.from_string,
- "{% trans foo %}...{% pluralize bar %}...{% endtrans %}",
- )
- def test_trans_stringformatting(self):
- tmpl = newstyle_i18n_env.get_template("stringformat.html")
- assert tmpl.render(LANGUAGE="de", user_count=5) == "Benutzer: 5"
- def test_newstyle_plural(self):
- tmpl = newstyle_i18n_env.get_template("ngettext.html")
- assert tmpl.render(LANGUAGE="de", apples=1) == "1 Apfel"
- assert tmpl.render(LANGUAGE="de", apples=5) == "5 Äpfel"
- def test_autoescape_support(self):
- env = Environment(extensions=["jinja2.ext.i18n"])
- env.install_gettext_callables(
- lambda x: "<strong>Wert: %(name)s</strong>",
- lambda s, p, n: s,
- newstyle=True,
- )
- t = env.from_string(
- '{% autoescape ae %}{{ gettext("foo", name='
- '"<test>") }}{% endautoescape %}'
- )
- assert t.render(ae=True) == "<strong>Wert: <test></strong>"
- assert t.render(ae=False) == "<strong>Wert: <test></strong>"
- def test_autoescape_macros(self):
- env = Environment(autoescape=False)
- template = (
- "{% macro m() %}<html>{% endmacro %}"
- "{% autoescape true %}{{ m() }}{% endautoescape %}"
- )
- assert env.from_string(template).render() == "<html>"
- def test_num_used_twice(self):
- tmpl = newstyle_i18n_env.get_template("ngettext_long.html")
- assert tmpl.render(apples=5, LANGUAGE="de") == "5 Äpfel"
- def test_num_called_num(self):
- source = newstyle_i18n_env.compile(
- """
- {% trans num=3 %}{{ num }} apple{% pluralize
- %}{{ num }} apples{% endtrans %}
- """,
- raw=True,
- )
- # quite hacky, but the only way to properly test that. The idea is
- # that the generated code does not pass num twice (although that
- # would work) for better performance. This only works on the
- # newstyle gettext of course
- assert (
- re.search(r"u?'%\(num\)s apple', u?'%\(num\)s apples', 3", source)
- is not None
- )
- def test_trans_vars(self):
- t1 = newstyle_i18n_env.get_template("transvars1.html")
- t2 = newstyle_i18n_env.get_template("transvars2.html")
- t3 = newstyle_i18n_env.get_template("transvars3.html")
- assert t1.render(num=1, LANGUAGE="de") == "Benutzer: 1"
- assert t2.render(count=23, LANGUAGE="de") == "Benutzer: 23"
- assert t3.render(num=42, LANGUAGE="de") == "Benutzer: 42"
- def test_novars_vars_escaping(self):
- t = newstyle_i18n_env.get_template("novars.html")
- assert t.render() == "%(hello)s"
- t = newstyle_i18n_env.get_template("vars.html")
- assert t.render(foo="42") == "42%(foo)s"
- t = newstyle_i18n_env.get_template("explicitvars.html")
- assert t.render() == "%(foo)s"
- def test_context(self):
- tmpl = newstyle_i18n_env.get_template("pgettext.html")
- assert tmpl.render(LANGUAGE="de") == "Apple"
- def test_context_plural(self):
- tmpl = newstyle_i18n_env.get_template("npgettext.html")
- assert tmpl.render(LANGUAGE="de", apples=1) == "1 Apple"
- assert tmpl.render(LANGUAGE="de", apples=5) == "5 Apples"
- def test_context_block(self):
- tmpl = newstyle_i18n_env.get_template("pgettext_block")
- assert tmpl.render(LANGUAGE="de") == "Apple"
- def test_context_plural_block(self):
- tmpl = newstyle_i18n_env.get_template("npgettext_block")
- assert tmpl.render(LANGUAGE="de", apples=1) == "1 Apple"
- assert tmpl.render(LANGUAGE="de", apples=5) == "5 Apples"
- class TestAutoEscape:
- def test_scoped_setting(self):
- env = Environment(autoescape=True)
- tmpl = env.from_string(
- """
- {{ "<HelloWorld>" }}
- {% autoescape false %}
- {{ "<HelloWorld>" }}
- {% endautoescape %}
- {{ "<HelloWorld>" }}
- """
- )
- assert tmpl.render().split() == [
- "<HelloWorld>",
- "<HelloWorld>",
- "<HelloWorld>",
- ]
- env = Environment(autoescape=False)
- tmpl = env.from_string(
- """
- {{ "<HelloWorld>" }}
- {% autoescape true %}
- {{ "<HelloWorld>" }}
- {% endautoescape %}
- {{ "<HelloWorld>" }}
- """
- )
- assert tmpl.render().split() == [
- "<HelloWorld>",
- "<HelloWorld>",
- "<HelloWorld>",
- ]
- def test_nonvolatile(self):
- env = Environment(autoescape=True)
- tmpl = env.from_string('{{ {"foo": "<test>"}|xmlattr|escape }}')
- assert tmpl.render() == ' foo="<test>"'
- tmpl = env.from_string(
- '{% autoescape false %}{{ {"foo": "<test>"}'
- "|xmlattr|escape }}{% endautoescape %}"
- )
- assert tmpl.render() == " foo="&lt;test&gt;""
- def test_volatile(self):
- env = Environment(autoescape=True)
- tmpl = env.from_string(
- '{% autoescape foo %}{{ {"foo": "<test>"}'
- "|xmlattr|escape }}{% endautoescape %}"
- )
- assert tmpl.render(foo=False) == " foo="&lt;test&gt;""
- assert tmpl.render(foo=True) == ' foo="<test>"'
- def test_scoping(self):
- env = Environment()
- tmpl = env.from_string(
- '{% autoescape true %}{% set x = "<x>" %}{{ x }}'
- '{% endautoescape %}{{ x }}{{ "<y>" }}'
- )
- assert tmpl.render(x=1) == "<x>1<y>"
- def test_volatile_scoping(self):
- env = Environment()
- tmplsource = """
- {% autoescape val %}
- {% macro foo(x) %}
- [{{ x }}]
- {% endmacro %}
- {{ foo().__class__.__name__ }}
- {% endautoescape %}
- {{ '<testing>' }}
- """
- tmpl = env.from_string(tmplsource)
- assert tmpl.render(val=True).split()[0] == "Markup"
- assert tmpl.render(val=False).split()[0] == "str"
- # looking at the source we should see <testing> there in raw
- # (and then escaped as well)
- env = Environment()
- pysource = env.compile(tmplsource, raw=True)
- assert "<testing>\\n" in pysource
- env = Environment(autoescape=True)
- pysource = env.compile(tmplsource, raw=True)
- assert "<testing>\\n" in pysource
- def test_overlay_scopes(self):
- class MagicScopeExtension(Extension):
- tags = {"overlay"}
- def parse(self, parser):
- node = nodes.OverlayScope(lineno=next(parser.stream).lineno)
- node.body = list(
- parser.parse_statements(("name:endoverlay",), drop_needle=True)
- )
- node.context = self.call_method("get_scope")
- return node
- def get_scope(self):
- return {"x": [1, 2, 3]}
- env = Environment(extensions=[MagicScopeExtension])
- tmpl = env.from_string(
- """
- {{- x }}|{% set z = 99 %}
- {%- overlay %}
- {{- y }}|{{ z }}|{% for item in x %}[{{ item }}]{% endfor %}
- {%- endoverlay %}|
- {{- x -}}
- """
- )
- assert tmpl.render(x=42, y=23) == "42|23|99|[1][2][3]|42"
|