mirror of
https://github.com/home-assistant/core.git
synced 2026-08-07 05:46:41 +01:00
135 lines
3.7 KiB
Python
135 lines
3.7 KiB
Python
"""Test the NUT button platform."""
|
|
|
|
import pytest
|
|
|
|
from homeassistant.components.button import DOMAIN as BUTTON_DOMAIN, SERVICE_PRESS
|
|
from homeassistant.components.nut.const import INTEGRATION_SUPPORTED_COMMANDS
|
|
from homeassistant.const import ATTR_ENTITY_ID, STATE_UNKNOWN
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.helpers import entity_registry as er
|
|
|
|
from .util import async_init_integration
|
|
|
|
|
|
@pytest.mark.parametrize(
|
|
"model",
|
|
[
|
|
"CP1350C",
|
|
"5E650I",
|
|
"5E850I",
|
|
"CP1500PFCLCD",
|
|
"DL650ELCD",
|
|
"EATON5P1550",
|
|
"blazer_usb",
|
|
],
|
|
)
|
|
async def test_buttons_ups(
|
|
hass: HomeAssistant, entity_registry: er.EntityRegistry, model: str
|
|
) -> None:
|
|
"""Tests that there are no standard buttons."""
|
|
|
|
list_commands_return_value = {
|
|
supported_command: supported_command
|
|
for supported_command in INTEGRATION_SUPPORTED_COMMANDS
|
|
}
|
|
|
|
await async_init_integration(
|
|
hass,
|
|
model,
|
|
list_commands_return_value=list_commands_return_value,
|
|
)
|
|
|
|
button = hass.states.get("button.device_location_ups1_power_cycle_outlet_1")
|
|
assert not button
|
|
|
|
|
|
@pytest.mark.parametrize(
|
|
("model", "unique_id_base"),
|
|
[
|
|
(
|
|
"EATON-EPDU-G3",
|
|
"EATON_ePDU MA 00U-C IN: TYPE 00A 0P OUT: 00xTYPE_A000A00000_",
|
|
),
|
|
],
|
|
)
|
|
async def test_buttons_pdu_dynamic_outlets(
|
|
hass: HomeAssistant,
|
|
entity_registry: er.EntityRegistry,
|
|
model: str,
|
|
unique_id_base: str,
|
|
) -> None:
|
|
"""Tests that the button entities are correct."""
|
|
|
|
list_commands_return_value = {
|
|
supported_command: supported_command
|
|
for supported_command in INTEGRATION_SUPPORTED_COMMANDS
|
|
}
|
|
|
|
for num in range(1, 25):
|
|
command = f"outlet.{num!s}.load.cycle"
|
|
list_commands_return_value[command] = command
|
|
|
|
await async_init_integration(
|
|
hass,
|
|
model,
|
|
list_commands_return_value=list_commands_return_value,
|
|
)
|
|
|
|
entity_id = "button.device_location_ups1_power_cycle_outlet_a1"
|
|
entry = entity_registry.async_get(entity_id)
|
|
assert entry
|
|
assert entry.unique_id == f"{unique_id_base}outlet.1.load.cycle"
|
|
|
|
button = hass.states.get(entity_id)
|
|
assert button
|
|
assert button.state == STATE_UNKNOWN
|
|
|
|
await hass.services.async_call(
|
|
BUTTON_DOMAIN,
|
|
SERVICE_PRESS,
|
|
{ATTR_ENTITY_ID: entity_id},
|
|
blocking=True,
|
|
)
|
|
await hass.async_block_till_done()
|
|
|
|
button = hass.states.get(entity_id)
|
|
assert button.state != STATE_UNKNOWN
|
|
|
|
button = hass.states.get("button.device_location_ups1_power_cycle_outlet_25")
|
|
assert not button
|
|
|
|
button = hass.states.get("button.device_location_ups1_power_cycle_outlet_a25")
|
|
assert not button
|
|
|
|
|
|
async def test_buttons_outlets_without_outlet_count(
|
|
hass: HomeAssistant,
|
|
entity_registry: er.EntityRegistry,
|
|
) -> None:
|
|
"""Test cycle buttons are created when outlet.count is missing.
|
|
|
|
Outlets are discovered from ``outlet.<n>.*`` status keys for devices that
|
|
expose switchable outlets without reporting ``outlet.count``.
|
|
"""
|
|
|
|
config_entry = await async_init_integration(
|
|
hass,
|
|
list_ups={"ups1": "UPS 1"},
|
|
list_vars={
|
|
"outlet.1.status": "on",
|
|
"outlet.1.switchable": "yes",
|
|
"outlet.1.desc": "PowerShare Outlet 1",
|
|
},
|
|
list_commands_return_value={
|
|
"outlet.1.load.cycle": None,
|
|
},
|
|
)
|
|
|
|
entity_id = "button.ups1_power_cycle_outlet_powershare_outlet_1"
|
|
entry = entity_registry.async_get(entity_id)
|
|
assert entry
|
|
assert entry.unique_id == f"{config_entry.entry_id}_outlet.1.load.cycle"
|
|
|
|
button = hass.states.get(entity_id)
|
|
assert button
|