mirror of
https://github.com/thegeeklab/ansible-later.git
synced 2024-11-10 15:20:40 +00:00
42 lines
1.4 KiB
Python
42 lines
1.4 KiB
Python
"""Checks related to ansible task files."""
|
|
|
|
import re
|
|
from collections import defaultdict
|
|
|
|
from ansiblelater.command.candidates import Error
|
|
from ansiblelater.command.candidates import Result
|
|
from ansiblelater.utils.rulehelper import get_normalized_tasks
|
|
from ansiblelater.utils.rulehelper import get_normalized_yaml
|
|
|
|
|
|
def check_line_between_tasks(candidate, settings):
|
|
options = defaultdict(dict)
|
|
options.update(remove_empty=False)
|
|
options.update(remove_markers=False)
|
|
|
|
lines, line_errors = get_normalized_yaml(candidate, settings, options)
|
|
tasks, task_errors = get_normalized_tasks(candidate, settings)
|
|
description = "missing task separation (required: 1 empty line)"
|
|
|
|
task_regex = re.compile(r"-\sname:(.*)")
|
|
prevline = "#file_start_marker"
|
|
|
|
allowed_prevline = ["---", "tasks:", "pre_tasks:", "post_tasks:", "block:"]
|
|
|
|
errors = task_errors + line_errors
|
|
if not errors:
|
|
for i, line in lines:
|
|
match = task_regex.search(line)
|
|
if match and prevline:
|
|
name = match.group(1).strip()
|
|
|
|
if not any(task.get("name") == name for task in tasks):
|
|
continue
|
|
|
|
if not any(item in prevline for item in allowed_prevline):
|
|
errors.append(Error(i, description))
|
|
|
|
prevline = line.strip()
|
|
|
|
return Result(candidate.path, errors)
|