-
-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathtest__init.py
56 lines (37 loc) · 1.81 KB
/
test__init.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
"""The test for the average integration."""
# pylint: disable=redefined-outer-name
from __future__ import annotations
from unittest.mock import patch
from homeassistant import config as hass_config
from homeassistant.components.sensor import DOMAIN as SENSOR_DOMAIN
from homeassistant.const import SERVICE_RELOAD
from homeassistant.setup import async_setup_component
from custom_components.average.const import DOMAIN
from . import get_fixture_path
from .const import MOCK_CONFIG, TEST_NAME
async def test_reload(hass):
"""Verify we can reload."""
assert await async_setup_component(hass, SENSOR_DOMAIN, MOCK_CONFIG)
await hass.async_block_till_done()
await hass.async_start()
await hass.async_block_till_done()
assert len(hass.states.async_all()) == 1
assert hass.states.get(f"{SENSOR_DOMAIN}.{TEST_NAME}")
yaml_path = get_fixture_path("configuration.yaml")
with patch.object(hass_config, "YAML_CONFIG_FILE", yaml_path):
await hass.services.async_call(DOMAIN, SERVICE_RELOAD, {}, blocking=True)
await hass.async_block_till_done()
assert hass.states.get(f"{SENSOR_DOMAIN}.{TEST_NAME}")
async def test_reload_and_remove_all(hass):
"""Verify we can reload and remove all."""
assert await async_setup_component(hass, SENSOR_DOMAIN, MOCK_CONFIG)
await hass.async_block_till_done()
await hass.async_start()
await hass.async_block_till_done()
assert len(hass.states.async_all()) == 1
assert hass.states.get(f"{SENSOR_DOMAIN}.{TEST_NAME}")
yaml_path = get_fixture_path("configuration_empty.yaml")
with patch.object(hass_config, "YAML_CONFIG_FILE", yaml_path):
await hass.services.async_call(DOMAIN, SERVICE_RELOAD, {}, blocking=True)
await hass.async_block_till_done()
assert hass.states.get(f"{SENSOR_DOMAIN}.{TEST_NAME}") is None