-
Notifications
You must be signed in to change notification settings - Fork 5.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Test importing jinja files
- Loading branch information
Showing
1 changed file
with
38 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
""" | ||
Integration tests for the jinja includes in states | ||
""" | ||
import logging | ||
|
||
import pytest | ||
|
||
log = logging.getLogger(__name__) | ||
|
||
|
||
@pytest.mark.slow_test | ||
def test_issue_64111(salt_master, salt_minion, salt_call_cli): | ||
|
||
macros_jinja = """ | ||
{% macro a_jinja_macro(arg) -%} | ||
{{ arg }} | ||
{%- endmacro %} | ||
""" | ||
|
||
init_sls = """ | ||
include: | ||
- common.file1 | ||
""" | ||
|
||
file1_sls = """ | ||
{% from 'common/macros.jinja' import a_jinja_macro with context %} | ||
a state id: | ||
cmd.run: | ||
- name: echo {{ a_jinja_macro("hello world") }} | ||
""" | ||
tf = salt_master.state_tree.base.temp_file | ||
|
||
with tf("common/macros.jinja", macros_jinja): | ||
with tf("common/init.sls", init_sls): | ||
with tf("common/file1.sls", file1_sls): | ||
ret = salt_call_cli.run("state.apply", "common") | ||
assert ret.returncode == 0 |