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 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240
|
from unittest.mock import AsyncMock
import pytest
from bleak.backends.device import BLEDevice
from switchbot import SwitchBotAdvertisement, SwitchbotModel
from switchbot.devices import blind_tilt
from switchbot.devices.base_cover import COVER_EXT_SUM_KEY
from .test_adv_parser import generate_ble_device
def create_device_for_command_testing(
position=50, calibration=True, reverse_mode=False
):
ble_device = generate_ble_device("aa:bb:cc:dd:ee:ff", "any")
curtain_device = blind_tilt.SwitchbotBlindTilt(
ble_device, reverse_mode=reverse_mode
)
curtain_device.update_from_advertisement(
make_advertisement_data(ble_device, True, position, calibration)
)
curtain_device._send_multiple_commands = AsyncMock()
curtain_device.update = AsyncMock()
return curtain_device
def make_advertisement_data(
ble_device: BLEDevice, in_motion: bool, position: int, calibration: bool = True
):
"""Set advertisement data with defaults."""
return SwitchBotAdvertisement(
address="aa:bb:cc:dd:ee:ff",
data={
"rawAdvData": b"c\xc0X\x00\x11\x04",
"data": {
"calibration": calibration,
"battery": 88,
"inMotion": in_motion,
"tilt": position,
"lightLevel": 1,
"deviceChain": 1,
},
"isEncrypted": False,
"model": "c",
"modelFriendlyName": "Curtain",
"modelName": SwitchbotModel.CURTAIN,
},
device=ble_device,
rssi=-80,
active=True,
)
@pytest.mark.asyncio
async def test_open():
blind_device = create_device_for_command_testing()
await blind_device.open()
blind_device._send_multiple_commands.assert_awaited_once_with(blind_tilt.OPEN_KEYS)
@pytest.mark.asyncio
@pytest.mark.parametrize(
("position", "keys"),
[(5, blind_tilt.CLOSE_DOWN_KEYS), (55, blind_tilt.CLOSE_UP_KEYS)],
)
async def test_close(position, keys):
blind_device = create_device_for_command_testing(position=position)
await blind_device.close()
blind_device._send_multiple_commands.assert_awaited_once_with(keys)
@pytest.mark.asyncio
async def test_get_basic_info_returns_none_when_no_data():
blind_device = create_device_for_command_testing()
blind_device._get_basic_info = AsyncMock(return_value=None)
assert await blind_device.get_basic_info() is None
@pytest.mark.asyncio
@pytest.mark.parametrize(
("reverse_mode", "data", "result"),
[
(
False,
bytes([0, 1, 10, 2, 255, 255, 50, 4]),
[1, 1, 1, 1, 1, True, False, False, True, 50, 4],
),
(
False,
bytes([0, 1, 10, 2, 0, 0, 50, 4]),
[1, 1, 0, 0, 0, False, False, False, False, 50, 4],
),
(
False,
bytes([0, 1, 10, 2, 0, 1, 50, 4]),
[1, 1, 0, 0, 1, False, True, False, True, 50, 4],
),
(
True,
bytes([0, 1, 10, 2, 255, 255, 50, 4]),
[1, 1, 1, 1, 1, True, False, True, False, 50, 4],
),
(
True,
bytes([0, 1, 10, 2, 0, 0, 50, 4]),
[1, 1, 0, 0, 0, False, False, False, False, 50, 4],
),
(
True,
bytes([0, 1, 10, 2, 0, 1, 50, 4]),
[1, 1, 0, 0, 1, False, True, False, True, 50, 4],
),
],
)
async def test_get_basic_info(reverse_mode, data, result):
blind_device = create_device_for_command_testing(reverse_mode=reverse_mode)
blind_device._get_basic_info = AsyncMock(return_value=data)
info = await blind_device.get_basic_info()
assert info["battery"] == result[0]
assert info["firmware"] == result[1]
assert info["light"] == result[2]
assert info["fault"] == result[2]
assert info["solarPanel"] == result[3]
assert info["calibration"] == result[3]
assert info["calibrated"] == result[3]
assert info["inMotion"] == result[4]
assert info["motionDirection"]["opening"] == result[5]
assert info["motionDirection"]["closing"] == result[6]
assert info["motionDirection"]["up"] == result[7]
assert info["motionDirection"]["down"] == result[8]
assert info["tilt"] == result[9]
assert info["timers"] == result[10]
@pytest.mark.asyncio
async def test_get_extended_info_summary_sends_command():
blind_device = create_device_for_command_testing()
blind_device._send_command = AsyncMock()
await blind_device.get_extended_info_summary()
blind_device._send_command.assert_awaited_once_with(key=COVER_EXT_SUM_KEY)
@pytest.mark.asyncio
@pytest.mark.parametrize("data_value", [(None), (b"\x07"), (b"\x00")])
async def test_get_extended_info_summary_returns_none_when_bad_data(data_value):
blind_device = create_device_for_command_testing()
blind_device._send_command = AsyncMock(return_value=data_value)
assert await blind_device.get_extended_info_summary() is None
@pytest.mark.asyncio
@pytest.mark.parametrize(
("data", "result"), [(bytes([0, 0]), False), (bytes([0, 255]), True)]
)
async def test_get_extended_info_summary(data, result):
blind_device = create_device_for_command_testing()
blind_device._send_command = AsyncMock(return_value=data)
ext_result = await blind_device.get_extended_info_summary()
assert ext_result["device0"]["light"] == result
@pytest.mark.parametrize("reverse_mode", [(True), (False)])
def test_device_passive_opening(reverse_mode):
"""Test passive opening advertisement."""
ble_device = generate_ble_device("aa:bb:cc:dd:ee:ff", "any")
curtain_device = blind_tilt.SwitchbotBlindTilt(
ble_device, reverse_mode=reverse_mode
)
curtain_device.update_from_advertisement(
make_advertisement_data(ble_device, True, 0)
)
curtain_device.update_from_advertisement(
make_advertisement_data(ble_device, True, 10)
)
assert curtain_device.is_opening() is True
assert curtain_device.is_closing() is False
@pytest.mark.parametrize("reverse_mode", [(True), (False)])
def test_device_passive_closing(reverse_mode):
"""Test passive closing advertisement."""
ble_device = generate_ble_device("aa:bb:cc:dd:ee:ff", "any")
curtain_device = blind_tilt.SwitchbotBlindTilt(
ble_device, reverse_mode=reverse_mode
)
curtain_device.update_from_advertisement(
make_advertisement_data(ble_device, True, 100)
)
curtain_device.update_from_advertisement(
make_advertisement_data(ble_device, True, 90)
)
assert curtain_device.is_opening() is False
assert curtain_device.is_closing() is True
@pytest.mark.parametrize("reverse_mode", [(True), (False)])
def test_device_passive_opening_then_stop(reverse_mode):
"""Test passive stopped after opening advertisement."""
ble_device = generate_ble_device("aa:bb:cc:dd:ee:ff", "any")
curtain_device = blind_tilt.SwitchbotBlindTilt(
ble_device, reverse_mode=reverse_mode
)
curtain_device.update_from_advertisement(
make_advertisement_data(ble_device, True, 0)
)
curtain_device.update_from_advertisement(
make_advertisement_data(ble_device, True, 10)
)
curtain_device.update_from_advertisement(
make_advertisement_data(ble_device, False, 10)
)
assert curtain_device.is_opening() is False
assert curtain_device.is_closing() is False
@pytest.mark.parametrize("reverse_mode", [(True), (False)])
def test_device_passive_closing_then_stop(reverse_mode):
"""Test passive stopped after closing advertisement."""
ble_device = generate_ble_device("aa:bb:cc:dd:ee:ff", "any")
curtain_device = blind_tilt.SwitchbotBlindTilt(
ble_device, reverse_mode=reverse_mode
)
curtain_device.update_from_advertisement(
make_advertisement_data(ble_device, True, 100)
)
curtain_device.update_from_advertisement(
make_advertisement_data(ble_device, True, 90)
)
curtain_device.update_from_advertisement(
make_advertisement_data(ble_device, False, 90)
)
assert curtain_device.is_opening() is False
assert curtain_device.is_closing() is False
|