2020-07-17 18:33:52 +00:00
|
|
|
"""The tests for Humidifier device conditions."""
|
|
|
|
import pytest
|
|
|
|
import voluptuous_serialize
|
|
|
|
|
|
|
|
import homeassistant.components.automation as automation
|
2021-12-20 21:18:53 +00:00
|
|
|
from homeassistant.components.device_automation import DeviceAutomationType
|
2020-07-17 18:33:52 +00:00
|
|
|
from homeassistant.components.humidifier import DOMAIN, const, device_condition
|
2023-02-09 19:15:37 +00:00
|
|
|
from homeassistant.const import ATTR_MODE, STATE_OFF, STATE_ON, EntityCategory
|
2023-02-08 19:28:44 +00:00
|
|
|
from homeassistant.helpers import config_validation as cv, device_registry as dr
|
2022-04-20 19:41:59 +00:00
|
|
|
from homeassistant.helpers.entity_registry import RegistryEntryHider
|
2020-07-17 18:33:52 +00:00
|
|
|
from homeassistant.setup import async_setup_component
|
|
|
|
|
|
|
|
from tests.common import (
|
|
|
|
MockConfigEntry,
|
|
|
|
assert_lists_same,
|
|
|
|
async_get_device_automations,
|
|
|
|
async_mock_service,
|
|
|
|
)
|
2021-03-02 08:02:04 +00:00
|
|
|
from tests.components.blueprint.conftest import stub_blueprint_populate # noqa: F401
|
2020-07-17 18:33:52 +00:00
|
|
|
|
|
|
|
|
|
|
|
@pytest.fixture
|
|
|
|
def calls(hass):
|
|
|
|
"""Track calls to a mock service."""
|
|
|
|
return async_mock_service(hass, "test", "automation")
|
|
|
|
|
|
|
|
|
2021-06-14 12:12:42 +00:00
|
|
|
@pytest.mark.parametrize(
|
|
|
|
"set_state,features_reg,features_state,expected_condition_types",
|
|
|
|
[
|
|
|
|
(False, 0, 0, []),
|
2022-04-01 18:10:52 +00:00
|
|
|
(False, const.HumidifierEntityFeature.MODES, 0, ["is_mode"]),
|
2021-06-14 12:12:42 +00:00
|
|
|
(True, 0, 0, []),
|
2022-04-01 18:10:52 +00:00
|
|
|
(True, 0, const.HumidifierEntityFeature.MODES, ["is_mode"]),
|
2021-06-14 12:12:42 +00:00
|
|
|
],
|
|
|
|
)
|
|
|
|
async def test_get_conditions(
|
|
|
|
hass,
|
2023-02-08 19:28:44 +00:00
|
|
|
device_registry,
|
|
|
|
entity_registry,
|
2021-06-14 12:12:42 +00:00
|
|
|
set_state,
|
|
|
|
features_reg,
|
|
|
|
features_state,
|
|
|
|
expected_condition_types,
|
|
|
|
):
|
2020-07-17 18:33:52 +00:00
|
|
|
"""Test we get the expected conditions from a humidifier."""
|
|
|
|
config_entry = MockConfigEntry(domain="test", data={})
|
|
|
|
config_entry.add_to_hass(hass)
|
2023-02-08 19:28:44 +00:00
|
|
|
device_entry = device_registry.async_get_or_create(
|
2020-07-17 18:33:52 +00:00
|
|
|
config_entry_id=config_entry.entry_id,
|
2023-02-08 19:28:44 +00:00
|
|
|
connections={(dr.CONNECTION_NETWORK_MAC, "12:34:56:AB:CD:EF")},
|
2020-07-17 18:33:52 +00:00
|
|
|
)
|
2023-02-08 19:28:44 +00:00
|
|
|
entity_registry.async_get_or_create(
|
2021-06-14 12:12:42 +00:00
|
|
|
DOMAIN,
|
|
|
|
"test",
|
|
|
|
"5678",
|
|
|
|
device_id=device_entry.id,
|
|
|
|
supported_features=features_reg,
|
2020-07-17 18:33:52 +00:00
|
|
|
)
|
2021-06-14 12:12:42 +00:00
|
|
|
if set_state:
|
|
|
|
hass.states.async_set(
|
|
|
|
f"{DOMAIN}.test_5678", "attributes", {"supported_features": features_state}
|
|
|
|
)
|
|
|
|
expected_conditions = []
|
|
|
|
basic_condition_types = ["is_on", "is_off"]
|
|
|
|
expected_conditions += [
|
2020-07-17 18:33:52 +00:00
|
|
|
{
|
|
|
|
"condition": "device",
|
|
|
|
"domain": DOMAIN,
|
2021-06-14 12:12:42 +00:00
|
|
|
"type": condition,
|
2020-07-17 18:33:52 +00:00
|
|
|
"device_id": device_entry.id,
|
|
|
|
"entity_id": f"{DOMAIN}.test_5678",
|
2022-04-20 19:41:59 +00:00
|
|
|
"metadata": {"secondary": False},
|
2021-06-14 12:12:42 +00:00
|
|
|
}
|
|
|
|
for condition in basic_condition_types
|
2020-07-17 18:33:52 +00:00
|
|
|
]
|
2021-06-14 12:12:42 +00:00
|
|
|
expected_conditions += [
|
2020-07-17 18:33:52 +00:00
|
|
|
{
|
|
|
|
"condition": "device",
|
|
|
|
"domain": DOMAIN,
|
2021-06-14 12:12:42 +00:00
|
|
|
"type": condition,
|
2020-07-17 18:33:52 +00:00
|
|
|
"device_id": device_entry.id,
|
|
|
|
"entity_id": f"{DOMAIN}.test_5678",
|
2022-04-20 19:41:59 +00:00
|
|
|
"metadata": {"secondary": False},
|
2021-06-14 12:12:42 +00:00
|
|
|
}
|
|
|
|
for condition in expected_condition_types
|
2020-07-17 18:33:52 +00:00
|
|
|
]
|
2021-12-20 21:18:53 +00:00
|
|
|
conditions = await async_get_device_automations(
|
|
|
|
hass, DeviceAutomationType.CONDITION, device_entry.id
|
|
|
|
)
|
2020-07-17 18:33:52 +00:00
|
|
|
assert_lists_same(conditions, expected_conditions)
|
|
|
|
|
|
|
|
|
2022-04-20 19:41:59 +00:00
|
|
|
@pytest.mark.parametrize(
|
|
|
|
"hidden_by,entity_category",
|
|
|
|
(
|
|
|
|
(RegistryEntryHider.INTEGRATION, None),
|
|
|
|
(RegistryEntryHider.USER, None),
|
|
|
|
(None, EntityCategory.CONFIG),
|
|
|
|
(None, EntityCategory.DIAGNOSTIC),
|
|
|
|
),
|
|
|
|
)
|
|
|
|
async def test_get_conditions_hidden_auxiliary(
|
|
|
|
hass,
|
2023-02-08 19:28:44 +00:00
|
|
|
device_registry,
|
|
|
|
entity_registry,
|
2022-04-20 19:41:59 +00:00
|
|
|
hidden_by,
|
|
|
|
entity_category,
|
|
|
|
):
|
|
|
|
"""Test we get the expected conditions from a hidden or auxiliary entity."""
|
|
|
|
config_entry = MockConfigEntry(domain="test", data={})
|
|
|
|
config_entry.add_to_hass(hass)
|
2023-02-08 19:28:44 +00:00
|
|
|
device_entry = device_registry.async_get_or_create(
|
2022-04-20 19:41:59 +00:00
|
|
|
config_entry_id=config_entry.entry_id,
|
2023-02-08 19:28:44 +00:00
|
|
|
connections={(dr.CONNECTION_NETWORK_MAC, "12:34:56:AB:CD:EF")},
|
2022-04-20 19:41:59 +00:00
|
|
|
)
|
2023-02-08 19:28:44 +00:00
|
|
|
entity_registry.async_get_or_create(
|
2022-04-20 19:41:59 +00:00
|
|
|
DOMAIN,
|
|
|
|
"test",
|
|
|
|
"5678",
|
|
|
|
device_id=device_entry.id,
|
|
|
|
entity_category=entity_category,
|
|
|
|
hidden_by=hidden_by,
|
|
|
|
)
|
|
|
|
expected_conditions = [
|
|
|
|
{
|
|
|
|
"condition": "device",
|
|
|
|
"domain": DOMAIN,
|
|
|
|
"type": condition,
|
|
|
|
"device_id": device_entry.id,
|
|
|
|
"entity_id": f"{DOMAIN}.test_5678",
|
|
|
|
"metadata": {"secondary": True},
|
|
|
|
}
|
|
|
|
for condition in ["is_off", "is_on"]
|
|
|
|
]
|
|
|
|
conditions = await async_get_device_automations(
|
|
|
|
hass, DeviceAutomationType.CONDITION, device_entry.id
|
|
|
|
)
|
|
|
|
assert_lists_same(conditions, expected_conditions)
|
|
|
|
|
|
|
|
|
2020-07-17 18:33:52 +00:00
|
|
|
async def test_if_state(hass, calls):
|
|
|
|
"""Test for turn_on and turn_off conditions."""
|
2021-03-02 11:52:00 +00:00
|
|
|
hass.states.async_set("humidifier.entity", STATE_ON, {ATTR_MODE: const.MODE_AWAY})
|
2020-07-17 18:33:52 +00:00
|
|
|
|
|
|
|
assert await async_setup_component(
|
|
|
|
hass,
|
|
|
|
automation.DOMAIN,
|
|
|
|
{
|
|
|
|
automation.DOMAIN: [
|
|
|
|
{
|
|
|
|
"trigger": {"platform": "event", "event_type": "test_event1"},
|
|
|
|
"condition": [
|
|
|
|
{
|
|
|
|
"condition": "device",
|
|
|
|
"domain": DOMAIN,
|
|
|
|
"device_id": "",
|
|
|
|
"entity_id": "humidifier.entity",
|
|
|
|
"type": "is_on",
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"action": {
|
|
|
|
"service": "test.automation",
|
|
|
|
"data_template": {
|
|
|
|
"some": "is_on {{ trigger.%s }}"
|
|
|
|
% "}} - {{ trigger.".join(("platform", "event.event_type"))
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"trigger": {"platform": "event", "event_type": "test_event2"},
|
|
|
|
"condition": [
|
|
|
|
{
|
|
|
|
"condition": "device",
|
|
|
|
"domain": DOMAIN,
|
|
|
|
"device_id": "",
|
|
|
|
"entity_id": "humidifier.entity",
|
|
|
|
"type": "is_off",
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"action": {
|
|
|
|
"service": "test.automation",
|
|
|
|
"data_template": {
|
|
|
|
"some": "is_off {{ trigger.%s }}"
|
|
|
|
% "}} - {{ trigger.".join(("platform", "event.event_type"))
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"trigger": {"platform": "event", "event_type": "test_event3"},
|
|
|
|
"condition": [
|
|
|
|
{
|
|
|
|
"condition": "device",
|
|
|
|
"domain": DOMAIN,
|
|
|
|
"device_id": "",
|
|
|
|
"entity_id": "humidifier.entity",
|
|
|
|
"type": "is_mode",
|
|
|
|
"mode": "away",
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"action": {
|
|
|
|
"service": "test.automation",
|
|
|
|
"data_template": {
|
|
|
|
"some": "is_mode - {{ trigger.platform }} - {{ trigger.event.event_type }}"
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
]
|
|
|
|
},
|
|
|
|
)
|
|
|
|
await hass.async_block_till_done()
|
|
|
|
assert hass.states.get("humidifier.entity").state == STATE_ON
|
|
|
|
assert len(calls) == 0
|
|
|
|
|
|
|
|
hass.bus.async_fire("test_event1")
|
|
|
|
hass.bus.async_fire("test_event2")
|
|
|
|
await hass.async_block_till_done()
|
|
|
|
assert len(calls) == 1
|
|
|
|
assert calls[0].data["some"] == "is_on event - test_event1"
|
|
|
|
|
|
|
|
hass.states.async_set("humidifier.entity", STATE_OFF)
|
|
|
|
hass.bus.async_fire("test_event1")
|
|
|
|
hass.bus.async_fire("test_event2")
|
|
|
|
await hass.async_block_till_done()
|
|
|
|
assert len(calls) == 2
|
|
|
|
assert calls[1].data["some"] == "is_off event - test_event2"
|
|
|
|
|
2021-03-02 11:52:00 +00:00
|
|
|
hass.states.async_set("humidifier.entity", STATE_ON, {ATTR_MODE: const.MODE_AWAY})
|
2020-07-17 18:33:52 +00:00
|
|
|
|
|
|
|
hass.bus.async_fire("test_event3")
|
|
|
|
await hass.async_block_till_done()
|
|
|
|
|
|
|
|
assert len(calls) == 3
|
|
|
|
assert calls[2].data["some"] == "is_mode - event - test_event3"
|
|
|
|
|
2021-03-02 11:52:00 +00:00
|
|
|
hass.states.async_set("humidifier.entity", STATE_ON, {ATTR_MODE: const.MODE_HOME})
|
2020-07-17 18:33:52 +00:00
|
|
|
|
|
|
|
# Should not fire
|
|
|
|
hass.bus.async_fire("test_event3")
|
|
|
|
await hass.async_block_till_done()
|
|
|
|
assert len(calls) == 3
|
|
|
|
|
|
|
|
|
2021-06-14 12:12:42 +00:00
|
|
|
@pytest.mark.parametrize(
|
|
|
|
"set_state,capabilities_reg,capabilities_state,condition,expected_capabilities",
|
|
|
|
[
|
|
|
|
(
|
|
|
|
False,
|
|
|
|
{},
|
|
|
|
{},
|
|
|
|
"is_mode",
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"name": "mode",
|
|
|
|
"options": [],
|
|
|
|
"required": True,
|
|
|
|
"type": "select",
|
|
|
|
}
|
|
|
|
],
|
|
|
|
),
|
|
|
|
(
|
|
|
|
False,
|
|
|
|
{const.ATTR_AVAILABLE_MODES: [const.MODE_HOME, const.MODE_AWAY]},
|
|
|
|
{},
|
|
|
|
"is_mode",
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"name": "mode",
|
|
|
|
"options": [("home", "home"), ("away", "away")],
|
|
|
|
"required": True,
|
|
|
|
"type": "select",
|
|
|
|
}
|
|
|
|
],
|
|
|
|
),
|
|
|
|
(
|
|
|
|
False,
|
|
|
|
{},
|
|
|
|
{},
|
|
|
|
"is_off",
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"name": "for",
|
|
|
|
"optional": True,
|
|
|
|
"type": "positive_time_period_dict",
|
|
|
|
}
|
|
|
|
],
|
|
|
|
),
|
|
|
|
(
|
|
|
|
False,
|
|
|
|
{},
|
|
|
|
{},
|
|
|
|
"is_on",
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"name": "for",
|
|
|
|
"optional": True,
|
|
|
|
"type": "positive_time_period_dict",
|
|
|
|
}
|
|
|
|
],
|
|
|
|
),
|
|
|
|
(
|
|
|
|
True,
|
|
|
|
{},
|
|
|
|
{},
|
|
|
|
"is_mode",
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"name": "mode",
|
|
|
|
"options": [],
|
|
|
|
"required": True,
|
|
|
|
"type": "select",
|
|
|
|
}
|
|
|
|
],
|
|
|
|
),
|
|
|
|
(
|
|
|
|
True,
|
|
|
|
{},
|
|
|
|
{const.ATTR_AVAILABLE_MODES: [const.MODE_HOME, const.MODE_AWAY]},
|
|
|
|
"is_mode",
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"name": "mode",
|
|
|
|
"options": [("home", "home"), ("away", "away")],
|
|
|
|
"required": True,
|
|
|
|
"type": "select",
|
|
|
|
}
|
|
|
|
],
|
|
|
|
),
|
|
|
|
(
|
|
|
|
True,
|
|
|
|
{},
|
|
|
|
{},
|
|
|
|
"is_off",
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"name": "for",
|
|
|
|
"optional": True,
|
|
|
|
"type": "positive_time_period_dict",
|
|
|
|
}
|
|
|
|
],
|
|
|
|
),
|
|
|
|
(
|
|
|
|
True,
|
|
|
|
{},
|
|
|
|
{},
|
|
|
|
"is_on",
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"name": "for",
|
|
|
|
"optional": True,
|
|
|
|
"type": "positive_time_period_dict",
|
|
|
|
}
|
|
|
|
],
|
|
|
|
),
|
|
|
|
],
|
|
|
|
)
|
|
|
|
async def test_capabilities(
|
|
|
|
hass,
|
2023-02-08 19:28:44 +00:00
|
|
|
device_registry,
|
|
|
|
entity_registry,
|
2021-06-14 12:12:42 +00:00
|
|
|
set_state,
|
|
|
|
capabilities_reg,
|
|
|
|
capabilities_state,
|
|
|
|
condition,
|
|
|
|
expected_capabilities,
|
|
|
|
):
|
|
|
|
"""Test getting capabilities."""
|
|
|
|
config_entry = MockConfigEntry(domain="test", data={})
|
|
|
|
config_entry.add_to_hass(hass)
|
2023-02-08 19:28:44 +00:00
|
|
|
device_entry = device_registry.async_get_or_create(
|
2021-06-14 12:12:42 +00:00
|
|
|
config_entry_id=config_entry.entry_id,
|
2023-02-08 19:28:44 +00:00
|
|
|
connections={(dr.CONNECTION_NETWORK_MAC, "12:34:56:AB:CD:EF")},
|
2021-06-14 12:12:42 +00:00
|
|
|
)
|
2023-02-08 19:28:44 +00:00
|
|
|
entity_registry.async_get_or_create(
|
2021-06-14 12:12:42 +00:00
|
|
|
DOMAIN,
|
|
|
|
"test",
|
|
|
|
"5678",
|
|
|
|
device_id=device_entry.id,
|
|
|
|
capabilities=capabilities_reg,
|
2020-07-17 18:33:52 +00:00
|
|
|
)
|
2021-06-14 12:12:42 +00:00
|
|
|
if set_state:
|
|
|
|
hass.states.async_set(
|
|
|
|
f"{DOMAIN}.test_5678",
|
|
|
|
STATE_ON,
|
|
|
|
capabilities_state,
|
|
|
|
)
|
2020-07-17 18:33:52 +00:00
|
|
|
|
|
|
|
capabilities = await device_condition.async_get_condition_capabilities(
|
|
|
|
hass,
|
|
|
|
{
|
|
|
|
"domain": DOMAIN,
|
2021-06-14 12:12:42 +00:00
|
|
|
"device_id": "abcdefgh",
|
|
|
|
"entity_id": f"{DOMAIN}.test_5678",
|
|
|
|
"type": condition,
|
2020-07-17 18:33:52 +00:00
|
|
|
},
|
|
|
|
)
|
|
|
|
|
|
|
|
assert capabilities and "extra_fields" in capabilities
|
|
|
|
|
2021-06-14 12:12:42 +00:00
|
|
|
assert (
|
|
|
|
voluptuous_serialize.convert(
|
|
|
|
capabilities["extra_fields"], custom_serializer=cv.custom_serializer
|
|
|
|
)
|
|
|
|
== expected_capabilities
|
|
|
|
)
|
|
|
|
|
2020-07-17 18:33:52 +00:00
|
|
|
|
2021-06-14 12:12:42 +00:00
|
|
|
@pytest.mark.parametrize(
|
|
|
|
"condition,capability_name,extra",
|
|
|
|
[
|
|
|
|
("is_mode", "mode", {"type": "select", "options": []}),
|
|
|
|
],
|
|
|
|
)
|
2023-02-08 19:28:44 +00:00
|
|
|
async def test_capabilities_missing_entity(hass, condition, capability_name, extra):
|
2021-06-14 12:12:42 +00:00
|
|
|
"""Test getting capabilities."""
|
|
|
|
config_entry = MockConfigEntry(domain="test", data={})
|
|
|
|
config_entry.add_to_hass(hass)
|
2020-07-17 18:33:52 +00:00
|
|
|
|
|
|
|
capabilities = await device_condition.async_get_condition_capabilities(
|
|
|
|
hass,
|
|
|
|
{
|
|
|
|
"domain": DOMAIN,
|
2021-06-14 12:12:42 +00:00
|
|
|
"device_id": "abcdefgh",
|
|
|
|
"entity_id": f"{DOMAIN}.test_5678",
|
|
|
|
"type": condition,
|
2020-07-17 18:33:52 +00:00
|
|
|
},
|
|
|
|
)
|
|
|
|
|
2021-06-14 12:12:42 +00:00
|
|
|
expected_capabilities = [
|
|
|
|
{
|
|
|
|
"name": capability_name,
|
|
|
|
"required": True,
|
|
|
|
**extra,
|
|
|
|
}
|
|
|
|
]
|
2020-07-17 18:33:52 +00:00
|
|
|
|
2021-06-14 12:12:42 +00:00
|
|
|
assert capabilities and "extra_fields" in capabilities
|
2020-07-17 18:33:52 +00:00
|
|
|
|
2021-06-14 12:12:42 +00:00
|
|
|
assert (
|
|
|
|
voluptuous_serialize.convert(
|
|
|
|
capabilities["extra_fields"], custom_serializer=cv.custom_serializer
|
2020-07-17 18:33:52 +00:00
|
|
|
)
|
2021-06-14 12:12:42 +00:00
|
|
|
== expected_capabilities
|
|
|
|
)
|