93 lines
4.0 KiB
Python
93 lines
4.0 KiB
Python
"""Test the Fully Kiosk Browser switches."""
|
|
from unittest.mock import MagicMock
|
|
|
|
from homeassistant.components.fully_kiosk.const import DOMAIN
|
|
import homeassistant.components.switch as switch
|
|
from homeassistant.const import ATTR_ENTITY_ID
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.helpers import device_registry as dr, entity_registry as er
|
|
|
|
from tests.common import MockConfigEntry
|
|
|
|
|
|
async def test_switches(
|
|
hass: HomeAssistant, mock_fully_kiosk: MagicMock, init_integration: MockConfigEntry
|
|
) -> None:
|
|
"""Test Fully Kiosk switches."""
|
|
entity_registry = er.async_get(hass)
|
|
device_registry = dr.async_get(hass)
|
|
|
|
entity = hass.states.get("switch.amazon_fire_screensaver")
|
|
assert entity
|
|
assert entity.state == "off"
|
|
entry = entity_registry.async_get("switch.amazon_fire_screensaver")
|
|
assert entry
|
|
assert entry.unique_id == "abcdef-123456-screensaver"
|
|
await call_service(hass, "turn_on", "switch.amazon_fire_screensaver")
|
|
assert len(mock_fully_kiosk.startScreensaver.mock_calls) == 1
|
|
await call_service(hass, "turn_off", "switch.amazon_fire_screensaver")
|
|
assert len(mock_fully_kiosk.stopScreensaver.mock_calls) == 1
|
|
|
|
entity = hass.states.get("switch.amazon_fire_maintenance_mode")
|
|
assert entity
|
|
assert entity.state == "off"
|
|
entry = entity_registry.async_get("switch.amazon_fire_maintenance_mode")
|
|
assert entry
|
|
assert entry.unique_id == "abcdef-123456-maintenance"
|
|
await call_service(hass, "turn_on", "switch.amazon_fire_maintenance_mode")
|
|
assert len(mock_fully_kiosk.enableLockedMode.mock_calls) == 1
|
|
await call_service(hass, "turn_off", "switch.amazon_fire_maintenance_mode")
|
|
assert len(mock_fully_kiosk.disableLockedMode.mock_calls) == 1
|
|
|
|
entity = hass.states.get("switch.amazon_fire_kiosk_lock")
|
|
assert entity
|
|
assert entity.state == "on"
|
|
entry = entity_registry.async_get("switch.amazon_fire_kiosk_lock")
|
|
assert entry
|
|
assert entry.unique_id == "abcdef-123456-kiosk"
|
|
await call_service(hass, "turn_off", "switch.amazon_fire_kiosk_lock")
|
|
assert len(mock_fully_kiosk.unlockKiosk.mock_calls) == 1
|
|
await call_service(hass, "turn_on", "switch.amazon_fire_kiosk_lock")
|
|
assert len(mock_fully_kiosk.lockKiosk.mock_calls) == 1
|
|
|
|
entity = hass.states.get("switch.amazon_fire_motion_detection")
|
|
assert entity
|
|
assert entity.state == "off"
|
|
entry = entity_registry.async_get("switch.amazon_fire_motion_detection")
|
|
assert entry
|
|
assert entry.unique_id == "abcdef-123456-motion-detection"
|
|
await call_service(hass, "turn_on", "switch.amazon_fire_motion_detection")
|
|
assert len(mock_fully_kiosk.enableMotionDetection.mock_calls) == 1
|
|
await call_service(hass, "turn_off", "switch.amazon_fire_motion_detection")
|
|
assert len(mock_fully_kiosk.disableMotionDetection.mock_calls) == 1
|
|
|
|
entity = hass.states.get("switch.amazon_fire_screen")
|
|
assert entity
|
|
assert entity.state == "on"
|
|
entry = entity_registry.async_get("switch.amazon_fire_screen")
|
|
assert entry
|
|
assert entry.unique_id == "abcdef-123456-screenOn"
|
|
await call_service(hass, "turn_off", "switch.amazon_fire_screen")
|
|
assert len(mock_fully_kiosk.screenOff.mock_calls) == 1
|
|
await call_service(hass, "turn_on", "switch.amazon_fire_screen")
|
|
assert len(mock_fully_kiosk.screenOn.mock_calls) == 1
|
|
|
|
assert entry.device_id
|
|
device_entry = device_registry.async_get(entry.device_id)
|
|
assert device_entry
|
|
assert device_entry.configuration_url == "http://192.168.1.234:2323"
|
|
assert device_entry.entry_type is None
|
|
assert device_entry.hw_version is None
|
|
assert device_entry.identifiers == {(DOMAIN, "abcdef-123456")}
|
|
assert device_entry.manufacturer == "amzn"
|
|
assert device_entry.model == "KFDOWI"
|
|
assert device_entry.name == "Amazon Fire"
|
|
assert device_entry.sw_version == "1.42.5"
|
|
|
|
|
|
def call_service(hass, service, entity_id):
|
|
"""Call any service on entity."""
|
|
return hass.services.async_call(
|
|
switch.DOMAIN, service, {ATTR_ENTITY_ID: entity_id}, blocking=True
|
|
)
|