1
0
mirror of https://github.com/esphome/esphome.git synced 2025-09-24 06:02:21 +01:00
This commit is contained in:
J. Nick Koston
2025-09-16 11:54:09 -05:00
parent 9be832a23c
commit 586f24e02d
2 changed files with 124 additions and 90 deletions

View File

@@ -14,17 +14,23 @@ from esphome.const import (
) )
@patch("esphome.git.clone_or_update")
@patch("esphome.loader.install_meta_finder")
def test_external_components_skip_update_true( def test_external_components_skip_update_true(
mock_install_meta: MagicMock, mock_clone_or_update: MagicMock tmp_path: Path, mock_clone_or_update: MagicMock
) -> None: ) -> None:
"""Test that external components don't update when skip_update=True.""" """Test that external components don't update when skip_update=True."""
# Setup mocks # Create a components directory structure
test_path = Path("/tmp/test/components") components_dir = tmp_path / "components"
test_path.mkdir(parents=True, exist_ok=True) components_dir.mkdir()
mock_clone_or_update.return_value = (test_path.parent, None)
# Create a test component
test_component_dir = components_dir / "test_component"
test_component_dir.mkdir()
(test_component_dir / "__init__.py").write_text("# Test component")
# Set up mock to return our tmp_path
mock_clone_or_update.return_value = (tmp_path, None)
with patch("esphome.loader.install_meta_finder"):
config: dict[str, Any] = { config: dict[str, Any] = {
CONF_EXTERNAL_COMPONENTS: [ CONF_EXTERNAL_COMPONENTS: [
{ {
@@ -47,17 +53,23 @@ def test_external_components_skip_update_true(
assert call_args.kwargs["refresh"] is None assert call_args.kwargs["refresh"] is None
@patch("esphome.git.clone_or_update")
@patch("esphome.loader.install_meta_finder")
def test_external_components_skip_update_false( def test_external_components_skip_update_false(
mock_install_meta: MagicMock, mock_clone_or_update: MagicMock tmp_path: Path, mock_clone_or_update: MagicMock
) -> None: ) -> None:
"""Test that external components update when skip_update=False.""" """Test that external components update when skip_update=False."""
# Setup mocks # Create a components directory structure
test_path = Path("/tmp/test/components") components_dir = tmp_path / "components"
test_path.mkdir(parents=True, exist_ok=True) components_dir.mkdir()
mock_clone_or_update.return_value = (test_path.parent, None)
# Create a test component
test_component_dir = components_dir / "test_component"
test_component_dir.mkdir()
(test_component_dir / "__init__.py").write_text("# Test component")
# Set up mock to return our tmp_path
mock_clone_or_update.return_value = (tmp_path, None)
with patch("esphome.loader.install_meta_finder"):
config: dict[str, Any] = { config: dict[str, Any] = {
CONF_EXTERNAL_COMPONENTS: [ CONF_EXTERNAL_COMPONENTS: [
{ {
@@ -80,17 +92,23 @@ def test_external_components_skip_update_false(
assert call_args.kwargs["refresh"] == "1d" assert call_args.kwargs["refresh"] == "1d"
@patch("esphome.git.clone_or_update")
@patch("esphome.loader.install_meta_finder")
def test_external_components_default_no_skip( def test_external_components_default_no_skip(
mock_install_meta: MagicMock, mock_clone_or_update: MagicMock tmp_path: Path, mock_clone_or_update: MagicMock
) -> None: ) -> None:
"""Test that external components update by default when skip_update not specified.""" """Test that external components update by default when skip_update not specified."""
# Setup mocks # Create a components directory structure
test_path = Path("/tmp/test/components") components_dir = tmp_path / "components"
test_path.mkdir(parents=True, exist_ok=True) components_dir.mkdir()
mock_clone_or_update.return_value = (test_path.parent, None)
# Create a test component
test_component_dir = components_dir / "test_component"
test_component_dir.mkdir()
(test_component_dir / "__init__.py").write_text("# Test component")
# Set up mock to return our tmp_path
mock_clone_or_update.return_value = (tmp_path, None)
with patch("esphome.loader.install_meta_finder"):
config: dict[str, Any] = { config: dict[str, Any] = {
CONF_EXTERNAL_COMPONENTS: [ CONF_EXTERNAL_COMPONENTS: [
{ {

View File

@@ -6,16 +6,22 @@ from unittest.mock import MagicMock
from esphome.components.packages import do_packages_pass from esphome.components.packages import do_packages_pass
from esphome.const import CONF_FILES, CONF_PACKAGES, CONF_REFRESH, CONF_URL from esphome.const import CONF_FILES, CONF_PACKAGES, CONF_REFRESH, CONF_URL
from esphome.util import OrderedDict
def test_packages_skip_update_true( def test_packages_skip_update_true(
mock_clone_or_update: MagicMock, mock_load_yaml: MagicMock tmp_path: Path, mock_clone_or_update: MagicMock, mock_load_yaml: MagicMock
) -> None: ) -> None:
"""Test that packages don't update when skip_update=True.""" """Test that packages don't update when skip_update=True."""
# Setup mocks # Set up mock to return our tmp_path
with MagicMock() as mock_is_file: mock_clone_or_update.return_value = (tmp_path, None)
mock_is_file.return_value = True
Path.is_file = mock_is_file # Create the test yaml file
test_file = tmp_path / "test.yaml"
test_file.write_text("sensor: []")
# Set mock_load_yaml to return some valid config
mock_load_yaml.return_value = OrderedDict({"sensor": []})
config: dict[str, Any] = { config: dict[str, Any] = {
CONF_PACKAGES: { CONF_PACKAGES: {
@@ -37,13 +43,18 @@ def test_packages_skip_update_true(
def test_packages_skip_update_false( def test_packages_skip_update_false(
mock_clone_or_update: MagicMock, mock_load_yaml: MagicMock tmp_path: Path, mock_clone_or_update: MagicMock, mock_load_yaml: MagicMock
) -> None: ) -> None:
"""Test that packages update when skip_update=False.""" """Test that packages update when skip_update=False."""
# Setup mocks # Set up mock to return our tmp_path
with MagicMock() as mock_is_file: mock_clone_or_update.return_value = (tmp_path, None)
mock_is_file.return_value = True
Path.is_file = mock_is_file # Create the test yaml file
test_file = tmp_path / "test.yaml"
test_file.write_text("sensor: []")
# Set mock_load_yaml to return some valid config
mock_load_yaml.return_value = OrderedDict({"sensor": []})
config: dict[str, Any] = { config: dict[str, Any] = {
CONF_PACKAGES: { CONF_PACKAGES: {
@@ -65,13 +76,18 @@ def test_packages_skip_update_false(
def test_packages_default_no_skip( def test_packages_default_no_skip(
mock_clone_or_update: MagicMock, mock_load_yaml: MagicMock tmp_path: Path, mock_clone_or_update: MagicMock, mock_load_yaml: MagicMock
) -> None: ) -> None:
"""Test that packages update by default when skip_update not specified.""" """Test that packages update by default when skip_update not specified."""
# Setup mocks # Set up mock to return our tmp_path
with MagicMock() as mock_is_file: mock_clone_or_update.return_value = (tmp_path, None)
mock_is_file.return_value = True
Path.is_file = mock_is_file # Create the test yaml file
test_file = tmp_path / "test.yaml"
test_file.write_text("sensor: []")
# Set mock_load_yaml to return some valid config
mock_load_yaml.return_value = OrderedDict({"sensor": []})
config: dict[str, Any] = { config: dict[str, Any] = {
CONF_PACKAGES: { CONF_PACKAGES: {