mirror of
https://github.com/home-assistant/core.git
synced 2026-05-25 09:49:52 +01:00
7da5b10b51
Co-authored-by: bryan <185078974@qq.com> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Co-authored-by: Joost Lekkerkerker <joostlek@outlook.com>
43 lines
1.3 KiB
Python
43 lines
1.3 KiB
Python
"""Test aidot."""
|
|
|
|
from unittest.mock import MagicMock
|
|
|
|
from aidot.exceptions import AidotUserOrPassIncorrect
|
|
|
|
from homeassistant.config_entries import ConfigEntryState
|
|
from homeassistant.core import HomeAssistant
|
|
|
|
from . import async_init_integration
|
|
|
|
from tests.common import MockConfigEntry
|
|
|
|
|
|
async def test_async_unload_entry(
|
|
hass: HomeAssistant, mock_config_entry: MockConfigEntry
|
|
) -> None:
|
|
"""Test that async_unload_entry unloads the component correctly."""
|
|
await async_init_integration(hass, mock_config_entry)
|
|
|
|
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
|
|
|
|
|
|
async def test_async_setup_entry_auth_failed(
|
|
hass: HomeAssistant,
|
|
mock_config_entry: MockConfigEntry,
|
|
patch_aidot_client: MagicMock,
|
|
) -> None:
|
|
"""Test setup fails with auth error when login raises."""
|
|
patch_aidot_client.login_info = {}
|
|
patch_aidot_client.async_post_login.side_effect = AidotUserOrPassIncorrect()
|
|
|
|
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_ERROR
|