194 lines
5.2 KiB
Python
194 lines
5.2 KiB
Python
"""Validate manifests."""
|
|
import argparse
|
|
import pathlib
|
|
import sys
|
|
from time import monotonic
|
|
|
|
from . import (
|
|
codeowners,
|
|
config_flow,
|
|
coverage,
|
|
dependencies,
|
|
dhcp,
|
|
json,
|
|
manifest,
|
|
mqtt,
|
|
requirements,
|
|
services,
|
|
ssdp,
|
|
translations,
|
|
zeroconf,
|
|
)
|
|
from .model import Config, Integration
|
|
|
|
INTEGRATION_PLUGINS = [
|
|
json,
|
|
codeowners,
|
|
config_flow,
|
|
dependencies,
|
|
manifest,
|
|
mqtt,
|
|
services,
|
|
ssdp,
|
|
translations,
|
|
zeroconf,
|
|
dhcp,
|
|
]
|
|
HASS_PLUGINS = [
|
|
coverage,
|
|
]
|
|
|
|
|
|
def valid_integration_path(integration_path):
|
|
"""Test if it's a valid integration."""
|
|
path = pathlib.Path(integration_path)
|
|
if not path.is_dir():
|
|
raise argparse.ArgumentTypeError(f"{integration_path} is not a directory.")
|
|
|
|
return path
|
|
|
|
|
|
def get_config() -> Config:
|
|
"""Return config."""
|
|
parser = argparse.ArgumentParser(description="Hassfest")
|
|
parser.add_argument(
|
|
"--action", type=str, choices=["validate", "generate"], default=None
|
|
)
|
|
parser.add_argument(
|
|
"--integration-path",
|
|
action="append",
|
|
type=valid_integration_path,
|
|
help="Validate a single integration",
|
|
)
|
|
parser.add_argument(
|
|
"--requirements",
|
|
action="store_true",
|
|
help="Validate requirements",
|
|
)
|
|
parsed = parser.parse_args()
|
|
|
|
if parsed.action is None:
|
|
parsed.action = "validate" if parsed.integration_path else "generate"
|
|
|
|
if parsed.action == "generate" and parsed.integration_path:
|
|
raise RuntimeError(
|
|
"Generate is not allowed when limiting to specific integrations"
|
|
)
|
|
|
|
if (
|
|
not parsed.integration_path
|
|
and not pathlib.Path("requirements_all.txt").is_file()
|
|
):
|
|
raise RuntimeError("Run from Home Assistant root")
|
|
|
|
return Config(
|
|
root=pathlib.Path(".").absolute(),
|
|
specific_integrations=parsed.integration_path,
|
|
action=parsed.action,
|
|
requirements=parsed.requirements,
|
|
)
|
|
|
|
|
|
def main():
|
|
"""Validate manifests."""
|
|
try:
|
|
config = get_config()
|
|
except RuntimeError as err:
|
|
print(err)
|
|
return 1
|
|
|
|
plugins = [*INTEGRATION_PLUGINS]
|
|
|
|
if config.requirements:
|
|
plugins.append(requirements)
|
|
|
|
if config.specific_integrations:
|
|
integrations = {}
|
|
|
|
for int_path in config.specific_integrations:
|
|
integration = Integration(int_path)
|
|
integration.load_manifest()
|
|
integrations[integration.domain] = integration
|
|
|
|
else:
|
|
integrations = Integration.load_dir(pathlib.Path("homeassistant/components"))
|
|
plugins += HASS_PLUGINS
|
|
|
|
for plugin in plugins:
|
|
try:
|
|
start = monotonic()
|
|
print(f"Validating {plugin.__name__.split('.')[-1]}...", end="", flush=True)
|
|
if plugin is requirements and not config.specific_integrations:
|
|
print()
|
|
plugin.validate(integrations, config)
|
|
print(f" done in {monotonic() - start:.2f}s")
|
|
except RuntimeError as err:
|
|
print()
|
|
print()
|
|
print("Error!")
|
|
print(err)
|
|
return 1
|
|
|
|
# When we generate, all errors that are fixable will be ignored,
|
|
# as generating them will be fixed.
|
|
if config.action == "generate":
|
|
general_errors = [err for err in config.errors if not err.fixable]
|
|
invalid_itg = [
|
|
itg
|
|
for itg in integrations.values()
|
|
if any(not error.fixable for error in itg.errors)
|
|
]
|
|
else:
|
|
# action == validate
|
|
general_errors = config.errors
|
|
invalid_itg = [itg for itg in integrations.values() if itg.errors]
|
|
|
|
warnings_itg = [itg for itg in integrations.values() if itg.warnings]
|
|
|
|
print()
|
|
print("Integrations:", len(integrations))
|
|
print("Invalid integrations:", len(invalid_itg))
|
|
print()
|
|
|
|
if not invalid_itg and not general_errors:
|
|
print_integrations_status(config, warnings_itg, show_fixable_errors=False)
|
|
|
|
if config.action == "generate":
|
|
for plugin in plugins:
|
|
if hasattr(plugin, "generate"):
|
|
plugin.generate(integrations, config)
|
|
return 0
|
|
|
|
if config.action == "generate":
|
|
print("Found errors. Generating files canceled.")
|
|
print()
|
|
|
|
if general_errors:
|
|
print("General errors:")
|
|
for error in general_errors:
|
|
print("*", error)
|
|
print()
|
|
|
|
invalid_itg.extend(itg for itg in warnings_itg if itg not in invalid_itg)
|
|
|
|
print_integrations_status(config, invalid_itg, show_fixable_errors=False)
|
|
|
|
return 1
|
|
|
|
|
|
def print_integrations_status(config, integrations, *, show_fixable_errors=True):
|
|
"""Print integration status."""
|
|
for integration in sorted(integrations, key=lambda itg: itg.domain):
|
|
extra = f" - {integration.path}" if config.specific_integrations else ""
|
|
print(f"Integration {integration.domain}{extra}:")
|
|
for error in integration.errors:
|
|
if show_fixable_errors or not error.fixable:
|
|
print("*", "[ERROR]", error)
|
|
for warning in integration.warnings:
|
|
print("*", "[WARNING]", warning)
|
|
print()
|
|
|
|
|
|
if __name__ == "__main__":
|
|
sys.exit(main())
|