core/tests/components/enigma2/test_init.py

52 lines
1.8 KiB
Python

"""Test the Enigma2 integration init."""
from unittest.mock import AsyncMock
import pytest
from homeassistant.components.enigma2.const import DOMAIN
from homeassistant.config_entries import ConfigEntryState
from homeassistant.core import HomeAssistant
from homeassistant.helpers import device_registry as dr
from .conftest import TEST_REQUIRED
from tests.common import MockConfigEntry, load_json_object_fixture
async def test_device_without_mac_address(
hass: HomeAssistant,
openwebif_device_mock: AsyncMock,
device_registry: dr.DeviceRegistry,
) -> None:
"""Test that a device gets successfully registered when the device doesn't report a MAC address."""
openwebif_device_mock.get_about.return_value = load_json_object_fixture(
"device_about_without_mac.json", DOMAIN
)
entry = MockConfigEntry(
domain=DOMAIN, data=TEST_REQUIRED, title="name", unique_id="123456"
)
entry.add_to_hass(hass)
await hass.config_entries.async_setup(entry.entry_id)
await hass.async_block_till_done()
assert entry.unique_id == "123456"
assert device_registry.async_get_device({(DOMAIN, entry.unique_id)}) is not None
@pytest.mark.usefixtures("openwebif_device_mock")
async def test_unload_entry(hass: HomeAssistant) -> None:
"""Test successful unload of entry."""
entry = MockConfigEntry(domain=DOMAIN, data=TEST_REQUIRED, title="name")
entry.add_to_hass(hass)
await hass.config_entries.async_setup(entry.entry_id)
await hass.async_block_till_done()
assert len(hass.config_entries.async_entries(DOMAIN)) == 1
assert entry.state is ConfigEntryState.LOADED
assert await hass.config_entries.async_unload(entry.entry_id)
await hass.async_block_till_done()
assert entry.state is ConfigEntryState.NOT_LOADED
assert not hass.data.get(DOMAIN)