2016-03-09 09:25:50 +00:00
|
|
|
"""The tests for the Switch component."""
|
2016-10-30 21:18:53 +00:00
|
|
|
# pylint: disable=protected-access
|
2014-11-25 08:20:36 +00:00
|
|
|
import unittest
|
|
|
|
|
2019-04-15 05:31:01 +00:00
|
|
|
from homeassistant import core
|
2015-09-13 05:56:49 +00:00
|
|
|
from homeassistant.components import switch
|
2019-12-08 17:50:17 +00:00
|
|
|
from homeassistant.const import CONF_PLATFORM, STATE_OFF, STATE_ON
|
|
|
|
from homeassistant.setup import async_setup_component, setup_component
|
2014-11-25 08:20:36 +00:00
|
|
|
|
2019-04-15 02:07:05 +00:00
|
|
|
from tests.common import get_test_home_assistant, mock_entity_platform
|
2018-09-27 21:13:11 +00:00
|
|
|
from tests.components.switch import common
|
2014-11-25 08:20:36 +00:00
|
|
|
|
|
|
|
|
|
|
|
class TestSwitch(unittest.TestCase):
|
2016-03-09 09:25:50 +00:00
|
|
|
"""Test the switch module."""
|
2014-11-25 08:20:36 +00:00
|
|
|
|
2016-10-30 21:18:53 +00:00
|
|
|
# pylint: disable=invalid-name
|
|
|
|
def setUp(self):
|
2018-08-19 20:29:08 +00:00
|
|
|
"""Set up things to be run when tests are started."""
|
2014-12-01 07:14:08 +00:00
|
|
|
self.hass = get_test_home_assistant()
|
2019-07-31 19:25:30 +00:00
|
|
|
platform = getattr(self.hass.components, "test.switch")
|
2014-12-01 07:14:08 +00:00
|
|
|
platform.init()
|
2014-11-25 08:20:36 +00:00
|
|
|
# Switch 1 is ON, switch 2 is OFF
|
2019-09-15 07:50:17 +00:00
|
|
|
self.switch_1, self.switch_2, self.switch_3 = platform.ENTITIES
|
2014-11-25 08:20:36 +00:00
|
|
|
|
2016-10-30 21:18:53 +00:00
|
|
|
# pylint: disable=invalid-name
|
|
|
|
def tearDown(self):
|
2016-03-09 09:25:50 +00:00
|
|
|
"""Stop everything that was started."""
|
2014-11-29 04:22:08 +00:00
|
|
|
self.hass.stop()
|
2014-11-25 08:20:36 +00:00
|
|
|
|
|
|
|
def test_methods(self):
|
2016-03-09 09:25:50 +00:00
|
|
|
"""Test is_on, turn_on, turn_off methods."""
|
2018-10-24 10:10:05 +00:00
|
|
|
assert setup_component(
|
2019-07-31 19:25:30 +00:00
|
|
|
self.hass, switch.DOMAIN, {switch.DOMAIN: {CONF_PLATFORM: "test"}}
|
2018-10-24 10:10:05 +00:00
|
|
|
)
|
|
|
|
assert switch.is_on(self.hass)
|
2019-07-31 19:25:30 +00:00
|
|
|
assert STATE_ON == self.hass.states.get(switch.ENTITY_ID_ALL_SWITCHES).state
|
2018-10-24 10:10:05 +00:00
|
|
|
assert switch.is_on(self.hass, self.switch_1.entity_id)
|
|
|
|
assert not switch.is_on(self.hass, self.switch_2.entity_id)
|
|
|
|
assert not switch.is_on(self.hass, self.switch_3.entity_id)
|
2014-11-25 08:20:36 +00:00
|
|
|
|
2018-09-27 21:13:11 +00:00
|
|
|
common.turn_off(self.hass, self.switch_1.entity_id)
|
|
|
|
common.turn_on(self.hass, self.switch_2.entity_id)
|
2014-11-25 08:20:36 +00:00
|
|
|
|
2016-09-13 02:16:14 +00:00
|
|
|
self.hass.block_till_done()
|
2014-11-25 08:20:36 +00:00
|
|
|
|
2018-10-24 10:10:05 +00:00
|
|
|
assert switch.is_on(self.hass)
|
|
|
|
assert not switch.is_on(self.hass, self.switch_1.entity_id)
|
|
|
|
assert switch.is_on(self.hass, self.switch_2.entity_id)
|
2014-11-25 08:20:36 +00:00
|
|
|
|
|
|
|
# Turn all off
|
2018-09-27 21:13:11 +00:00
|
|
|
common.turn_off(self.hass)
|
2014-11-25 08:20:36 +00:00
|
|
|
|
2016-09-13 02:16:14 +00:00
|
|
|
self.hass.block_till_done()
|
2014-11-25 08:20:36 +00:00
|
|
|
|
2018-10-24 10:10:05 +00:00
|
|
|
assert not switch.is_on(self.hass)
|
2019-07-31 19:25:30 +00:00
|
|
|
assert STATE_OFF == self.hass.states.get(switch.ENTITY_ID_ALL_SWITCHES).state
|
2018-10-24 10:10:05 +00:00
|
|
|
assert not switch.is_on(self.hass, self.switch_1.entity_id)
|
|
|
|
assert not switch.is_on(self.hass, self.switch_2.entity_id)
|
|
|
|
assert not switch.is_on(self.hass, self.switch_3.entity_id)
|
2014-11-25 08:20:36 +00:00
|
|
|
|
|
|
|
# Turn all on
|
2018-09-27 21:13:11 +00:00
|
|
|
common.turn_on(self.hass)
|
2014-11-25 08:20:36 +00:00
|
|
|
|
2016-09-13 02:16:14 +00:00
|
|
|
self.hass.block_till_done()
|
2014-11-25 08:20:36 +00:00
|
|
|
|
2018-10-24 10:10:05 +00:00
|
|
|
assert switch.is_on(self.hass)
|
2019-07-31 19:25:30 +00:00
|
|
|
assert STATE_ON == self.hass.states.get(switch.ENTITY_ID_ALL_SWITCHES).state
|
2018-10-24 10:10:05 +00:00
|
|
|
assert switch.is_on(self.hass, self.switch_1.entity_id)
|
|
|
|
assert switch.is_on(self.hass, self.switch_2.entity_id)
|
|
|
|
assert switch.is_on(self.hass, self.switch_3.entity_id)
|
2014-11-25 08:20:36 +00:00
|
|
|
|
2015-01-09 08:07:58 +00:00
|
|
|
def test_setup_two_platforms(self):
|
2016-03-09 09:25:50 +00:00
|
|
|
"""Test with bad configuration."""
|
2014-11-25 08:20:36 +00:00
|
|
|
# Test if switch component returns 0 switches
|
2019-07-31 19:25:30 +00:00
|
|
|
test_platform = getattr(self.hass.components, "test.switch")
|
2014-12-07 07:57:02 +00:00
|
|
|
test_platform.init(True)
|
2014-11-25 08:20:36 +00:00
|
|
|
|
2019-07-31 19:25:30 +00:00
|
|
|
mock_entity_platform(self.hass, "switch.test2", test_platform)
|
2014-12-07 07:57:02 +00:00
|
|
|
test_platform.init(False)
|
|
|
|
|
2018-10-24 10:10:05 +00:00
|
|
|
assert setup_component(
|
2019-07-31 19:25:30 +00:00
|
|
|
self.hass,
|
|
|
|
switch.DOMAIN,
|
|
|
|
{
|
|
|
|
switch.DOMAIN: {CONF_PLATFORM: "test"},
|
|
|
|
"{} 2".format(switch.DOMAIN): {CONF_PLATFORM: "test2"},
|
|
|
|
},
|
2018-10-24 10:10:05 +00:00
|
|
|
)
|
2018-07-29 00:53:37 +00:00
|
|
|
|
|
|
|
|
2018-11-21 11:26:08 +00:00
|
|
|
async def test_switch_context(hass, hass_admin_user):
|
2018-07-29 00:53:37 +00:00
|
|
|
"""Test that switch context works."""
|
2019-07-31 19:25:30 +00:00
|
|
|
assert await async_setup_component(hass, "switch", {"switch": {"platform": "test"}})
|
2018-07-29 00:53:37 +00:00
|
|
|
|
2019-04-11 08:26:36 +00:00
|
|
|
await hass.async_block_till_done()
|
|
|
|
|
2019-07-31 19:25:30 +00:00
|
|
|
state = hass.states.get("switch.ac")
|
2018-07-29 00:53:37 +00:00
|
|
|
assert state is not None
|
|
|
|
|
2019-07-31 19:25:30 +00:00
|
|
|
await hass.services.async_call(
|
|
|
|
"switch",
|
|
|
|
"toggle",
|
|
|
|
{"entity_id": state.entity_id},
|
|
|
|
True,
|
|
|
|
core.Context(user_id=hass_admin_user.id),
|
|
|
|
)
|
2018-07-29 00:53:37 +00:00
|
|
|
|
2019-07-31 19:25:30 +00:00
|
|
|
state2 = hass.states.get("switch.ac")
|
2018-07-29 00:53:37 +00:00
|
|
|
assert state2 is not None
|
|
|
|
assert state.state != state2.state
|
2018-11-21 11:26:08 +00:00
|
|
|
assert state2.context.user_id == hass_admin_user.id
|