home-assistant-core/tests/components/counter/test_reproduce_state.py
G Johansson 72c02d4d63
Remove counter configure service (#103204)
* Remove counter configure service after deprecation

* reproduce state
2023-11-04 16:17:51 +01:00

74 lines
2 KiB
Python

"""Test reproduce state for Counter."""
import pytest
from homeassistant.core import HomeAssistant, State
from homeassistant.helpers.state import async_reproduce_state
from tests.common import async_mock_service
async def test_reproducing_states(
hass: HomeAssistant, caplog: pytest.LogCaptureFixture
) -> None:
"""Test reproducing Counter states."""
hass.states.async_set("counter.entity", "5", {})
hass.states.async_set(
"counter.entity_attr",
"8",
{"minimum": 5, "maximum": 15, "step": 3},
)
configure_calls = async_mock_service(hass, "counter", "set_value")
# These calls should do nothing as entities already in desired state
await async_reproduce_state(
hass,
[
State("counter.entity", "5"),
State(
"counter.entity_attr",
"8",
{"minimum": 5, "maximum": 15, "step": 3},
),
],
)
assert len(configure_calls) == 0
# Test invalid state is handled
await async_reproduce_state(hass, [State("counter.entity", "not_supported")])
assert "not_supported" in caplog.text
assert len(configure_calls) == 0
# Make sure correct services are called
await async_reproduce_state(
hass,
[
State("counter.entity", "2"),
State(
"counter.entity_attr",
"7",
{"minimum": 3, "maximum": 21, "step": 5},
),
# Should not raise
State("counter.non_existing", "6"),
],
)
valid_calls = [
{"entity_id": "counter.entity", "value": "2"},
{
"entity_id": "counter.entity_attr",
"value": "7",
"minimum": 3,
"maximum": 21,
"step": 5,
},
]
assert len(configure_calls) == 2
for call in configure_calls:
assert call.domain == "counter"
assert call.data in valid_calls
valid_calls.remove(call.data)