mirror of https://github.com/home-assistant/core
41 lines
1.4 KiB
Python
41 lines
1.4 KiB
Python
"""Tests for the Smappee component init module."""
|
|
|
|
from unittest.mock import patch
|
|
|
|
from homeassistant.components.smappee.const import DOMAIN
|
|
from homeassistant.config_entries import SOURCE_ZEROCONF
|
|
from homeassistant.core import HomeAssistant
|
|
|
|
from tests.common import MockConfigEntry
|
|
|
|
|
|
async def test_unload_config_entry(hass: HomeAssistant) -> None:
|
|
"""Test unload config entry flow."""
|
|
with (
|
|
patch("pysmappee.api.SmappeeLocalApi.logon", return_value={}),
|
|
patch(
|
|
"pysmappee.api.SmappeeLocalApi.load_advanced_config",
|
|
return_value=[{"key": "mdnsHostName", "value": "Smappee1006000212"}],
|
|
),
|
|
patch(
|
|
"pysmappee.api.SmappeeLocalApi.load_command_control_config", return_value=[]
|
|
),
|
|
patch(
|
|
"pysmappee.api.SmappeeLocalApi.load_instantaneous",
|
|
return_value=[{"key": "phase0ActivePower", "value": 0}],
|
|
),
|
|
):
|
|
config_entry = MockConfigEntry(
|
|
domain=DOMAIN,
|
|
data={"host": "1.2.3.4"},
|
|
unique_id="smappee1006000212",
|
|
source=SOURCE_ZEROCONF,
|
|
)
|
|
config_entry.add_to_hass(hass)
|
|
assert len(hass.config_entries.async_entries(DOMAIN)) == 1
|
|
|
|
entry = hass.config_entries.async_entries(DOMAIN)[0]
|
|
await hass.config_entries.async_unload(entry.entry_id)
|
|
await hass.async_block_till_done()
|
|
assert not hass.data.get(DOMAIN)
|