2019-10-01 13:12:18 +00:00
|
|
|
"""Unit tests: template_builtin"""
|
|
|
|
|
|
|
|
# these values are also testing the handling of bizarre characters
|
|
|
|
LOCAL_CLASS = "builtin_Test+@-!^Class"
|
|
|
|
LOCAL_SYSTEM = "builtin_Test+@-!^System"
|
|
|
|
LOCAL_HOST = "builtin_Test+@-!^Host"
|
|
|
|
LOCAL_USER = "builtin_Test+@-!^User"
|
|
|
|
LOCAL_DISTRO = "builtin_Test+@-!^Distro"
|
|
|
|
TEMPLATE = f'''
|
|
|
|
start of template
|
2019-10-01 13:17:28 +00:00
|
|
|
builtin class = >{{{{yadm.class}}}}<
|
|
|
|
builtin os = >{{{{yadm.os}}}}<
|
|
|
|
builtin host = >{{{{yadm.hostname}}}}<
|
|
|
|
builtin user = >{{{{yadm.user}}}}<
|
|
|
|
builtin distro = >{{{{yadm.distro}}}}<
|
2019-10-05 16:01:13 +00:00
|
|
|
{{% if yadm.class == "else1" %}}
|
|
|
|
wrong else 1
|
|
|
|
{{% else %}}
|
|
|
|
Included section from else
|
|
|
|
{{% endif %}}
|
2019-10-01 13:17:28 +00:00
|
|
|
{{% if yadm.class == "wrongclass1" %}}
|
2019-10-01 13:12:18 +00:00
|
|
|
wrong class 1
|
2019-10-01 13:17:28 +00:00
|
|
|
{{% endif %}}
|
|
|
|
{{% if yadm.class == "{LOCAL_CLASS}" %}}
|
|
|
|
Included section for class = {{{{yadm.class}}}} ({{{{yadm.class}}}} repeated)
|
2019-10-05 16:01:13 +00:00
|
|
|
Multiple lines
|
|
|
|
{{% else %}}
|
|
|
|
Should not be included...
|
2019-10-01 13:17:28 +00:00
|
|
|
{{% endif %}}
|
|
|
|
{{% if yadm.class == "wrongclass2" %}}
|
2019-10-01 13:12:18 +00:00
|
|
|
wrong class 2
|
2019-10-01 13:17:28 +00:00
|
|
|
{{% endif %}}
|
|
|
|
{{% if yadm.os == "wrongos1" %}}
|
2019-10-01 13:12:18 +00:00
|
|
|
wrong os 1
|
2019-10-01 13:17:28 +00:00
|
|
|
{{% endif %}}
|
|
|
|
{{% if yadm.os == "{LOCAL_SYSTEM}" %}}
|
|
|
|
Included section for os = {{{{yadm.os}}}} ({{{{yadm.os}}}} repeated)
|
|
|
|
{{% endif %}}
|
|
|
|
{{% if yadm.os == "wrongos2" %}}
|
2019-10-01 13:12:18 +00:00
|
|
|
wrong os 2
|
2019-10-01 13:17:28 +00:00
|
|
|
{{% endif %}}
|
|
|
|
{{% if yadm.hostname == "wronghost1" %}}
|
2019-10-01 13:12:18 +00:00
|
|
|
wrong host 1
|
2019-10-01 13:17:28 +00:00
|
|
|
{{% endif %}}
|
|
|
|
{{% if yadm.hostname == "{LOCAL_HOST}" %}}
|
|
|
|
Included section for host = {{{{yadm.hostname}}}} ({{{{yadm.hostname}}}} again)
|
|
|
|
{{% endif %}}
|
|
|
|
{{% if yadm.hostname == "wronghost2" %}}
|
2019-10-01 13:12:18 +00:00
|
|
|
wrong host 2
|
2019-10-01 13:17:28 +00:00
|
|
|
{{% endif %}}
|
|
|
|
{{% if yadm.user == "wronguser1" %}}
|
2019-10-01 13:12:18 +00:00
|
|
|
wrong user 1
|
2019-10-01 13:17:28 +00:00
|
|
|
{{% endif %}}
|
|
|
|
{{% if yadm.user == "{LOCAL_USER}" %}}
|
|
|
|
Included section for user = {{{{yadm.user}}}} ({{{{yadm.user}}}} repeated)
|
|
|
|
{{% endif %}}
|
|
|
|
{{% if yadm.user == "wronguser2" %}}
|
2019-10-01 13:12:18 +00:00
|
|
|
wrong user 2
|
2019-10-01 13:17:28 +00:00
|
|
|
{{% endif %}}
|
|
|
|
{{% if yadm.distro == "wrongdistro1" %}}
|
2019-10-01 13:12:18 +00:00
|
|
|
wrong distro 1
|
2019-10-01 13:17:28 +00:00
|
|
|
{{% endif %}}
|
|
|
|
{{% if yadm.distro == "{LOCAL_DISTRO}" %}}
|
|
|
|
Included section for distro = {{{{yadm.distro}}}} ({{{{yadm.distro}}}} again)
|
|
|
|
{{% endif %}}
|
|
|
|
{{% if yadm.distro == "wrongdistro2" %}}
|
2019-10-01 13:12:18 +00:00
|
|
|
wrong distro 2
|
2019-10-01 13:17:28 +00:00
|
|
|
{{% endif %}}
|
2019-10-01 13:12:18 +00:00
|
|
|
end of template
|
|
|
|
'''
|
|
|
|
EXPECTED = f'''
|
|
|
|
start of template
|
|
|
|
builtin class = >{LOCAL_CLASS}<
|
|
|
|
builtin os = >{LOCAL_SYSTEM}<
|
|
|
|
builtin host = >{LOCAL_HOST}<
|
|
|
|
builtin user = >{LOCAL_USER}<
|
|
|
|
builtin distro = >{LOCAL_DISTRO}<
|
2019-10-05 16:01:13 +00:00
|
|
|
Included section from else
|
2019-10-01 13:12:18 +00:00
|
|
|
Included section for class = {LOCAL_CLASS} ({LOCAL_CLASS} repeated)
|
2019-10-05 16:01:13 +00:00
|
|
|
Multiple lines
|
2019-10-01 13:12:18 +00:00
|
|
|
Included section for os = {LOCAL_SYSTEM} ({LOCAL_SYSTEM} repeated)
|
2019-10-01 13:17:28 +00:00
|
|
|
Included section for host = {LOCAL_HOST} ({LOCAL_HOST} again)
|
2019-10-01 13:12:18 +00:00
|
|
|
Included section for user = {LOCAL_USER} ({LOCAL_USER} repeated)
|
2019-10-01 13:17:28 +00:00
|
|
|
Included section for distro = {LOCAL_DISTRO} ({LOCAL_DISTRO} again)
|
2019-10-01 13:12:18 +00:00
|
|
|
end of template
|
|
|
|
'''
|
|
|
|
|
|
|
|
|
|
|
|
def test_template_builtin(runner, yadm, tmpdir):
|
|
|
|
"""Test template_builtin"""
|
|
|
|
|
|
|
|
input_file = tmpdir.join('input')
|
|
|
|
input_file.write(TEMPLATE, ensure=True)
|
|
|
|
output_file = tmpdir.join('output')
|
|
|
|
|
|
|
|
script = f"""
|
|
|
|
YADM_TEST=1 source {yadm}
|
|
|
|
local_class="{LOCAL_CLASS}"
|
|
|
|
local_system="{LOCAL_SYSTEM}"
|
|
|
|
local_host="{LOCAL_HOST}"
|
|
|
|
local_user="{LOCAL_USER}"
|
|
|
|
local_distro="{LOCAL_DISTRO}"
|
|
|
|
template_builtin "{input_file}" "{output_file}"
|
|
|
|
"""
|
|
|
|
run = runner(command=['bash'], inp=script)
|
|
|
|
assert run.success
|
|
|
|
assert run.err == ''
|
|
|
|
assert output_file.read() == EXPECTED
|