2014-11-25 08:20:36 +00:00
|
|
|
"""
|
2015-01-09 04:05:12 +00:00
|
|
|
tests.test_component_switch
|
2014-12-01 07:14:08 +00:00
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
2014-11-25 08:20:36 +00:00
|
|
|
|
2014-11-26 03:16:42 +00:00
|
|
|
Tests switch component.
|
2014-11-25 08:20:36 +00:00
|
|
|
"""
|
|
|
|
# pylint: disable=too-many-public-methods,protected-access
|
|
|
|
import unittest
|
|
|
|
|
2015-09-13 05:56:49 +00:00
|
|
|
from homeassistant import loader
|
|
|
|
from homeassistant.components import switch
|
2014-12-07 07:57:02 +00:00
|
|
|
from homeassistant.const import STATE_ON, STATE_OFF, CONF_PLATFORM
|
2014-11-25 08:20:36 +00:00
|
|
|
|
2015-08-04 16:15:22 +00:00
|
|
|
from tests.common import get_test_home_assistant
|
2014-11-25 08:20:36 +00:00
|
|
|
|
|
|
|
|
|
|
|
class TestSwitch(unittest.TestCase):
|
|
|
|
""" Test the switch module. """
|
|
|
|
|
|
|
|
def setUp(self): # pylint: disable=invalid-name
|
2014-12-01 07:14:08 +00:00
|
|
|
self.hass = get_test_home_assistant()
|
2014-11-25 08:20:36 +00:00
|
|
|
|
2014-12-07 07:57:02 +00:00
|
|
|
platform = loader.get_component('switch.test')
|
2014-12-01 07:14:08 +00:00
|
|
|
|
|
|
|
platform.init()
|
2014-11-25 08:20:36 +00:00
|
|
|
self.assertTrue(switch.setup(
|
2014-12-07 07:57:02 +00:00
|
|
|
self.hass, {switch.DOMAIN: {CONF_PLATFORM: 'test'}}
|
2014-11-25 08:20:36 +00:00
|
|
|
))
|
|
|
|
|
|
|
|
# Switch 1 is ON, switch 2 is OFF
|
2014-11-25 08:33:02 +00:00
|
|
|
self.switch_1, self.switch_2, self.switch_3 = \
|
2015-03-01 09:35:58 +00:00
|
|
|
platform.DEVICES
|
2014-11-25 08:20:36 +00:00
|
|
|
|
|
|
|
def tearDown(self): # pylint: disable=invalid-name
|
|
|
|
""" Stop down stuff we started. """
|
2014-11-29 04:22:08 +00:00
|
|
|
self.hass.stop()
|
2014-11-25 08:20:36 +00:00
|
|
|
|
|
|
|
def test_methods(self):
|
|
|
|
""" Test is_on, turn_on, turn_off methods. """
|
|
|
|
self.assertTrue(switch.is_on(self.hass))
|
|
|
|
self.assertEqual(
|
2014-12-01 07:14:08 +00:00
|
|
|
STATE_ON,
|
2014-11-25 08:20:36 +00:00
|
|
|
self.hass.states.get(switch.ENTITY_ID_ALL_SWITCHES).state)
|
|
|
|
self.assertTrue(switch.is_on(self.hass, self.switch_1.entity_id))
|
|
|
|
self.assertFalse(switch.is_on(self.hass, self.switch_2.entity_id))
|
2014-11-25 08:33:02 +00:00
|
|
|
self.assertFalse(switch.is_on(self.hass, self.switch_3.entity_id))
|
2014-11-25 08:20:36 +00:00
|
|
|
|
|
|
|
switch.turn_off(self.hass, self.switch_1.entity_id)
|
|
|
|
switch.turn_on(self.hass, self.switch_2.entity_id)
|
|
|
|
|
2014-12-17 05:46:02 +00:00
|
|
|
self.hass.pool.block_till_done()
|
2014-11-25 08:20:36 +00:00
|
|
|
|
|
|
|
self.assertTrue(switch.is_on(self.hass))
|
|
|
|
self.assertFalse(switch.is_on(self.hass, self.switch_1.entity_id))
|
|
|
|
self.assertTrue(switch.is_on(self.hass, self.switch_2.entity_id))
|
|
|
|
|
|
|
|
# Turn all off
|
|
|
|
switch.turn_off(self.hass)
|
|
|
|
|
2014-12-17 05:46:02 +00:00
|
|
|
self.hass.pool.block_till_done()
|
2014-11-25 08:20:36 +00:00
|
|
|
|
|
|
|
self.assertFalse(switch.is_on(self.hass))
|
|
|
|
self.assertEqual(
|
2014-12-01 07:14:08 +00:00
|
|
|
STATE_OFF,
|
2014-11-25 08:20:36 +00:00
|
|
|
self.hass.states.get(switch.ENTITY_ID_ALL_SWITCHES).state)
|
|
|
|
self.assertFalse(switch.is_on(self.hass, self.switch_1.entity_id))
|
|
|
|
self.assertFalse(switch.is_on(self.hass, self.switch_2.entity_id))
|
2014-11-25 08:33:02 +00:00
|
|
|
self.assertFalse(switch.is_on(self.hass, self.switch_3.entity_id))
|
2014-11-25 08:20:36 +00:00
|
|
|
|
|
|
|
# Turn all on
|
|
|
|
switch.turn_on(self.hass)
|
|
|
|
|
2014-12-17 05:46:02 +00:00
|
|
|
self.hass.pool.block_till_done()
|
2014-11-25 08:20:36 +00:00
|
|
|
|
|
|
|
self.assertTrue(switch.is_on(self.hass))
|
|
|
|
self.assertEqual(
|
2014-12-01 07:14:08 +00:00
|
|
|
STATE_ON,
|
2014-11-25 08:20:36 +00:00
|
|
|
self.hass.states.get(switch.ENTITY_ID_ALL_SWITCHES).state)
|
|
|
|
self.assertTrue(switch.is_on(self.hass, self.switch_1.entity_id))
|
|
|
|
self.assertTrue(switch.is_on(self.hass, self.switch_2.entity_id))
|
2014-11-25 08:33:02 +00:00
|
|
|
self.assertTrue(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):
|
|
|
|
""" Test with bad config. """
|
2014-11-25 08:20:36 +00:00
|
|
|
# Test if switch component returns 0 switches
|
2014-12-07 07:57:02 +00:00
|
|
|
test_platform = loader.get_component('switch.test')
|
|
|
|
test_platform.init(True)
|
2014-11-25 08:20:36 +00:00
|
|
|
|
2014-12-07 07:57:02 +00:00
|
|
|
loader.set_component('switch.test2', test_platform)
|
|
|
|
test_platform.init(False)
|
|
|
|
|
|
|
|
self.assertTrue(switch.setup(
|
|
|
|
self.hass, {
|
|
|
|
switch.DOMAIN: {CONF_PLATFORM: 'test'},
|
|
|
|
'{} 2'.format(switch.DOMAIN): {CONF_PLATFORM: 'test2'},
|
|
|
|
}
|
2014-11-25 08:20:36 +00:00
|
|
|
))
|