mirror of
https://github.com/home-assistant/core.git
synced 2025-04-23 08:47:57 +00:00
parent
d5f883fbf0
commit
ea7f2af966
@ -60,6 +60,7 @@ def blink_api_fixture(camera) -> MagicMock:
|
||||
mock_blink_api.refresh = AsyncMock(return_value=True)
|
||||
mock_blink_api.sync = MagicMock(return_value=True)
|
||||
mock_blink_api.cameras = {camera.name: camera}
|
||||
mock_blink_api.request_homescreen = AsyncMock(return_value=True)
|
||||
|
||||
with patch("homeassistant.components.blink.Blink") as class_mock:
|
||||
class_mock.return_value = mock_blink_api
|
||||
|
@ -1,8 +1,9 @@
|
||||
"""Test the Blink init."""
|
||||
|
||||
from unittest.mock import AsyncMock, MagicMock
|
||||
from unittest.mock import AsyncMock, MagicMock, patch
|
||||
|
||||
from aiohttp import ClientError
|
||||
from blinkpy.auth import LoginError
|
||||
import pytest
|
||||
|
||||
from homeassistant.components.blink.const import (
|
||||
@ -53,9 +54,16 @@ async def test_setup_not_ready_authkey_required(
|
||||
"""Test setup failed because 2FA is needed to connect to the Blink system."""
|
||||
|
||||
mock_blink_auth_api.check_key_required = MagicMock(return_value=True)
|
||||
mock_blink_auth_api.send_auth_key = AsyncMock(return_value=False)
|
||||
|
||||
mock_config_entry.add_to_hass(hass)
|
||||
assert not await hass.config_entries.async_setup(mock_config_entry.entry_id)
|
||||
with patch(
|
||||
"homeassistant.components.blink.config_flow.Auth.startup",
|
||||
side_effect=LoginError,
|
||||
):
|
||||
assert not 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
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user