mirror of https://github.com/home-assistant/core
79 lines
2.1 KiB
Python
79 lines
2.1 KiB
Python
"""Tests for the Onkyo integration."""
|
|
|
|
from unittest.mock import AsyncMock, Mock, patch
|
|
|
|
from homeassistant.components.onkyo.receiver import Receiver, ReceiverInfo
|
|
from homeassistant.const import CONF_HOST
|
|
from homeassistant.core import HomeAssistant
|
|
|
|
from tests.common import MockConfigEntry
|
|
|
|
|
|
def create_receiver_info(id: int) -> ReceiverInfo:
|
|
"""Create an empty receiver info object for testing."""
|
|
return ReceiverInfo(
|
|
host=f"host {id}",
|
|
port=id,
|
|
model_name=f"type {id}",
|
|
identifier=f"id{id}",
|
|
)
|
|
|
|
|
|
def create_config_entry_from_info(info: ReceiverInfo) -> MockConfigEntry:
|
|
"""Create a config entry from receiver info."""
|
|
data = {CONF_HOST: info.host}
|
|
options = {
|
|
"volume_resolution": 80,
|
|
"input_sources": {"12": "tv"},
|
|
"max_volume": 100,
|
|
}
|
|
|
|
return MockConfigEntry(
|
|
data=data,
|
|
options=options,
|
|
title=info.model_name,
|
|
domain="onkyo",
|
|
unique_id=info.identifier,
|
|
)
|
|
|
|
|
|
def create_empty_config_entry() -> MockConfigEntry:
|
|
"""Create an empty config entry for use in unit tests."""
|
|
data = {CONF_HOST: ""}
|
|
options = {
|
|
"volume_resolution": 80,
|
|
"input_sources": {"12": "tv"},
|
|
"max_volume": 100,
|
|
}
|
|
|
|
return MockConfigEntry(
|
|
data=data,
|
|
options=options,
|
|
title="Unit test Onkyo",
|
|
domain="onkyo",
|
|
unique_id="onkyo_unique_id",
|
|
)
|
|
|
|
|
|
async def setup_integration(
|
|
hass: HomeAssistant, config_entry: MockConfigEntry, receiver_info: ReceiverInfo
|
|
) -> None:
|
|
"""Fixture for setting up the component."""
|
|
|
|
config_entry.add_to_hass(hass)
|
|
|
|
mock_receiver = AsyncMock()
|
|
mock_receiver.conn.close = Mock()
|
|
mock_receiver.callbacks.connect = Mock()
|
|
mock_receiver.callbacks.update = Mock()
|
|
|
|
with (
|
|
patch(
|
|
"homeassistant.components.onkyo.async_interview",
|
|
return_value=receiver_info,
|
|
),
|
|
patch.object(Receiver, "async_create", return_value=mock_receiver),
|
|
):
|
|
await hass.config_entries.async_setup(config_entry.entry_id)
|
|
await hass.async_block_till_done()
|