Source code for project_config.plugins.include

"""Inclusions checker plugin."""

import os
import typing as t

from project_config import (
    Error,
    InterruptingError,
    Results,
    ResultValue,
    Rule,
    Tree,
)


[docs]def _directories_not_accepted_as_inputs_error( action_type: str, action_name: str, dir_path: str, definition: str, ) -> t.Dict[str, str]: return { "message": ( f"Directory found but the {action_type} '{action_name}' does not" " accepts directories as inputs" ), "file": f"{dir_path.rstrip(os.sep)}/", "definition": definition, }
[docs]class IncludePlugin:
[docs] @staticmethod def includeLines( value: t.List[str], tree: Tree, rule: Rule, ) -> Results: expected_lines = [line.strip("\r\n") for line in value] for f, (fpath, fcontent) in enumerate(tree.files): if fcontent is None: continue elif not isinstance(fcontent, str): yield ( InterruptingError, _directories_not_accepted_as_inputs_error( "verb", "includeLines", fpath, f".files[{f}]", ), ) continue fcontent_lines = fcontent.splitlines() for line_index, expected_line in enumerate(expected_lines): if expected_line not in fcontent_lines: yield Error, { "message": f"Expected line '{expected_line}' not found", "file": fpath, "definition": f".includeLines[{line_index}]", }
[docs] @staticmethod def ifIncludeLines( value: t.Dict[str, t.List[str]], tree: Tree, rule: Rule, ) -> Results: for fpath, expected_lines in value.items(): fcontent = tree.get_file_content(fpath) if fcontent is None: yield InterruptingError, { "message": ( "File specified in conditional 'ifIncludeLines'" " not found" ), "file": fpath, "definition": f".ifIncludeLines[{fpath}]", } return elif not isinstance(fcontent, str): yield ( InterruptingError, _directories_not_accepted_as_inputs_error( "conditional", "ifIncludeLines", fpath, f".ifIncludeLines[{fpath}]", ), ) return expected_lines = [line.strip("\r\n") for line in expected_lines] fcontent_lines = fcontent.splitlines() for expected_line in expected_lines: if expected_line not in fcontent_lines: yield ResultValue, False return yield ResultValue, True
[docs] @staticmethod def excludeContent( value: t.List[str], tree: Tree, rule: Rule, ) -> Results: for f, (fpath, fcontent) in enumerate(tree.files): if fcontent is None: continue elif not isinstance(fcontent, str): yield ( InterruptingError, _directories_not_accepted_as_inputs_error( "verb", "excludeContent", fpath, f".files[{f}]", ), ) continue # Normalize newlines for content_index, content in enumerate(value): if content in fcontent: yield Error, { "message": ( f"Found expected content to exclude '{content}'" ), "file": fpath, "definition": f".excludeContent[{content_index}]", }