mirror of
https://github.com/home-assistant/core.git
synced 2026-07-01 03:36:05 +01:00
42 lines
1.3 KiB
Python
42 lines
1.3 KiB
Python
"""Test the LED BLE integration init."""
|
|
|
|
from unittest.mock import patch
|
|
|
|
import pytest
|
|
|
|
from homeassistant.components.led_ble.const import DOMAIN
|
|
from homeassistant.config_entries import ConfigEntryState
|
|
from homeassistant.const import CONF_ADDRESS
|
|
from homeassistant.core import HomeAssistant
|
|
|
|
from . import LED_BLE_DISCOVERY_INFO
|
|
|
|
from tests.common import MockConfigEntry
|
|
|
|
|
|
async def test_setup_retries_when_device_not_found(
|
|
hass: HomeAssistant,
|
|
caplog: pytest.LogCaptureFixture,
|
|
) -> None:
|
|
"""Test setup is retried with a diagnostic reason when the device is missing."""
|
|
entry = MockConfigEntry(
|
|
domain=DOMAIN,
|
|
unique_id=LED_BLE_DISCOVERY_INFO.address,
|
|
data={CONF_ADDRESS: LED_BLE_DISCOVERY_INFO.address},
|
|
)
|
|
entry.add_to_hass(hass)
|
|
|
|
with patch(
|
|
"homeassistant.components.led_ble.bluetooth."
|
|
"async_address_reachability_diagnostics",
|
|
return_value="mock reachability reason",
|
|
):
|
|
await hass.config_entries.async_setup(entry.entry_id)
|
|
await hass.async_block_till_done()
|
|
|
|
assert entry.state is ConfigEntryState.SETUP_RETRY
|
|
assert (
|
|
"Could not find LED BLE device with address "
|
|
f"{LED_BLE_DISCOVERY_INFO.address}: mock reachability reason" in caplog.text
|
|
)
|