* Moved climate components with tests into platform dirs. * Updated tests from climate component. * Moved binary_sensor components with tests into platform dirs. * Updated tests from binary_sensor component. * Moved calendar components with tests into platform dirs. * Updated tests from calendar component. * Moved camera components with tests into platform dirs. * Updated tests from camera component. * Moved cover components with tests into platform dirs. * Updated tests from cover component. * Moved device_tracker components with tests into platform dirs. * Updated tests from device_tracker component. * Moved fan components with tests into platform dirs. * Updated tests from fan component. * Moved geo_location components with tests into platform dirs. * Updated tests from geo_location component. * Moved image_processing components with tests into platform dirs. * Updated tests from image_processing component. * Moved light components with tests into platform dirs. * Updated tests from light component. * Moved lock components with tests into platform dirs. * Moved media_player components with tests into platform dirs. * Updated tests from media_player component. * Moved scene components with tests into platform dirs. * Moved sensor components with tests into platform dirs. * Updated tests from sensor component. * Moved switch components with tests into platform dirs. * Updated tests from sensor component. * Moved vacuum components with tests into platform dirs. * Updated tests from vacuum component. * Moved weather components with tests into platform dirs. * Fixed __init__.py files * Fixes for stuff moved as part of this branch. * Fix stuff needed to merge with balloob's branch. * Formatting issues. * Missing __init__.py files. * Fix-ups * Fixup * Regenerated requirements. * Linting errors fixed. * Fixed more broken tests. * Missing init files. * Fix broken tests. * More broken tests * There seems to be a thread race condition. I suspect the logger stuff is running in another thread, which means waiting until the aio loop is done is missing the log messages. Used sleep instead because that allows the logger thread to run. I think the api_streams sensor might not be thread safe. * Disabled tests, will remove sensor in #22147 * Updated coverage and codeowners.
75 lines
2.5 KiB
Python
75 lines
2.5 KiB
Python
"""The tests the cover command line platform."""
|
|
import os
|
|
import tempfile
|
|
from unittest import mock
|
|
|
|
import pytest
|
|
|
|
from homeassistant.components.cover import DOMAIN
|
|
import homeassistant.components.command_line.cover as cmd_rs
|
|
from homeassistant.const import (
|
|
ATTR_ENTITY_ID, SERVICE_CLOSE_COVER, SERVICE_OPEN_COVER,
|
|
SERVICE_STOP_COVER)
|
|
from homeassistant.setup import async_setup_component
|
|
|
|
|
|
@pytest.fixture
|
|
def rs(hass):
|
|
"""Return CommandCover instance."""
|
|
return cmd_rs.CommandCover(hass, 'foo', 'command_open', 'command_close',
|
|
'command_stop', 'command_state', None)
|
|
|
|
|
|
def test_should_poll_new(rs):
|
|
"""Test the setting of polling."""
|
|
assert rs.should_poll is True
|
|
rs._command_state = None
|
|
assert rs.should_poll is False
|
|
|
|
|
|
def test_query_state_value(rs):
|
|
"""Test with state value."""
|
|
with mock.patch('subprocess.check_output') as mock_run:
|
|
mock_run.return_value = b' foo bar '
|
|
result = rs._query_state_value('runme')
|
|
assert 'foo bar' == result
|
|
assert mock_run.call_count == 1
|
|
assert mock_run.call_args == mock.call('runme', shell=True)
|
|
|
|
|
|
async def test_state_value(hass):
|
|
"""Test with state value."""
|
|
with tempfile.TemporaryDirectory() as tempdirname:
|
|
path = os.path.join(tempdirname, 'cover_status')
|
|
test_cover = {
|
|
'command_state': 'cat {}'.format(path),
|
|
'command_open': 'echo 1 > {}'.format(path),
|
|
'command_close': 'echo 1 > {}'.format(path),
|
|
'command_stop': 'echo 0 > {}'.format(path),
|
|
'value_template': '{{ value }}'
|
|
}
|
|
assert await async_setup_component(hass, DOMAIN, {
|
|
'cover': {
|
|
'platform': 'command_line',
|
|
'covers': {
|
|
'test': test_cover
|
|
}
|
|
}
|
|
}) is True
|
|
|
|
assert 'unknown' == hass.states.get('cover.test').state
|
|
|
|
await hass.services.async_call(
|
|
DOMAIN, SERVICE_OPEN_COVER,
|
|
{ATTR_ENTITY_ID: 'cover.test'}, blocking=True)
|
|
assert 'open' == hass.states.get('cover.test').state
|
|
|
|
await hass.services.async_call(
|
|
DOMAIN, SERVICE_CLOSE_COVER,
|
|
{ATTR_ENTITY_ID: 'cover.test'}, blocking=True)
|
|
assert 'open' == hass.states.get('cover.test').state
|
|
|
|
await hass.services.async_call(
|
|
DOMAIN, SERVICE_STOP_COVER,
|
|
{ATTR_ENTITY_ID: 'cover.test'}, blocking=True)
|
|
assert 'closed' == hass.states.get('cover.test').state
|