Skip to content

Commit

Permalink
Remove v2 API support for HomeWizard P1 Meter (#137261)
Browse files Browse the repository at this point in the history
  • Loading branch information
DCSBL authored Feb 4, 2025
1 parent 9a56588 commit d1d498e
Show file tree
Hide file tree
Showing 4 changed files with 41 additions and 3 deletions.
7 changes: 5 additions & 2 deletions homeassistant/components/homewizard/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,9 @@ async def async_setup_entry(hass: HomeAssistant, entry: HomeWizardConfigEntry) -

api: HomeWizardEnergy

if token := entry.data.get(CONF_TOKEN):
is_battery = entry.unique_id.startswith("HWE-BAT") if entry.unique_id else False

if (token := entry.data.get(CONF_TOKEN)) and is_battery:
api = HomeWizardEnergyV2(
entry.data[CONF_IP_ADDRESS],
token=token,
Expand All @@ -37,7 +39,8 @@ async def async_setup_entry(hass: HomeAssistant, entry: HomeWizardConfigEntry) -
clientsession=async_get_clientsession(hass),
)

await async_check_v2_support_and_create_issue(hass, entry)
if is_battery:
await async_check_v2_support_and_create_issue(hass, entry)

coordinator = HWEnergyDeviceUpdateCoordinator(hass, api)
try:
Expand Down
2 changes: 1 addition & 1 deletion tests/components/homewizard/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ def mock_config_entry_v2() -> MockConfigEntry:
CONF_IP_ADDRESS: "127.0.0.1",
CONF_TOKEN: "00112233445566778899ABCDEFABCDEF",
},
unique_id="HWE-P1_5c2fafabcdef",
unique_id="HWE-BAT_5c2fafabcdef",
)


Expand Down
31 changes: 31 additions & 0 deletions tests/components/homewizard/test_init.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@

from homeassistant.components.homewizard.const import DOMAIN
from homeassistant.config_entries import SOURCE_REAUTH, ConfigEntryState
from homeassistant.const import CONF_IP_ADDRESS, CONF_TOKEN
from homeassistant.core import HomeAssistant

from tests.common import MockConfigEntry, async_fire_time_changed
Expand Down Expand Up @@ -52,6 +53,36 @@ async def test_load_unload_v2(
assert mock_config_entry_v2.state is ConfigEntryState.NOT_LOADED


async def test_load_unload_v2_as_v1(
hass: HomeAssistant,
mock_homewizardenergy: MagicMock,
) -> None:
"""Test loading and unloading of integration with v2 config, but without using it."""

# Simulate v2 config but as a P1 Meter
mock_config_entry = MockConfigEntry(
title="Device",
domain=DOMAIN,
data={
CONF_IP_ADDRESS: "127.0.0.1",
CONF_TOKEN: "00112233445566778899ABCDEFABCDEF",
},
unique_id="HWE-P1_5c2fafabcdef",
)

mock_config_entry.add_to_hass(hass)
await hass.config_entries.async_setup(mock_config_entry.entry_id)
await hass.async_block_till_done()

assert mock_config_entry.state is ConfigEntryState.LOADED
assert len(mock_homewizardenergy.combined.mock_calls) == 1

await hass.config_entries.async_unload(mock_config_entry.entry_id)
await hass.async_block_till_done()

assert mock_config_entry.state is ConfigEntryState.NOT_LOADED


async def test_load_failed_host_unavailable(
hass: HomeAssistant,
mock_config_entry: MockConfigEntry,
Expand Down
4 changes: 4 additions & 0 deletions tests/components/homewizard/test_repair.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,10 @@ async def test_repair_acquires_token(
client = await hass_client()

mock_config_entry.add_to_hass(hass)
hass.config_entries.async_update_entry(
mock_config_entry, unique_id="HWE-BAT_5c2fafabcdef"
)
await hass.async_block_till_done()

with patch("homeassistant.components.homewizard.has_v2_api", return_value=True):
await hass.config_entries.async_setup(mock_config_entry.entry_id)
Expand Down

0 comments on commit d1d498e

Please sign in to comment.