mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
162 lines
5.4 KiB
Python
162 lines
5.4 KiB
Python
"""
|
|
tasks.docstrings
|
|
~~~~~~~~~~~~~~~~
|
|
|
|
Docstrings related tasks
|
|
"""
|
|
|
|
import ast
|
|
import pathlib
|
|
import re
|
|
|
|
from invoke import task # pylint: disable=3rd-party-module-not-gated
|
|
from salt.loader import SALT_INTERNAL_LOADERS_PATHS
|
|
from salt.version import SaltStackVersion
|
|
from tasks import utils
|
|
|
|
CODE_DIR = pathlib.Path(__file__).resolve().parent.parent
|
|
SALT_CODE_DIR = CODE_DIR / "salt"
|
|
SALT_MODULES_PATH = SALT_CODE_DIR / "modules"
|
|
|
|
|
|
@task(iterable=["files"], positional=["files"])
|
|
def check(ctx, files, check_proper_formatting=False):
|
|
"""
|
|
Check salt's docstrings
|
|
"""
|
|
# CD into Salt's repo root directory
|
|
ctx.cd(CODE_DIR)
|
|
|
|
# Unfortunately invoke does not support nargs.
|
|
# We migth have been passed --files="foo.py bar.py"
|
|
# Turn that into a list of paths
|
|
_files = []
|
|
for path in files:
|
|
if not path:
|
|
continue
|
|
_files.extend(path.split())
|
|
if not _files:
|
|
_files = SALT_CODE_DIR.rglob("*.py")
|
|
else:
|
|
_files = [pathlib.Path(fname) for fname in _files]
|
|
|
|
_files = [path.resolve() for path in _files]
|
|
|
|
errors = 0
|
|
exitcode = 0
|
|
for path in _files:
|
|
module = ast.parse(path.read_text(), filename=str(path))
|
|
module_docstring = ast.get_docstring(module)
|
|
if module_docstring:
|
|
error = _check_valid_versionadded(module_docstring)
|
|
if error:
|
|
errors += 1
|
|
exitcode = 1
|
|
utils.error(
|
|
"The module '{}' does not provide a proper `versionadded` version: {!r} is not valid.",
|
|
path.relative_to(CODE_DIR),
|
|
error,
|
|
)
|
|
|
|
for funcdef in [
|
|
node for node in module.body if isinstance(node, ast.FunctionDef)
|
|
]:
|
|
docstring = ast.get_docstring(funcdef)
|
|
if docstring:
|
|
error = _check_valid_versionadded(docstring)
|
|
if error:
|
|
errors += 1
|
|
exitcode = 1
|
|
utils.error(
|
|
"The module '{}' does not provide a proper `versionadded` version: {!r} is not valid.",
|
|
path.relative_to(CODE_DIR),
|
|
error,
|
|
)
|
|
|
|
if not str(path).startswith(SALT_INTERNAL_LOADERS_PATHS):
|
|
# No further docstrings checks are needed
|
|
continue
|
|
|
|
# We're dealing with a salt loader module
|
|
if funcdef.name.startswith("_"):
|
|
# We're not interested in internal functions
|
|
continue
|
|
|
|
if not docstring:
|
|
errors += 1
|
|
exitcode = 1
|
|
utils.error(
|
|
"The function {!r} on '{}' does not have a docstring",
|
|
funcdef.name,
|
|
path.relative_to(CODE_DIR),
|
|
)
|
|
continue
|
|
|
|
try:
|
|
relpath = path.relative_to(SALT_MODULES_PATH)
|
|
if str(relpath.parent) != ".":
|
|
# We don't want to check nested packages
|
|
continue
|
|
# But this is a module under salt/modules, let's check
|
|
# the CLI examples
|
|
except ValueError:
|
|
# We're not checking CLI examples in any other salt loader modules
|
|
continue
|
|
|
|
if _check_cli_example_present(docstring) is False:
|
|
errors += 1
|
|
exitcode = 1
|
|
utils.error(
|
|
"The function {!r} on '{}' does not have a 'CLI Example:' in it's docstring",
|
|
funcdef.name,
|
|
path.relative_to(CODE_DIR),
|
|
)
|
|
continue
|
|
|
|
if check_proper_formatting is False:
|
|
continue
|
|
|
|
# By now we now this function has a docstring and it has a CLI Example section
|
|
# Let's now check if it's properly formatted
|
|
if _check_cli_example_proper_formatting(docstring) is False:
|
|
errors += 1
|
|
exitcode = 1
|
|
utils.error(
|
|
"The function {!r} on '{}' does not have a proper 'CLI Example:' section in "
|
|
"it's docstring. The proper format is:\n"
|
|
"CLI Example:\n"
|
|
"\n"
|
|
".. code-block:: bash\n"
|
|
"\n"
|
|
" salt '*' <insert example here>\n",
|
|
funcdef.name,
|
|
path.relative_to(CODE_DIR),
|
|
)
|
|
continue
|
|
|
|
if exitcode:
|
|
utils.error("Found {} errors", errors)
|
|
utils.exit_invoke(exitcode)
|
|
|
|
|
|
def _check_valid_versionadded(docstring):
|
|
versionadded_regex = re.compile("versionadded::(?P<version>.*)")
|
|
for match in versionadded_regex.finditer(docstring):
|
|
version = match.group("version")
|
|
try:
|
|
parsed = SaltStackVersion.parse(version.strip())
|
|
except ValueError:
|
|
return version.strip()
|
|
return False
|
|
|
|
|
|
def _check_cli_example_present(docstring):
|
|
cli_example_regex = re.compile(r"CLI Example(?:s)?:")
|
|
return cli_example_regex.search(docstring) is not None
|
|
|
|
|
|
def _check_cli_example_proper_formatting(docstring):
|
|
good_cli_example_regex = re.compile(
|
|
r"CLI Example(?:s)?:\n\n.. code-block:: bash\n\n salt (.*) '*'", re.MULTILINE
|
|
)
|
|
return good_cli_example_regex.search(docstring) is not None
|