Do not ignore SyntaxError from jinja2.Environment.from_string (#82607)

Jinja may generate an invalid Python source code from a template. Trying
to compile such source code into a Python code object results in
SyntaxError being thrown. An example of such a template is providing the
same keyword argument into a lookup twice, resulting in:
`SyntaxError: keyword argument repeated`.

Since `jinja2.exceptions.TemplateSyntaxError` does not cover such a
case, as it is not a Jinja parsing error, we need to catch SyntaxError
explicitly ourselves.

Fixes #82606
pull/79244/merge
Martin Krizek 4 months ago committed by GitHub
parent 13e6d8487a
commit 6d34eb88d9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -0,0 +1,2 @@
bugfixes:
- templating - ensure syntax errors originating from a template being compiled into Python code object result in a failure (https://github.com/ansible/ansible/issues/82606)

@ -945,7 +945,7 @@ class Templar:
try:
t = myenv.from_string(data)
except TemplateSyntaxError as e:
except (TemplateSyntaxError, SyntaxError) as e:
raise AnsibleError("template error while templating string: %s. String: %s" % (to_native(e), to_native(data)), orig_exc=e)
except Exception as e:
if 'recursion' in to_native(e):

@ -33,3 +33,14 @@
- result is failed
- >-
"TemplateSyntaxError: Could not load \"asdf \": 'invalid plugin name: ansible.builtin.asdf '" in result.msg
- name: Make sure syntax errors originating from a template being compiled into Python code object result in a failure
debug:
msg: "{{ lookup('vars', 'v1', default='', default='') }}"
ignore_errors: true
register: r
- assert:
that:
- r is failed
- "'keyword argument repeated' in r.msg"

Loading…
Cancel
Save