-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathtest_binary_sensor.py
153 lines (125 loc) · 3.99 KB
/
test_binary_sensor.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
"""Test binary sensor platform."""
import copy
from datetime import timedelta
import logging
from homeassistant.components.number import (
ATTR_VALUE,
DOMAIN as NUMBER_DOMAIN,
SERVICE_SET_VALUE as NUMBER_SERVICE_SET_VALUE,
)
from homeassistant.components.switch import (
DOMAIN as SWITCH_DOMAIN,
SERVICE_TURN_OFF,
SERVICE_TURN_ON,
)
from homeassistant.components.text import (
DOMAIN as TEXT_DOMAIN,
SERVICE_SET_VALUE as TEXT_SERVICE_SET_VALUE,
)
from homeassistant.const import ATTR_ENTITY_ID, STATE_OFF, STATE_ON
from homeassistant.core import HomeAssistant
from homeassistant.util import dt as dt_util
from custom_components.lock_code_manager.const import CONF_CALENDAR, CONF_SLOTS
from .common import (
ACTIVE_ENTITY,
BASE_CONFIG,
ENABLED_ENTITY,
LOCK_1_ENTITY_ID,
LOCK_DATA,
NUMBER_OF_USES_ENTITY,
PIN_ENTITY,
)
_LOGGER = logging.getLogger(__name__)
async def test_binary_sensor_entity(
hass: HomeAssistant,
mock_lock_config_entry,
lock_code_manager_config_entry,
):
"""Test sensor entity."""
calendar_1, calendar_2 = hass.data["lock_code_manager_calendars"]
state = hass.states.get("calendar.test_1")
assert state
assert state.state == STATE_OFF
state = hass.states.get(ACTIVE_ENTITY)
assert state
assert state.state == STATE_OFF
now = dt_util.utcnow()
start = now - timedelta(hours=1)
end = now + timedelta(hours=1)
cal_event = calendar_1.create_event(dtstart=start, dtend=end, summary="test")
await hass.async_block_till_done()
state = hass.states.get(ACTIVE_ENTITY)
assert state
assert state.state == STATE_ON
calendar_1.delete_event(cal_event.uid)
await hass.async_block_till_done()
state = hass.states.get(ACTIVE_ENTITY)
assert state
assert state.state == STATE_OFF
calendar_1.create_event(dtstart=start, dtend=end, summary="test")
await hass.async_block_till_done()
state = hass.states.get(ACTIVE_ENTITY)
assert state
assert state.state == STATE_ON
await hass.services.async_call(
NUMBER_DOMAIN,
NUMBER_SERVICE_SET_VALUE,
service_data={ATTR_VALUE: "0"},
target={ATTR_ENTITY_ID: NUMBER_OF_USES_ENTITY},
blocking=True,
)
await hass.async_block_till_done()
state = hass.states.get(ACTIVE_ENTITY)
assert state
assert state.state == STATE_OFF
await hass.services.async_call(
NUMBER_DOMAIN,
NUMBER_SERVICE_SET_VALUE,
service_data={ATTR_VALUE: "5"},
target={ATTR_ENTITY_ID: NUMBER_OF_USES_ENTITY},
blocking=True,
)
await hass.async_block_till_done()
state = hass.states.get(ACTIVE_ENTITY)
assert state
assert state.state == STATE_ON
await hass.services.async_call(
SWITCH_DOMAIN,
SERVICE_TURN_OFF,
target={ATTR_ENTITY_ID: ENABLED_ENTITY},
blocking=True,
)
await hass.async_block_till_done()
state = hass.states.get(ACTIVE_ENTITY)
assert state
assert state.state == STATE_OFF
await hass.services.async_call(
SWITCH_DOMAIN,
SERVICE_TURN_ON,
target={ATTR_ENTITY_ID: ENABLED_ENTITY},
blocking=True,
)
await hass.async_block_till_done()
state = hass.states.get(ACTIVE_ENTITY)
assert state
assert state.state == STATE_ON
await hass.services.async_call(
TEXT_DOMAIN,
TEXT_SERVICE_SET_VALUE,
service_data={ATTR_VALUE: "0987"},
target={ATTR_ENTITY_ID: PIN_ENTITY},
blocking=True,
)
await hass.async_block_till_done()
assert hass.data[LOCK_DATA][LOCK_1_ENTITY_ID]["service_calls"]["set_usercode"][
-1
] == (2, "0987", "test2")
new_config = copy.deepcopy(BASE_CONFIG)
new_config[CONF_SLOTS][2][CONF_CALENDAR] = "calendar.test_2"
hass.config_entries.async_update_entry(
lock_code_manager_config_entry, options=new_config
)
await hass.async_block_till_done()
state = hass.states.get(ACTIVE_ENTITY)
assert state
assert state.state == STATE_OFF