90 lines
2.5 KiB
Python
90 lines
2.5 KiB
Python
"""Test Scrape component setup process."""
|
|
from __future__ import annotations
|
|
|
|
from unittest.mock import patch
|
|
|
|
from homeassistant.components.scrape.const import DOMAIN
|
|
from homeassistant.config_entries import ConfigEntryState
|
|
from homeassistant.core import HomeAssistant
|
|
|
|
from . import MockRestData
|
|
|
|
from tests.common import MockConfigEntry
|
|
|
|
TEST_CONFIG = {
|
|
"resource": "https://www.home-assistant.io",
|
|
"name": "Release",
|
|
"select": ".current-version h1",
|
|
"value_template": "{{ value.split(':')[1] }}",
|
|
"index": 0,
|
|
"verify_ssl": True,
|
|
}
|
|
|
|
|
|
async def test_setup_entry(hass: HomeAssistant) -> None:
|
|
"""Test setup entry."""
|
|
entry = MockConfigEntry(
|
|
domain=DOMAIN,
|
|
data={},
|
|
options=TEST_CONFIG,
|
|
title="Release",
|
|
)
|
|
entry.add_to_hass(hass)
|
|
|
|
with patch(
|
|
"homeassistant.components.scrape.RestData",
|
|
return_value=MockRestData("test_scrape_sensor"),
|
|
):
|
|
await hass.config_entries.async_setup(entry.entry_id)
|
|
await hass.async_block_till_done()
|
|
|
|
state = hass.states.get("sensor.release")
|
|
assert state
|
|
|
|
|
|
async def test_setup_entry_no_data_fails(hass: HomeAssistant) -> None:
|
|
"""Test setup entry no data fails."""
|
|
entry = MockConfigEntry(
|
|
domain=DOMAIN, data={}, options=TEST_CONFIG, title="Release", entry_id="1"
|
|
)
|
|
entry.add_to_hass(hass)
|
|
|
|
with patch(
|
|
"homeassistant.components.scrape.RestData",
|
|
return_value=MockRestData("test_scrape_sensor_no_data"),
|
|
):
|
|
await hass.config_entries.async_setup(entry.entry_id)
|
|
await hass.async_block_till_done()
|
|
|
|
state = hass.states.get("sensor.ha_version")
|
|
assert state is None
|
|
entry = hass.config_entries.async_get_entry("1")
|
|
assert entry.state == ConfigEntryState.SETUP_RETRY
|
|
|
|
|
|
async def test_remove_entry(hass: HomeAssistant) -> None:
|
|
"""Test remove entry."""
|
|
entry = MockConfigEntry(
|
|
domain=DOMAIN,
|
|
data={},
|
|
options=TEST_CONFIG,
|
|
title="Release",
|
|
)
|
|
entry.add_to_hass(hass)
|
|
|
|
with patch(
|
|
"homeassistant.components.scrape.RestData",
|
|
return_value=MockRestData("test_scrape_sensor"),
|
|
):
|
|
await hass.config_entries.async_setup(entry.entry_id)
|
|
await hass.async_block_till_done()
|
|
|
|
state = hass.states.get("sensor.release")
|
|
assert state
|
|
|
|
await hass.config_entries.async_remove(entry.entry_id)
|
|
await hass.async_block_till_done()
|
|
|
|
state = hass.states.get("sensor.release")
|
|
assert not state
|