core/tests/components/command_line/test_cover.py

209 lines
6.6 KiB
Python
Raw Normal View History

"""The tests the cover command line platform."""
from __future__ import annotations
import os
import tempfile
from typing import Any
2021-01-01 21:31:56 +00:00
from unittest.mock import patch
import pytest
2021-03-01 16:27:04 +00:00
from homeassistant import config as hass_config, setup
from homeassistant.components.cover import DOMAIN, SCAN_INTERVAL
from homeassistant.const import (
2019-07-31 19:25:30 +00:00
ATTR_ENTITY_ID,
SERVICE_CLOSE_COVER,
SERVICE_OPEN_COVER,
SERVICE_RELOAD,
2019-07-31 19:25:30 +00:00
SERVICE_STOP_COVER,
)
from homeassistant.core import HomeAssistant
from homeassistant.helpers import entity_registry as er
2021-03-01 16:27:04 +00:00
import homeassistant.util.dt as dt_util
2021-11-02 03:47:05 +00:00
from tests.common import async_fire_time_changed, get_fixture_path
async def setup_test_entity(hass: HomeAssistant, config_dict: dict[str, Any]) -> None:
2021-03-01 16:27:04 +00:00
"""Set up a test command line notify service."""
assert await setup.async_setup_component(
2019-07-31 19:25:30 +00:00
hass,
2021-03-01 16:27:04 +00:00
DOMAIN,
{
DOMAIN: [
{"platform": "command_line", "covers": config_dict},
]
},
2019-07-31 19:25:30 +00:00
)
2021-03-01 16:27:04 +00:00
await hass.async_block_till_done()
async def test_no_covers(caplog: pytest.LogCaptureFixture, hass: HomeAssistant) -> None:
2021-03-01 16:27:04 +00:00
"""Test that the cover does not polls when there's no state command."""
2021-03-01 16:27:04 +00:00
with patch(
"homeassistant.components.command_line.utils.subprocess.check_output",
2021-03-01 16:27:04 +00:00
return_value=b"50\n",
):
await setup_test_entity(hass, {})
assert "No covers added" in caplog.text
2021-03-01 16:27:04 +00:00
async def test_no_poll_when_cover_has_no_command_state(hass: HomeAssistant) -> None:
2021-03-01 16:27:04 +00:00
"""Test that the cover does not polls when there's no state command."""
with patch(
"homeassistant.components.command_line.utils.subprocess.check_output",
2021-03-01 16:27:04 +00:00
return_value=b"50\n",
) as check_output:
await setup_test_entity(hass, {"test": {}})
async_fire_time_changed(hass, dt_util.utcnow() + SCAN_INTERVAL)
await hass.async_block_till_done()
assert not check_output.called
async def test_poll_when_cover_has_command_state(hass: HomeAssistant) -> None:
2021-03-01 16:27:04 +00:00
"""Test that the cover polls when there's a state command."""
with patch(
"homeassistant.components.command_line.utils.subprocess.check_output",
2021-03-01 16:27:04 +00:00
return_value=b"50\n",
) as check_output:
await setup_test_entity(hass, {"test": {"command_state": "echo state"}})
async_fire_time_changed(hass, dt_util.utcnow() + SCAN_INTERVAL)
await hass.async_block_till_done()
check_output.assert_called_once_with(
Avoid subprocess memory copy when c library supports posix_spawn (#87958) * use posix spawn on alpine * Avoid subprocess memory copy when c library supports posix_spawn By default python 3.10 will use the fork() which has to copy all the memory of the parent process (in our case this can be huge since Home Assistant core can use hundreds of megabytes of RAM). By using posix_spawn this is avoided. In python 3.11 vfork will also be available https://github.com/python/cpython/issues/80004#issuecomment-1093810689 https://github.com/python/cpython/pull/11671 but we won't always be able to use it and posix_spawn is considered safer https://bugzilla.kernel.org/show_bug.cgi?id=215813#c14 The subprocess library doesn't know about musl though even though it supports posix_spawn https://git.musl-libc.org/cgit/musl/log/src/process/posix_spawn.c so we have to teach it since it only has checks for glibc https://github.com/python/cpython/blob/1b736838e6ae1b4ef42cdd27c2708face908f92c/Lib/subprocess.py#L745 The constant is documented as being able to be flipped here: https://docs.python.org/3/library/subprocess.html#disabling-use-of-vfork-or-posix-spawn * Avoid subprocess memory copy when c library supports posix_spawn By default python 3.10 will use the fork() which has to copy memory of the parent process (in our case this can be huge since Home Assistant core can use hundreds of megabytes of RAM). By using posix_spawn this is avoided and subprocess creation does not get discernibly slow the larger the Home Assistant python process grows. In python 3.11 vfork will also be available https://github.com/python/cpython/issues/80004#issuecomment-1093810689 https://github.com/python/cpython/pull/11671 but we won't always be able to use it and posix_spawn is considered safer https://bugzilla.kernel.org/show_bug.cgi?id=215813#c14 The subprocess library doesn't know about musl though even though it supports posix_spawn https://git.musl-libc.org/cgit/musl/log/src/process/posix_spawn.c so we have to teach it since it only has checks for glibc https://github.com/python/cpython/blob/1b736838e6ae1b4ef42cdd27c2708face908f92c/Lib/subprocess.py#L745 The constant is documented as being able to be flipped here: https://docs.python.org/3/library/subprocess.html#disabling-use-of-vfork-or-posix-spawn * missed some * adjust more tests * coverage
2023-02-13 14:02:51 +00:00
"echo state",
shell=True, # nosec # shell by design
timeout=15,
close_fds=False,
)
async def test_state_value(hass: HomeAssistant) -> None:
"""Test with state value."""
with tempfile.TemporaryDirectory() as tempdirname:
2019-07-31 19:25:30 +00:00
path = os.path.join(tempdirname, "cover_status")
2021-03-01 16:27:04 +00:00
await setup_test_entity(
hass,
{
"test": {
"command_state": f"cat {path}",
"command_open": f"echo 1 > {path}",
"command_close": f"echo 1 > {path}",
"command_stop": f"echo 0 > {path}",
"value_template": "{{ value }}",
}
},
2019-07-31 19:25:30 +00:00
)
2021-03-01 16:27:04 +00:00
entity_state = hass.states.get("cover.test")
assert entity_state
assert entity_state.state == "unknown"
await hass.services.async_call(
2019-07-31 19:25:30 +00:00
DOMAIN, SERVICE_OPEN_COVER, {ATTR_ENTITY_ID: "cover.test"}, blocking=True
)
2021-03-01 16:27:04 +00:00
entity_state = hass.states.get("cover.test")
assert entity_state
assert entity_state.state == "open"
await hass.services.async_call(
2019-07-31 19:25:30 +00:00
DOMAIN, SERVICE_CLOSE_COVER, {ATTR_ENTITY_ID: "cover.test"}, blocking=True
)
2021-03-01 16:27:04 +00:00
entity_state = hass.states.get("cover.test")
assert entity_state
assert entity_state.state == "open"
await hass.services.async_call(
2019-07-31 19:25:30 +00:00
DOMAIN, SERVICE_STOP_COVER, {ATTR_ENTITY_ID: "cover.test"}, blocking=True
)
2021-03-01 16:27:04 +00:00
entity_state = hass.states.get("cover.test")
assert entity_state
assert entity_state.state == "closed"
async def test_reload(hass: HomeAssistant) -> None:
"""Verify we can reload command_line covers."""
2021-03-01 16:27:04 +00:00
await setup_test_entity(
hass,
2021-03-01 16:27:04 +00:00
{
"test": {
"command_state": "echo open",
"value_template": "{{ value }}",
}
},
)
2021-03-01 16:27:04 +00:00
entity_state = hass.states.get("cover.test")
assert entity_state
assert entity_state.state == "unknown"
2021-11-02 03:47:05 +00:00
yaml_path = get_fixture_path("configuration.yaml", "command_line")
with patch.object(hass_config, "YAML_CONFIG_FILE", yaml_path):
await hass.services.async_call(
2020-08-27 11:56:20 +00:00
"command_line",
SERVICE_RELOAD,
{},
blocking=True,
)
await hass.async_block_till_done()
assert len(hass.states.async_all()) == 1
2021-03-01 16:27:04 +00:00
assert not hass.states.get("cover.test")
assert hass.states.get("cover.from_yaml")
async def test_move_cover_failure(
caplog: pytest.LogCaptureFixture, hass: HomeAssistant
) -> None:
"""Test command failure."""
2021-03-01 16:27:04 +00:00
await setup_test_entity(
hass,
{"test": {"command_open": "exit 1"}},
)
await hass.services.async_call(
DOMAIN, SERVICE_OPEN_COVER, {ATTR_ENTITY_ID: "cover.test"}, blocking=True
)
assert "Command failed" in caplog.text
assert "return code 1" in caplog.text
async def test_unique_id(
hass: HomeAssistant, entity_registry: er.EntityRegistry
) -> None:
"""Test unique_id option and if it only creates one cover per id."""
await setup_test_entity(
hass,
{
"unique": {
"command_open": "echo open",
"command_close": "echo close",
"command_stop": "echo stop",
"unique_id": "unique",
},
"not_unique_1": {
"command_open": "echo open",
"command_close": "echo close",
"command_stop": "echo stop",
"unique_id": "not-so-unique-anymore",
},
"not_unique_2": {
"command_open": "echo open",
"command_close": "echo close",
"command_stop": "echo stop",
"unique_id": "not-so-unique-anymore",
},
},
)
assert len(hass.states.async_all()) == 2
assert len(entity_registry.entities) == 2
assert entity_registry.async_get_entity_id("cover", "command_line", "unique")
assert entity_registry.async_get_entity_id(
"cover", "command_line", "not-so-unique-anymore"
)