core/tests/components/switch/test_init.py

115 lines
3.9 KiB
Python
Raw Normal View History

2016-03-09 09:25:50 +00:00
"""The tests for the Switch component."""
# pylint: disable=protected-access
2014-11-25 08:20:36 +00:00
import unittest
from homeassistant.setup import setup_component, async_setup_component
from homeassistant import core
2015-09-13 05:56:49 +00:00
from homeassistant.components import switch
from homeassistant.const import STATE_ON, STATE_OFF, CONF_PLATFORM
2014-11-25 08:20:36 +00:00
from tests.common import get_test_home_assistant, mock_entity_platform
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
# 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."""
self.hass = get_test_home_assistant()
platform = getattr(self.hass.components, 'test.switch')
platform.init()
2014-11-25 08:20:36 +00:00
# Switch 1 is ON, switch 2 is OFF
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
# 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."""
assert setup_component(
self.hass, switch.DOMAIN, {switch.DOMAIN: {CONF_PLATFORM: 'test'}}
)
assert switch.is_on(self.hass)
assert STATE_ON == \
self.hass.states.get(switch.ENTITY_ID_ALL_SWITCHES).state
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
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
self.hass.block_till_done()
2014-11-25 08:20:36 +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
common.turn_off(self.hass)
2014-11-25 08:20:36 +00:00
self.hass.block_till_done()
2014-11-25 08:20:36 +00:00
assert not switch.is_on(self.hass)
assert STATE_OFF == \
self.hass.states.get(switch.ENTITY_ID_ALL_SWITCHES).state
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
common.turn_on(self.hass)
2014-11-25 08:20:36 +00:00
self.hass.block_till_done()
2014-11-25 08:20:36 +00:00
assert switch.is_on(self.hass)
assert STATE_ON == \
self.hass.states.get(switch.ENTITY_ID_ALL_SWITCHES).state
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
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
test_platform = getattr(self.hass.components, 'test.switch')
test_platform.init(True)
2014-11-25 08:20:36 +00:00
mock_entity_platform(self.hass, 'switch.test2', test_platform)
test_platform.init(False)
assert setup_component(
self.hass, switch.DOMAIN, {
switch.DOMAIN: {CONF_PLATFORM: 'test'},
'{} 2'.format(switch.DOMAIN): {CONF_PLATFORM: 'test2'},
}
)
async def test_switch_context(hass, hass_admin_user):
"""Test that switch context works."""
assert await async_setup_component(hass, 'switch', {
'switch': {
'platform': 'test'
}
})
Load requirements and dependencies from manifests. Fallback to current `REQUIREMENTS` and `DEPENDENCIES` (#22717) * Load dependencies from manifests. Fallback to current DEPENDENCIES * Fix typing * Ignore typing correctly * Split out dependency processing to a new method * Fix tests * Only pull from manifest if dependencies is non empty * Inline temporary function * Fix light tests [skip ci] * Fix tests/common * Fix some mqtt tests [skip ci] * Fix tests and component manifests which have only one platform * Fix rflink tests * Fix more tests and manifests * Readability over shorthand format * Fix demo/notify tests * Load dependencies from manifests. Fallback to current DEPENDENCIES * Load requirements from manifests. Fallback to current REQUIREMENTS * Fix typing * Ignore typing correctly * Split out dependency processing to a new method * Only pull from manifest if dependencies is non empty * Inline temporary function * Fix tests and component manifests which have only one platform * Fix rflink tests * Readability over shorthand format * Clean up requirements * Use integration to resolve deps/reqs * Lint * Lint * revert a change * Revert a test change * Fix types * Fix types * Add back cache for load component * Fix test_component_not_found * Move light.test and device_tracker.test into test package instead with manifest to fix tests * Fix broken device_tracker tests * Add docstrings to __init__ * Fix all of the light tests that I broke earlier * Embed the test.switch platform to fix other tests * Embed and fix the test.imagimage_processing platform * Fix tests for nx584 * Add dependencies from platform file's DEPENDENCIES * Try to setup component when entity_platform is setting up Fix tests in helpers folder * Rewrite test_setup * Simplify * Lint * Disable demo component if running in test Temp workaround to unblock CI tests * Skip demo tests * Fix config entry test * Fix repeat test * Clarify doc * One extra guard * Fix import * Lint * Workaround google tts
2019-04-11 08:26:36 +00:00
await hass.async_block_till_done()
state = hass.states.get('switch.ac')
assert state is not None
await hass.services.async_call('switch', 'toggle', {
'entity_id': state.entity_id,
}, True, core.Context(user_id=hass_admin_user.id))
state2 = hass.states.get('switch.ac')
assert state2 is not None
assert state.state != state2.state
assert state2.context.user_id == hass_admin_user.id