1
0
mirror of https://github.com/home-assistant/core synced 2024-07-08 20:17:01 +00:00

Force root import of const from other components (#78014)

* Force root import of const from other components

* Add missing commit

* Add tests

* Add tests

* Apply suggestion

Co-authored-by: Marc Mueller <30130371+cdce8p@users.noreply.github.com>

* Apply suggestion

Co-authored-by: Marc Mueller <30130371+cdce8p@users.noreply.github.com>

Co-authored-by: Marc Mueller <30130371+cdce8p@users.noreply.github.com>
This commit is contained in:
epenet 2022-09-14 14:07:57 +02:00 committed by GitHub
parent 1fcab33653
commit 3941290edc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 82 additions and 0 deletions

View File

@ -310,6 +310,12 @@ class HassImportsFormatChecker(BaseChecker): # type: ignore[misc]
"hass-absolute-import",
"Used when relative import should be replaced with absolute import",
),
"W7424": (
"Import should be using the component root",
"hass-component-root-import",
"Used when an import from another component should be "
"from the component root",
),
}
options = ()
@ -330,6 +336,10 @@ class HassImportsFormatChecker(BaseChecker): # type: ignore[misc]
for module, _alias in node.names:
if module.startswith(f"{self.current_package}."):
self.add_message("hass-relative-import", node=node)
if module.startswith("homeassistant.components.") and module.endswith(
"const"
):
self.add_message("hass-component-root-import", node=node)
def _visit_importfrom_relative(
self, current_package: str, node: nodes.ImportFrom
@ -374,6 +384,12 @@ class HassImportsFormatChecker(BaseChecker): # type: ignore[misc]
):
self.add_message("hass-relative-import", node=node)
return
if node.modname.startswith("homeassistant.components.") and (
node.modname.endswith(".const")
or "const" in {names[0] for names in node.names}
):
self.add_message("hass-component-root-import", node=node)
return
if obsolete_imports := _OBSOLETE_IMPORT.get(node.modname):
for name_tuple in node.names:
for obsolete_import in obsolete_imports:

View File

@ -132,3 +132,69 @@ def test_bad_import(
),
):
imports_checker.visit_importfrom(import_node)
@pytest.mark.parametrize(
"import_node",
[
"from homeassistant.components import climate",
"from homeassistant.components.climate import ClimateEntityFeature",
],
)
def test_good_root_import(
linter: UnittestLinter,
imports_checker: BaseChecker,
import_node: str,
) -> None:
"""Ensure bad root imports are rejected."""
node = astroid.extract_node(
f"{import_node} #@",
"homeassistant.components.pylint_test.climate",
)
imports_checker.visit_module(node.parent)
with assert_no_messages(linter):
if import_node.startswith("import"):
imports_checker.visit_import(node)
if import_node.startswith("from"):
imports_checker.visit_importfrom(node)
@pytest.mark.parametrize(
"import_node",
[
"import homeassistant.components.climate.const as climate",
"from homeassistant.components.climate import const",
"from homeassistant.components.climate.const import ClimateEntityFeature",
],
)
def test_bad_root_import(
linter: UnittestLinter,
imports_checker: BaseChecker,
import_node: str,
) -> None:
"""Ensure bad root imports are rejected."""
node = astroid.extract_node(
f"{import_node} #@",
"homeassistant.components.pylint_test.climate",
)
imports_checker.visit_module(node.parent)
with assert_adds_messages(
linter,
pylint.testutils.MessageTest(
msg_id="hass-component-root-import",
node=node,
args=None,
line=1,
col_offset=0,
end_line=1,
end_col_offset=len(import_node),
),
):
if import_node.startswith("import"):
imports_checker.visit_import(node)
if import_node.startswith("from"):
imports_checker.visit_importfrom(node)