1
0
mirror of https://github.com/home-assistant/core.git synced 2025-09-22 19:39:36 +00:00
Files
core/tests/components/local_ip/test_init.py
2021-10-04 15:33:13 +02:00

21 lines
727 B
Python

"""Tests for the local_ip component."""
from homeassistant.components.local_ip import DOMAIN
from homeassistant.components.network import async_get_source_ip
from homeassistant.components.zeroconf import MDNS_TARGET_IP
from tests.common import MockConfigEntry
async def test_basic_setup(hass, mock_get_source_ip):
"""Test component setup creates entry from config."""
entry = MockConfigEntry(domain=DOMAIN, data={})
entry.add_to_hass(hass)
await hass.config_entries.async_setup(entry.entry_id)
await hass.async_block_till_done()
local_ip = await async_get_source_ip(hass, target_ip=MDNS_TARGET_IP)
state = hass.states.get(f"sensor.{DOMAIN}")
assert state
assert state.state == local_ip