2016-08-24 01:23:18 +00:00
|
|
|
"""The tests the cover command line platform."""
|
|
|
|
import os
|
|
|
|
import tempfile
|
|
|
|
from unittest import mock
|
|
|
|
|
2018-09-25 20:32:05 +00:00
|
|
|
import pytest
|
|
|
|
|
2019-03-19 06:07:39 +00:00
|
|
|
import homeassistant.components.command_line.cover as cmd_rs
|
2019-12-08 16:55:57 +00:00
|
|
|
from homeassistant.components.cover import DOMAIN
|
2018-09-25 20:32:05 +00:00
|
|
|
from homeassistant.const import (
|
2019-07-31 19:25:30 +00:00
|
|
|
ATTR_ENTITY_ID,
|
|
|
|
SERVICE_CLOSE_COVER,
|
|
|
|
SERVICE_OPEN_COVER,
|
|
|
|
SERVICE_STOP_COVER,
|
|
|
|
)
|
2018-09-25 20:32:05 +00:00
|
|
|
from homeassistant.setup import async_setup_component
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.fixture
|
|
|
|
def rs(hass):
|
|
|
|
"""Return CommandCover instance."""
|
2019-07-31 19:25:30 +00:00
|
|
|
return cmd_rs.CommandCover(
|
|
|
|
hass,
|
|
|
|
"foo",
|
|
|
|
"command_open",
|
|
|
|
"command_close",
|
|
|
|
"command_stop",
|
|
|
|
"command_state",
|
|
|
|
None,
|
|
|
|
)
|
2018-09-25 20:32:05 +00:00
|
|
|
|
|
|
|
|
|
|
|
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."""
|
2019-07-31 19:25:30 +00:00
|
|
|
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
|
2018-09-25 20:32:05 +00:00
|
|
|
assert mock_run.call_count == 1
|
2020-01-20 16:44:55 +00:00
|
|
|
assert mock_run.call_args == mock.call(
|
|
|
|
"runme", shell=True, # nosec # shell by design
|
|
|
|
)
|
2018-09-25 20:32:05 +00:00
|
|
|
|
|
|
|
|
|
|
|
async def test_state_value(hass):
|
|
|
|
"""Test with state value."""
|
|
|
|
with tempfile.TemporaryDirectory() as tempdirname:
|
2019-07-31 19:25:30 +00:00
|
|
|
path = os.path.join(tempdirname, "cover_status")
|
2018-09-25 20:32:05 +00:00
|
|
|
test_cover = {
|
2020-04-04 22:26:08 +00:00
|
|
|
"command_state": f"cat {path}",
|
|
|
|
"command_open": f"echo 1 > {path}",
|
|
|
|
"command_close": f"echo 1 > {path}",
|
|
|
|
"command_stop": f"echo 0 > {path}",
|
2019-07-31 19:25:30 +00:00
|
|
|
"value_template": "{{ value }}",
|
2018-09-25 20:32:05 +00:00
|
|
|
}
|
2019-07-31 19:25:30 +00:00
|
|
|
assert (
|
|
|
|
await async_setup_component(
|
|
|
|
hass,
|
|
|
|
DOMAIN,
|
|
|
|
{"cover": {"platform": "command_line", "covers": {"test": test_cover}}},
|
|
|
|
)
|
|
|
|
is True
|
|
|
|
)
|
2016-08-24 01:23:18 +00:00
|
|
|
|
2019-07-31 19:25:30 +00:00
|
|
|
assert "unknown" == hass.states.get("cover.test").state
|
2016-08-24 01:23:18 +00:00
|
|
|
|
2018-09-25 20:32:05 +00:00
|
|
|
await hass.services.async_call(
|
2019-07-31 19:25:30 +00:00
|
|
|
DOMAIN, SERVICE_OPEN_COVER, {ATTR_ENTITY_ID: "cover.test"}, blocking=True
|
|
|
|
)
|
|
|
|
assert "open" == hass.states.get("cover.test").state
|
2016-08-24 01:23:18 +00:00
|
|
|
|
2018-09-25 20:32:05 +00:00
|
|
|
await hass.services.async_call(
|
2019-07-31 19:25:30 +00:00
|
|
|
DOMAIN, SERVICE_CLOSE_COVER, {ATTR_ENTITY_ID: "cover.test"}, blocking=True
|
|
|
|
)
|
|
|
|
assert "open" == hass.states.get("cover.test").state
|
2016-08-24 01:23:18 +00:00
|
|
|
|
2018-09-25 20:32:05 +00:00
|
|
|
await hass.services.async_call(
|
2019-07-31 19:25:30 +00:00
|
|
|
DOMAIN, SERVICE_STOP_COVER, {ATTR_ENTITY_ID: "cover.test"}, blocking=True
|
|
|
|
)
|
|
|
|
assert "closed" == hass.states.get("cover.test").state
|