mirror of
https://github.com/home-assistant/core.git
synced 2025-11-06 01:19:29 +00:00
115 lines
3.3 KiB
Python
115 lines
3.3 KiB
Python
"""Test init of Brother integration."""
|
|
|
|
from unittest.mock import AsyncMock
|
|
|
|
from brother import SnmpError
|
|
import pytest
|
|
|
|
from homeassistant.components.brother.const import (
|
|
CONF_COMMUNITY,
|
|
DOMAIN,
|
|
SECTION_ADVANCED_SETTINGS,
|
|
)
|
|
from homeassistant.config_entries import ConfigEntryState
|
|
from homeassistant.const import CONF_HOST, CONF_PORT, CONF_TYPE
|
|
from homeassistant.core import HomeAssistant
|
|
|
|
from . import init_integration
|
|
|
|
from tests.common import MockConfigEntry
|
|
|
|
|
|
async def test_async_setup_entry(
|
|
hass: HomeAssistant,
|
|
mock_brother_client: AsyncMock,
|
|
mock_config_entry: MockConfigEntry,
|
|
) -> None:
|
|
"""Test a successful setup entry."""
|
|
await init_integration(hass, mock_config_entry)
|
|
|
|
assert mock_config_entry.state is ConfigEntryState.LOADED
|
|
|
|
|
|
async def test_config_not_ready(
|
|
hass: HomeAssistant,
|
|
mock_brother_client: AsyncMock,
|
|
mock_config_entry: MockConfigEntry,
|
|
) -> None:
|
|
"""Test for setup failure if connection to broker is missing."""
|
|
mock_brother_client.async_update.side_effect = ConnectionError
|
|
|
|
await init_integration(hass, mock_config_entry)
|
|
|
|
assert mock_config_entry.state is ConfigEntryState.SETUP_RETRY
|
|
|
|
|
|
@pytest.mark.parametrize("exc", [(SnmpError("SNMP Error")), (ConnectionError)])
|
|
async def test_error_on_init(
|
|
hass: HomeAssistant,
|
|
exc: Exception,
|
|
mock_config_entry: MockConfigEntry,
|
|
mock_brother: AsyncMock,
|
|
mock_brother_client: AsyncMock,
|
|
) -> None:
|
|
"""Test for error on init."""
|
|
mock_brother.create.side_effect = exc
|
|
|
|
await init_integration(hass, mock_config_entry)
|
|
|
|
assert mock_config_entry.state is ConfigEntryState.SETUP_RETRY
|
|
|
|
|
|
async def test_unload_entry(
|
|
hass: HomeAssistant,
|
|
mock_brother_client: AsyncMock,
|
|
mock_config_entry: MockConfigEntry,
|
|
) -> None:
|
|
"""Test successful unload of entry."""
|
|
await init_integration(hass, mock_config_entry)
|
|
|
|
assert len(hass.config_entries.async_entries(DOMAIN)) == 1
|
|
assert mock_config_entry.state is ConfigEntryState.LOADED
|
|
|
|
assert await hass.config_entries.async_unload(mock_config_entry.entry_id)
|
|
await hass.async_block_till_done()
|
|
|
|
assert mock_config_entry.state is ConfigEntryState.NOT_LOADED
|
|
assert not hass.data.get(DOMAIN)
|
|
|
|
|
|
async def test_migrate_entry(
|
|
hass: HomeAssistant,
|
|
mock_brother_client: AsyncMock,
|
|
) -> None:
|
|
"""Test entry migration to minor_version=2."""
|
|
|
|
config_entry = MockConfigEntry(
|
|
domain=DOMAIN,
|
|
title="HL-L2340DW 0123456789",
|
|
unique_id="0123456789",
|
|
data={CONF_HOST: "localhost", CONF_TYPE: "laser"},
|
|
minor_version=1,
|
|
)
|
|
config_entry.add_to_hass(hass)
|
|
|
|
assert await hass.config_entries.async_setup(config_entry.entry_id)
|
|
await hass.async_block_till_done()
|
|
|
|
assert config_entry.minor_version == 2
|
|
assert config_entry.data[SECTION_ADVANCED_SETTINGS][CONF_PORT] == 161
|
|
assert config_entry.data[SECTION_ADVANCED_SETTINGS][CONF_COMMUNITY] == "public"
|
|
|
|
|
|
async def test_serial_mismatch(
|
|
hass: HomeAssistant,
|
|
mock_config_entry: MockConfigEntry,
|
|
mock_brother: AsyncMock,
|
|
mock_brother_client: AsyncMock,
|
|
) -> None:
|
|
"""Test if the serial number matches on init."""
|
|
mock_brother_client.serial = "DIFFERENT_SERIAL"
|
|
|
|
await init_integration(hass, mock_config_entry)
|
|
|
|
assert mock_config_entry.state is ConfigEntryState.SETUP_ERROR
|