71 lines
2.0 KiB
Python
71 lines
2.0 KiB
Python
"""Test the ibeacon init."""
|
|
|
|
import pytest
|
|
|
|
from homeassistant.components.ibeacon.const import DOMAIN
|
|
from homeassistant.helpers import device_registry as dr
|
|
from homeassistant.setup import async_setup_component
|
|
|
|
from . import BLUECHARM_BEACON_SERVICE_INFO
|
|
|
|
from tests.common import MockConfigEntry
|
|
from tests.components.bluetooth import inject_bluetooth_service_info
|
|
|
|
|
|
@pytest.fixture(autouse=True)
|
|
def mock_bluetooth(enable_bluetooth):
|
|
"""Auto mock bluetooth."""
|
|
|
|
|
|
async def remove_device(ws_client, device_id, config_entry_id):
|
|
"""Remove config entry from a device."""
|
|
await ws_client.send_json(
|
|
{
|
|
"id": 5,
|
|
"type": "config/device_registry/remove_config_entry",
|
|
"config_entry_id": config_entry_id,
|
|
"device_id": device_id,
|
|
}
|
|
)
|
|
response = await ws_client.receive_json()
|
|
return response["success"]
|
|
|
|
|
|
async def test_device_remove_devices(hass, hass_ws_client):
|
|
"""Test we can only remove a device that no longer exists."""
|
|
entry = MockConfigEntry(
|
|
domain=DOMAIN,
|
|
)
|
|
entry.add_to_hass(hass)
|
|
assert await async_setup_component(hass, "config", {})
|
|
|
|
assert await hass.config_entries.async_setup(entry.entry_id)
|
|
await hass.async_block_till_done()
|
|
inject_bluetooth_service_info(hass, BLUECHARM_BEACON_SERVICE_INFO)
|
|
await hass.async_block_till_done()
|
|
device_registry = dr.async_get(hass)
|
|
|
|
device_entry = device_registry.async_get_device(
|
|
{
|
|
(
|
|
DOMAIN,
|
|
"426c7565-4368-6172-6d42-6561636f6e73_3838_4949_61DE521B-F0BF-9F44-64D4-75BBE1738105",
|
|
)
|
|
},
|
|
{},
|
|
)
|
|
assert (
|
|
await remove_device(await hass_ws_client(hass), device_entry.id, entry.entry_id)
|
|
is False
|
|
)
|
|
dead_device_entry = device_registry.async_get_or_create(
|
|
config_entry_id=entry.entry_id,
|
|
identifiers={(DOMAIN, "not_seen")},
|
|
)
|
|
assert (
|
|
await remove_device(
|
|
await hass_ws_client(hass), dead_device_entry.id, entry.entry_id
|
|
)
|
|
is True
|
|
)
|