test(saltcheck): remove duplication in `config.tst` using a loop

This commit is contained in:
Imran Iqbal 2019-10-15 19:44:38 +01:00
parent 5cdc50f521
commit 72281c7905
No known key found for this signature in database
GPG Key ID: 6D8629439D2B7819
1 changed files with 7 additions and 60 deletions

View File

@ -16,71 +16,18 @@ validate_cron.{{ task }}_exists:
assertion_section: identifier
expected-return: {{ task }}
{%- if 'minute' in task_options %}
validate_cron.{{ task }}_minute:
{%- for section in ['minute', 'hour', 'daymonth', 'month', 'dayweek', 'comment'] %}
{%- if section in task_options %}
validate_cron.{{ task }}_{{ section }}:
module_and_function: cron.get_entry
args:
- {{ task_options.user|default('root') }}
- {{ task }}
assertion: assertEqual
assertion_section: minute
expected-return: '{{ task_options.minute }}'
{%- endif %}
{%- if 'hour' in task_options %}
validate_cron.{{ task }}_hour:
module_and_function: cron.get_entry
args:
- {{ task_options.user|default('root') }}
- {{ task }}
assertion_section: hour
assertion: assertEqual
expected-return: '{{ task_options.hour }}'
{%- endif %}
{%- if 'daymonth' in task_options %}
validate_cron.{{ task }}_daymonth:
module_and_function: cron.get_entry
args:
- {{ task_options.user|default('root') }}
- {{ task }}
assertion_section: daymonth
assertion: assertEqual
expected-return: '{{ task_options.daymonth }}'
{%- endif %}
{%- if 'month' in task_options %}
validate_cron.{{ task }}_month:
module_and_function: cron.get_entry
args:
- {{ task_options.user|default('root') }}
- {{ task }}
assertion_section: month
assertion: assertEqual
expected-return: '{{ task_options.month }}'
{%- endif %}
{%- if 'dayweek' in task_options %}
validate_cron.{{ task }}_dayweek:
module_and_function: cron.get_entry
args:
- {{ task_options.user|default('root') }}
- {{ task }}
assertion_section: dayweek
assertion: assertEqual
expected-return: '{{ task_options.dayweek }}'
{%- endif %}
{%- if 'comment' in task_options %}
validate_cron.{{ task }}_comment:
module_and_function: cron.get_entry
args:
- {{ task_options.user|default('root') }}
- {{ task }}
assertion_section: comment
assertion: assertEqual
expected-return: {{ task_options.comment }}
assertion_section: {{ section }}
expected-return: '{{ task_options.get(section) }}'
{%- endif %}
{%- endfor %}
{%- if 'commented' in task_options and task_options.commented %}
validate_cron.{{ task }}_commented: