mirror of https://github.com/home-assistant/core
44 lines
974 B
Python
44 lines
974 B
Python
"""Tests prosegur setup."""
|
|
|
|
from unittest.mock import patch
|
|
|
|
import pytest
|
|
|
|
from homeassistant.core import HomeAssistant
|
|
|
|
from tests.test_util.aiohttp import AiohttpClientMocker
|
|
|
|
|
|
@pytest.mark.parametrize(
|
|
"error",
|
|
[
|
|
ConnectionRefusedError,
|
|
ConnectionError,
|
|
],
|
|
)
|
|
async def test_setup_entry_fail_retrieve(
|
|
hass: HomeAssistant, mock_config_entry, error
|
|
) -> None:
|
|
"""Test loading the Prosegur entry."""
|
|
|
|
mock_config_entry.add_to_hass(hass)
|
|
|
|
with patch(
|
|
"pyprosegur.auth.Auth.login",
|
|
side_effect=error,
|
|
):
|
|
assert not await hass.config_entries.async_setup(mock_config_entry.entry_id)
|
|
|
|
await hass.async_block_till_done()
|
|
|
|
|
|
async def test_unload_entry(
|
|
hass: HomeAssistant,
|
|
init_integration,
|
|
mock_config_entry,
|
|
aioclient_mock: AiohttpClientMocker,
|
|
) -> None:
|
|
"""Test unloading the Prosegur entry."""
|
|
|
|
assert await hass.config_entries.async_unload(mock_config_entry.entry_id)
|