* Revert Axis config flow version to 1 * Set up using hass.config_entries.async_setup * Fix review comment * Update homeassistant/components/axis/__init__.py Co-authored-by: Martin Hjelmare <marhje52@gmail.com> Co-authored-by: Martin Hjelmare <marhje52@gmail.com>
75 lines
2.5 KiB
Python
75 lines
2.5 KiB
Python
"""Test Axis component setup process."""
|
|
from unittest.mock import AsyncMock, Mock, patch
|
|
|
|
from homeassistant.components import axis
|
|
from homeassistant.components.axis.const import DOMAIN as AXIS_DOMAIN
|
|
from homeassistant.const import CONF_MAC
|
|
from homeassistant.helpers.device_registry import format_mac
|
|
from homeassistant.setup import async_setup_component
|
|
|
|
from .test_device import MAC, setup_axis_integration
|
|
|
|
from tests.common import MockConfigEntry
|
|
|
|
|
|
async def test_setup_no_config(hass):
|
|
"""Test setup without configuration."""
|
|
assert await async_setup_component(hass, AXIS_DOMAIN, {})
|
|
assert AXIS_DOMAIN not in hass.data
|
|
|
|
|
|
async def test_setup_entry(hass):
|
|
"""Test successful setup of entry."""
|
|
await setup_axis_integration(hass)
|
|
assert len(hass.data[AXIS_DOMAIN]) == 1
|
|
assert format_mac(MAC) in hass.data[AXIS_DOMAIN]
|
|
|
|
|
|
async def test_setup_entry_fails(hass):
|
|
"""Test successful setup of entry."""
|
|
config_entry = MockConfigEntry(domain=AXIS_DOMAIN, data={CONF_MAC: "0123"})
|
|
config_entry.add_to_hass(hass)
|
|
|
|
mock_device = Mock()
|
|
mock_device.async_setup = AsyncMock(return_value=False)
|
|
|
|
with patch.object(axis, "AxisNetworkDevice") as mock_device_class:
|
|
mock_device_class.return_value = mock_device
|
|
|
|
assert not await hass.config_entries.async_setup(config_entry.entry_id)
|
|
|
|
assert not hass.data[AXIS_DOMAIN]
|
|
|
|
|
|
async def test_unload_entry(hass):
|
|
"""Test successful unload of entry."""
|
|
config_entry = await setup_axis_integration(hass)
|
|
device = hass.data[AXIS_DOMAIN][config_entry.unique_id]
|
|
assert hass.data[AXIS_DOMAIN]
|
|
|
|
assert await hass.config_entries.async_unload(device.config_entry.entry_id)
|
|
assert not hass.data[AXIS_DOMAIN]
|
|
|
|
|
|
async def test_migrate_entry(hass):
|
|
"""Test successful migration of entry data."""
|
|
config_entry = MockConfigEntry(domain=AXIS_DOMAIN, version=1)
|
|
config_entry.add_to_hass(hass)
|
|
|
|
assert config_entry.version == 1
|
|
|
|
mock_device = Mock()
|
|
mock_device.async_setup = AsyncMock()
|
|
mock_device.async_update_device_registry = AsyncMock()
|
|
mock_device.api.vapix.light_control = None
|
|
mock_device.api.vapix.params.image_format = None
|
|
|
|
with patch.object(axis, "get_axis_device"), patch.object(
|
|
axis, "AxisNetworkDevice"
|
|
) as mock_device_class:
|
|
mock_device_class.return_value = mock_device
|
|
|
|
assert await hass.config_entries.async_setup(config_entry.entry_id)
|
|
|
|
assert hass.data[AXIS_DOMAIN]
|
|
assert config_entry.version == 3
|