core/tests/components/anthemav/test_init.py

73 lines
2.3 KiB
Python

"""Test the Anthem A/V Receivers config flow."""
from collections.abc import Callable
from unittest.mock import ANY, AsyncMock, patch
from anthemav.device_error import DeviceError
import pytest
from homeassistant.config_entries import ConfigEntryState
from homeassistant.const import STATE_OFF, STATE_ON
from homeassistant.core import HomeAssistant
from tests.common import MockConfigEntry
async def test_load_unload_config_entry(
hass: HomeAssistant,
mock_connection_create: AsyncMock,
mock_anthemav: AsyncMock,
init_integration: MockConfigEntry,
) -> None:
"""Test load and unload AnthemAv component."""
# assert avr is created
mock_connection_create.assert_called_with(
host="1.1.1.1", port=14999, update_callback=ANY
)
assert init_integration.state is ConfigEntryState.LOADED
# unload
await hass.config_entries.async_unload(init_integration.entry_id)
await hass.async_block_till_done()
# assert unload and avr is closed
assert init_integration.state is ConfigEntryState.NOT_LOADED
mock_anthemav.close.assert_called_once()
@pytest.mark.parametrize("error", [OSError, DeviceError])
async def test_config_entry_not_ready_when_oserror(
hass: HomeAssistant, mock_config_entry: MockConfigEntry, error: Exception
) -> None:
"""Test AnthemAV configuration entry not ready."""
with patch(
"anthemav.Connection.create",
side_effect=error,
):
mock_config_entry.add_to_hass(hass)
await hass.config_entries.async_setup(mock_config_entry.entry_id)
await hass.async_block_till_done()
assert mock_config_entry.state is ConfigEntryState.SETUP_RETRY
async def test_anthemav_dispatcher_signal(
hass: HomeAssistant,
mock_connection_create: AsyncMock,
mock_anthemav: AsyncMock,
init_integration: MockConfigEntry,
update_callback: Callable[[str], None],
) -> None:
"""Test send update signal to dispatcher."""
states = hass.states.get("media_player.anthem_av")
assert states
assert states.state == STATE_OFF
# change state of the AVR
mock_anthemav.protocol.zones[1].power = True
update_callback("power")
await hass.async_block_till_done()
states = hass.states.get("media_player.anthem_av")
assert states.state == STATE_ON