32 lines
982 B
Python
32 lines
982 B
Python
"""Test the default_config init."""
|
|
from unittest.mock import patch
|
|
|
|
import pytest
|
|
|
|
from homeassistant.helpers import recorder as recorder_helper
|
|
from homeassistant.setup import async_setup_component
|
|
|
|
from tests.components.blueprint.conftest import stub_blueprint_populate # noqa: F401
|
|
|
|
|
|
@pytest.fixture(autouse=True)
|
|
def mock_ssdp():
|
|
"""Mock ssdp."""
|
|
with patch("homeassistant.components.ssdp.Scanner.async_scan"), patch(
|
|
"homeassistant.components.ssdp.Server.async_start"
|
|
), patch("homeassistant.components.ssdp.Server.async_stop"):
|
|
yield
|
|
|
|
|
|
@pytest.fixture(autouse=True)
|
|
def recorder_url_mock():
|
|
"""Mock recorder url."""
|
|
with patch("homeassistant.components.recorder.DEFAULT_URL", "sqlite://"):
|
|
yield
|
|
|
|
|
|
async def test_setup(hass, mock_zeroconf, mock_get_source_ip, mock_bluetooth):
|
|
"""Test setup."""
|
|
recorder_helper.async_initialize_recorder(hass)
|
|
assert await async_setup_component(hass, "default_config", {"foo": "bar"})
|