mirror of
https://github.com/home-assistant/core.git
synced 2025-07-27 23:27:37 +00:00
Fix Kulersky and Zerproc config unloading (#47572)
This commit is contained in:
parent
f35641ae8e
commit
8557b856a4
@ -4,7 +4,7 @@ import asyncio
|
|||||||
from homeassistant.config_entries import ConfigEntry
|
from homeassistant.config_entries import ConfigEntry
|
||||||
from homeassistant.core import HomeAssistant
|
from homeassistant.core import HomeAssistant
|
||||||
|
|
||||||
from .const import DOMAIN
|
from .const import DATA_ADDRESSES, DATA_DISCOVERY_SUBSCRIPTION, DOMAIN
|
||||||
|
|
||||||
PLATFORMS = ["light"]
|
PLATFORMS = ["light"]
|
||||||
|
|
||||||
@ -16,6 +16,11 @@ async def async_setup(hass: HomeAssistant, config: dict):
|
|||||||
|
|
||||||
async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry):
|
async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry):
|
||||||
"""Set up Kuler Sky from a config entry."""
|
"""Set up Kuler Sky from a config entry."""
|
||||||
|
if DOMAIN not in hass.data:
|
||||||
|
hass.data[DOMAIN] = {}
|
||||||
|
if DATA_ADDRESSES not in hass.data[DOMAIN]:
|
||||||
|
hass.data[DOMAIN][DATA_ADDRESSES] = set()
|
||||||
|
|
||||||
for platform in PLATFORMS:
|
for platform in PLATFORMS:
|
||||||
hass.async_create_task(
|
hass.async_create_task(
|
||||||
hass.config_entries.async_forward_entry_setup(entry, platform)
|
hass.config_entries.async_forward_entry_setup(entry, platform)
|
||||||
@ -26,7 +31,14 @@ async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry):
|
|||||||
|
|
||||||
async def async_unload_entry(hass: HomeAssistant, entry: ConfigEntry):
|
async def async_unload_entry(hass: HomeAssistant, entry: ConfigEntry):
|
||||||
"""Unload a config entry."""
|
"""Unload a config entry."""
|
||||||
unload_ok = all(
|
# Stop discovery
|
||||||
|
unregister_discovery = hass.data[DOMAIN].pop(DATA_DISCOVERY_SUBSCRIPTION, None)
|
||||||
|
if unregister_discovery:
|
||||||
|
unregister_discovery()
|
||||||
|
|
||||||
|
hass.data.pop(DOMAIN, None)
|
||||||
|
|
||||||
|
return all(
|
||||||
await asyncio.gather(
|
await asyncio.gather(
|
||||||
*[
|
*[
|
||||||
hass.config_entries.async_forward_entry_unload(entry, platform)
|
hass.config_entries.async_forward_entry_unload(entry, platform)
|
||||||
@ -34,7 +46,3 @@ async def async_unload_entry(hass: HomeAssistant, entry: ConfigEntry):
|
|||||||
]
|
]
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
if unload_ok:
|
|
||||||
hass.data[DOMAIN].pop(entry.entry_id)
|
|
||||||
|
|
||||||
return unload_ok
|
|
||||||
|
@ -1,2 +1,5 @@
|
|||||||
"""Constants for the Kuler Sky integration."""
|
"""Constants for the Kuler Sky integration."""
|
||||||
DOMAIN = "kulersky"
|
DOMAIN = "kulersky"
|
||||||
|
|
||||||
|
DATA_ADDRESSES = "addresses"
|
||||||
|
DATA_DISCOVERY_SUBSCRIPTION = "discovery_subscription"
|
||||||
|
@ -18,13 +18,12 @@ from homeassistant.components.light import (
|
|||||||
)
|
)
|
||||||
from homeassistant.config_entries import ConfigEntry
|
from homeassistant.config_entries import ConfigEntry
|
||||||
from homeassistant.const import EVENT_HOMEASSISTANT_STOP
|
from homeassistant.const import EVENT_HOMEASSISTANT_STOP
|
||||||
from homeassistant.core import HomeAssistant
|
|
||||||
from homeassistant.helpers.entity import Entity
|
from homeassistant.helpers.entity import Entity
|
||||||
from homeassistant.helpers.event import async_track_time_interval
|
from homeassistant.helpers.event import async_track_time_interval
|
||||||
from homeassistant.helpers.typing import HomeAssistantType
|
from homeassistant.helpers.typing import HomeAssistantType
|
||||||
import homeassistant.util.color as color_util
|
import homeassistant.util.color as color_util
|
||||||
|
|
||||||
from .const import DOMAIN
|
from .const import DATA_ADDRESSES, DATA_DISCOVERY_SUBSCRIPTION, DOMAIN
|
||||||
|
|
||||||
_LOGGER = logging.getLogger(__name__)
|
_LOGGER = logging.getLogger(__name__)
|
||||||
|
|
||||||
@ -39,10 +38,6 @@ async def async_setup_entry(
|
|||||||
async_add_entities: Callable[[list[Entity], bool], None],
|
async_add_entities: Callable[[list[Entity], bool], None],
|
||||||
) -> None:
|
) -> None:
|
||||||
"""Set up Kuler sky light devices."""
|
"""Set up Kuler sky light devices."""
|
||||||
if DOMAIN not in hass.data:
|
|
||||||
hass.data[DOMAIN] = {}
|
|
||||||
if "addresses" not in hass.data[DOMAIN]:
|
|
||||||
hass.data[DOMAIN]["addresses"] = set()
|
|
||||||
|
|
||||||
async def discover(*args):
|
async def discover(*args):
|
||||||
"""Attempt to discover new lights."""
|
"""Attempt to discover new lights."""
|
||||||
@ -52,12 +47,12 @@ async def async_setup_entry(
|
|||||||
new_lights = [
|
new_lights = [
|
||||||
light
|
light
|
||||||
for light in lights
|
for light in lights
|
||||||
if light.address not in hass.data[DOMAIN]["addresses"]
|
if light.address not in hass.data[DOMAIN][DATA_ADDRESSES]
|
||||||
]
|
]
|
||||||
|
|
||||||
new_entities = []
|
new_entities = []
|
||||||
for light in new_lights:
|
for light in new_lights:
|
||||||
hass.data[DOMAIN]["addresses"].add(light.address)
|
hass.data[DOMAIN][DATA_ADDRESSES].add(light.address)
|
||||||
new_entities.append(KulerskyLight(light))
|
new_entities.append(KulerskyLight(light))
|
||||||
|
|
||||||
async_add_entities(new_entities, update_before_add=True)
|
async_add_entities(new_entities, update_before_add=True)
|
||||||
@ -66,12 +61,9 @@ async def async_setup_entry(
|
|||||||
hass.async_create_task(discover())
|
hass.async_create_task(discover())
|
||||||
|
|
||||||
# Perform recurring discovery of new devices
|
# Perform recurring discovery of new devices
|
||||||
async_track_time_interval(hass, discover, DISCOVERY_INTERVAL)
|
hass.data[DOMAIN][DATA_DISCOVERY_SUBSCRIPTION] = async_track_time_interval(
|
||||||
|
hass, discover, DISCOVERY_INTERVAL
|
||||||
|
)
|
||||||
async def async_unload_entry(hass: HomeAssistant, entry: ConfigEntry):
|
|
||||||
"""Cleanup the Kuler sky integration."""
|
|
||||||
hass.data.pop(DOMAIN, None)
|
|
||||||
|
|
||||||
|
|
||||||
class KulerskyLight(LightEntity):
|
class KulerskyLight(LightEntity):
|
||||||
|
@ -4,7 +4,7 @@ import asyncio
|
|||||||
from homeassistant.config_entries import SOURCE_IMPORT, ConfigEntry
|
from homeassistant.config_entries import SOURCE_IMPORT, ConfigEntry
|
||||||
from homeassistant.core import HomeAssistant
|
from homeassistant.core import HomeAssistant
|
||||||
|
|
||||||
from .const import DOMAIN
|
from .const import DATA_ADDRESSES, DATA_DISCOVERY_SUBSCRIPTION, DOMAIN
|
||||||
|
|
||||||
PLATFORMS = ["light"]
|
PLATFORMS = ["light"]
|
||||||
|
|
||||||
@ -22,8 +22,8 @@ async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry):
|
|||||||
"""Set up Zerproc from a config entry."""
|
"""Set up Zerproc from a config entry."""
|
||||||
if DOMAIN not in hass.data:
|
if DOMAIN not in hass.data:
|
||||||
hass.data[DOMAIN] = {}
|
hass.data[DOMAIN] = {}
|
||||||
if "addresses" not in hass.data[DOMAIN]:
|
if DATA_ADDRESSES not in hass.data[DOMAIN]:
|
||||||
hass.data[DOMAIN]["addresses"] = set()
|
hass.data[DOMAIN][DATA_ADDRESSES] = set()
|
||||||
|
|
||||||
for platform in PLATFORMS:
|
for platform in PLATFORMS:
|
||||||
hass.async_create_task(
|
hass.async_create_task(
|
||||||
@ -35,7 +35,13 @@ async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry):
|
|||||||
|
|
||||||
async def async_unload_entry(hass: HomeAssistant, entry: ConfigEntry):
|
async def async_unload_entry(hass: HomeAssistant, entry: ConfigEntry):
|
||||||
"""Unload a config entry."""
|
"""Unload a config entry."""
|
||||||
|
# Stop discovery
|
||||||
|
unregister_discovery = hass.data[DOMAIN].pop(DATA_DISCOVERY_SUBSCRIPTION, None)
|
||||||
|
if unregister_discovery:
|
||||||
|
unregister_discovery()
|
||||||
|
|
||||||
hass.data.pop(DOMAIN, None)
|
hass.data.pop(DOMAIN, None)
|
||||||
|
|
||||||
return all(
|
return all(
|
||||||
await asyncio.gather(
|
await asyncio.gather(
|
||||||
*[
|
*[
|
||||||
|
@ -1,2 +1,5 @@
|
|||||||
"""Constants for the Zerproc integration."""
|
"""Constants for the Zerproc integration."""
|
||||||
DOMAIN = "zerproc"
|
DOMAIN = "zerproc"
|
||||||
|
|
||||||
|
DATA_ADDRESSES = "addresses"
|
||||||
|
DATA_DISCOVERY_SUBSCRIPTION = "discovery_subscription"
|
||||||
|
@ -22,7 +22,7 @@ from homeassistant.helpers.event import async_track_time_interval
|
|||||||
from homeassistant.helpers.typing import HomeAssistantType
|
from homeassistant.helpers.typing import HomeAssistantType
|
||||||
import homeassistant.util.color as color_util
|
import homeassistant.util.color as color_util
|
||||||
|
|
||||||
from .const import DOMAIN
|
from .const import DATA_ADDRESSES, DATA_DISCOVERY_SUBSCRIPTION, DOMAIN
|
||||||
|
|
||||||
_LOGGER = logging.getLogger(__name__)
|
_LOGGER = logging.getLogger(__name__)
|
||||||
|
|
||||||
@ -37,12 +37,14 @@ async def discover_entities(hass: HomeAssistant) -> list[Entity]:
|
|||||||
|
|
||||||
# Filter out already discovered lights
|
# Filter out already discovered lights
|
||||||
new_lights = [
|
new_lights = [
|
||||||
light for light in lights if light.address not in hass.data[DOMAIN]["addresses"]
|
light
|
||||||
|
for light in lights
|
||||||
|
if light.address not in hass.data[DOMAIN][DATA_ADDRESSES]
|
||||||
]
|
]
|
||||||
|
|
||||||
entities = []
|
entities = []
|
||||||
for light in new_lights:
|
for light in new_lights:
|
||||||
hass.data[DOMAIN]["addresses"].add(light.address)
|
hass.data[DOMAIN][DATA_ADDRESSES].add(light.address)
|
||||||
entities.append(ZerprocLight(light))
|
entities.append(ZerprocLight(light))
|
||||||
|
|
||||||
return entities
|
return entities
|
||||||
@ -72,7 +74,9 @@ async def async_setup_entry(
|
|||||||
hass.async_create_task(discover())
|
hass.async_create_task(discover())
|
||||||
|
|
||||||
# Perform recurring discovery of new devices
|
# Perform recurring discovery of new devices
|
||||||
async_track_time_interval(hass, discover, DISCOVERY_INTERVAL)
|
hass.data[DOMAIN][DATA_DISCOVERY_SUBSCRIPTION] = async_track_time_interval(
|
||||||
|
hass, discover, DISCOVERY_INTERVAL
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
class ZerprocLight(LightEntity):
|
class ZerprocLight(LightEntity):
|
||||||
|
@ -5,7 +5,11 @@ import pykulersky
|
|||||||
import pytest
|
import pytest
|
||||||
|
|
||||||
from homeassistant import setup
|
from homeassistant import setup
|
||||||
from homeassistant.components.kulersky.light import DOMAIN
|
from homeassistant.components.kulersky.const import (
|
||||||
|
DATA_ADDRESSES,
|
||||||
|
DATA_DISCOVERY_SUBSCRIPTION,
|
||||||
|
DOMAIN,
|
||||||
|
)
|
||||||
from homeassistant.components.light import (
|
from homeassistant.components.light import (
|
||||||
ATTR_BRIGHTNESS,
|
ATTR_BRIGHTNESS,
|
||||||
ATTR_COLOR_MODE,
|
ATTR_COLOR_MODE,
|
||||||
@ -85,9 +89,13 @@ async def test_init(hass, mock_light):
|
|||||||
|
|
||||||
async def test_remove_entry(hass, mock_light, mock_entry):
|
async def test_remove_entry(hass, mock_light, mock_entry):
|
||||||
"""Test platform setup."""
|
"""Test platform setup."""
|
||||||
|
assert hass.data[DOMAIN][DATA_ADDRESSES] == {"AA:BB:CC:11:22:33"}
|
||||||
|
assert DATA_DISCOVERY_SUBSCRIPTION in hass.data[DOMAIN]
|
||||||
|
|
||||||
await hass.config_entries.async_remove(mock_entry.entry_id)
|
await hass.config_entries.async_remove(mock_entry.entry_id)
|
||||||
|
|
||||||
assert mock_light.disconnect.called
|
assert mock_light.disconnect.called
|
||||||
|
assert DOMAIN not in hass.data
|
||||||
|
|
||||||
|
|
||||||
async def test_remove_entry_exceptions_caught(hass, mock_light, mock_entry):
|
async def test_remove_entry_exceptions_caught(hass, mock_light, mock_entry):
|
||||||
|
@ -17,7 +17,11 @@ from homeassistant.components.light import (
|
|||||||
SUPPORT_BRIGHTNESS,
|
SUPPORT_BRIGHTNESS,
|
||||||
SUPPORT_COLOR,
|
SUPPORT_COLOR,
|
||||||
)
|
)
|
||||||
from homeassistant.components.zerproc.light import DOMAIN
|
from homeassistant.components.zerproc.const import (
|
||||||
|
DATA_ADDRESSES,
|
||||||
|
DATA_DISCOVERY_SUBSCRIPTION,
|
||||||
|
DOMAIN,
|
||||||
|
)
|
||||||
from homeassistant.const import (
|
from homeassistant.const import (
|
||||||
ATTR_ENTITY_ID,
|
ATTR_ENTITY_ID,
|
||||||
ATTR_FRIENDLY_NAME,
|
ATTR_FRIENDLY_NAME,
|
||||||
@ -146,7 +150,8 @@ async def test_discovery_exception(hass, mock_entry):
|
|||||||
|
|
||||||
async def test_remove_entry(hass, mock_light, mock_entry):
|
async def test_remove_entry(hass, mock_light, mock_entry):
|
||||||
"""Test platform setup."""
|
"""Test platform setup."""
|
||||||
assert hass.data[DOMAIN]["addresses"] == {"AA:BB:CC:DD:EE:FF"}
|
assert hass.data[DOMAIN][DATA_ADDRESSES] == {"AA:BB:CC:DD:EE:FF"}
|
||||||
|
assert DATA_DISCOVERY_SUBSCRIPTION in hass.data[DOMAIN]
|
||||||
|
|
||||||
with patch.object(mock_light, "disconnect") as mock_disconnect:
|
with patch.object(mock_light, "disconnect") as mock_disconnect:
|
||||||
await hass.config_entries.async_remove(mock_entry.entry_id)
|
await hass.config_entries.async_remove(mock_entry.entry_id)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user