35 lines
1.1 KiB
Python
35 lines
1.1 KiB
Python
|
"""Test util for the homekit integration."""
|
||
|
|
||
|
from asynctest import patch
|
||
|
|
||
|
from homeassistant.components.homekit.const import DOMAIN
|
||
|
from homeassistant.const import CONF_NAME, CONF_PORT
|
||
|
from homeassistant.core import HomeAssistant
|
||
|
|
||
|
from tests.common import MockConfigEntry
|
||
|
|
||
|
PATH_HOMEKIT = "homeassistant.components.homekit"
|
||
|
|
||
|
|
||
|
async def async_init_integration(hass: HomeAssistant) -> MockConfigEntry:
|
||
|
"""Set up the homekit integration in Home Assistant."""
|
||
|
|
||
|
with patch(f"{PATH_HOMEKIT}.HomeKit.async_start"):
|
||
|
entry = MockConfigEntry(
|
||
|
domain=DOMAIN, data={CONF_NAME: "mock_name", CONF_PORT: 12345}
|
||
|
)
|
||
|
entry.add_to_hass(hass)
|
||
|
assert await hass.config_entries.async_setup(entry.entry_id)
|
||
|
await hass.async_block_till_done()
|
||
|
return entry
|
||
|
|
||
|
|
||
|
async def async_init_entry(hass: HomeAssistant, entry: MockConfigEntry):
|
||
|
"""Set up the homekit integration in Home Assistant."""
|
||
|
|
||
|
with patch(f"{PATH_HOMEKIT}.HomeKit.async_start"):
|
||
|
entry.add_to_hass(hass)
|
||
|
assert await hass.config_entries.async_setup(entry.entry_id)
|
||
|
await hass.async_block_till_done()
|
||
|
return entry
|