25 lines
751 B
Python
25 lines
751 B
Python
"""Test fixtures for the Open Thread Border Router integration."""
|
|
from unittest.mock import patch
|
|
|
|
import pytest
|
|
|
|
from homeassistant.components import otbr
|
|
|
|
from tests.common import MockConfigEntry
|
|
|
|
CONFIG_ENTRY_DATA = {"url": "http://core-silabs-multiprotocol:8081"}
|
|
|
|
|
|
@pytest.fixture(name="otbr_config_entry")
|
|
async def otbr_config_entry_fixture(hass):
|
|
"""Mock Open Thread Border Router config entry."""
|
|
config_entry = MockConfigEntry(
|
|
data=CONFIG_ENTRY_DATA,
|
|
domain=otbr.DOMAIN,
|
|
options={},
|
|
title="Open Thread Border Router",
|
|
)
|
|
config_entry.add_to_hass(hass)
|
|
with patch("python_otbr_api.OTBR.get_active_dataset_tlvs"):
|
|
assert await hass.config_entries.async_setup(config_entry.entry_id)
|