Add initial state to Flux Switch (#27089)

* flux restore state

* Add config options

* Add tests

* Add more tests

* just restores state
This commit is contained in:
Santobert 2019-10-05 21:57:12 +02:00 committed by Paulus Schoutsen
parent 5ae497bfdc
commit 601d15701b
2 changed files with 57 additions and 1 deletions

View file

@ -10,12 +10,14 @@ from homeassistant.const import (
SERVICE_TURN_ON,
SUN_EVENT_SUNRISE,
)
from homeassistant.core import State
import homeassistant.util.dt as dt_util
from tests.common import (
assert_setup_component,
async_fire_time_changed,
async_mock_service,
mock_restore_cache,
)
from tests.components.light import common as common_light
from tests.components.switch import common
@ -35,6 +37,52 @@ async def test_valid_config(hass):
},
)
state = hass.states.get("switch.flux")
assert state
assert state.state == "off"
async def test_restore_state_last_on(hass):
"""Test restoring state when the last state is on."""
mock_restore_cache(hass, [State("switch.flux", "on")])
assert await async_setup_component(
hass,
"switch",
{
"switch": {
"platform": "flux",
"name": "flux",
"lights": ["light.desk", "light.lamp"],
}
},
)
state = hass.states.get("switch.flux")
assert state
assert state.state == "on"
async def test_restore_state_last_off(hass):
"""Test restoring state when the last state is off."""
mock_restore_cache(hass, [State("switch.flux", "off")])
assert await async_setup_component(
hass,
"switch",
{
"switch": {
"platform": "flux",
"name": "flux",
"lights": ["light.desk", "light.lamp"],
}
},
)
state = hass.states.get("switch.flux")
assert state
assert state.state == "off"
async def test_valid_config_with_info(hass):
"""Test configuration."""