test_roller_shade.py 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223
  1. from unittest.mock import AsyncMock
  2. import pytest
  3. from bleak.backends.device import BLEDevice
  4. from switchbot import SwitchBotAdvertisement, SwitchbotModel
  5. from switchbot.devices import roller_shade
  6. from .test_adv_parser import generate_ble_device
  7. def create_device_for_command_testing(
  8. position=50, calibration=True, reverse_mode=False
  9. ):
  10. ble_device = generate_ble_device("aa:bb:cc:dd:ee:ff", "any")
  11. roller_shade_device = roller_shade.SwitchbotRollerShade(
  12. ble_device, reverse_mode=reverse_mode
  13. )
  14. roller_shade_device.update_from_advertisement(
  15. make_advertisement_data(ble_device, True, position, calibration)
  16. )
  17. roller_shade_device._send_multiple_commands = AsyncMock()
  18. roller_shade_device.update = AsyncMock()
  19. return roller_shade_device
  20. def make_advertisement_data(
  21. ble_device: BLEDevice, in_motion: bool, position: int, calibration: bool = True
  22. ):
  23. """Set advertisement data with defaults."""
  24. return SwitchBotAdvertisement(
  25. address="aa:bb:cc:dd:ee:ff",
  26. data={
  27. "rawAdvData": b",\x00'\x9f\x11\x04",
  28. "data": {
  29. "battery": 39,
  30. "calibration": calibration,
  31. "deviceChain": 1,
  32. "inMotion": in_motion,
  33. "lightLevel": 1,
  34. "position": position,
  35. },
  36. "isEncrypted": False,
  37. "model": ",",
  38. "modelFriendlyName": "Roller Shade",
  39. "modelName": SwitchbotModel.ROLLER_SHADE,
  40. },
  41. device=ble_device,
  42. rssi=-80,
  43. active=True,
  44. )
  45. @pytest.mark.asyncio
  46. async def test_open():
  47. roller_shade_device = create_device_for_command_testing()
  48. await roller_shade_device.open()
  49. assert roller_shade_device.is_opening() is True
  50. assert roller_shade_device.is_closing() is False
  51. roller_shade_device._send_multiple_commands.assert_awaited_once_with(
  52. roller_shade.OPEN_KEYS
  53. )
  54. @pytest.mark.asyncio
  55. async def test_close():
  56. roller_shade_device = create_device_for_command_testing()
  57. await roller_shade_device.close()
  58. assert roller_shade_device.is_opening() is False
  59. assert roller_shade_device.is_closing() is True
  60. roller_shade_device._send_multiple_commands.assert_awaited_once_with(
  61. roller_shade.CLOSE_KEYS
  62. )
  63. @pytest.mark.asyncio
  64. async def test_get_basic_info_returns_none_when_no_data():
  65. roller_shade_device = create_device_for_command_testing()
  66. roller_shade_device._get_basic_info = AsyncMock(return_value=None)
  67. assert await roller_shade_device.get_basic_info() is None
  68. @pytest.mark.asyncio
  69. @pytest.mark.parametrize(
  70. "reverse_mode,data,result",
  71. [
  72. (
  73. True,
  74. bytes([0, 1, 10, 2, 0, 50, 4]),
  75. [1, 1, 2, "anticlockwise", False, False, False, False, False, 50, 4],
  76. ),
  77. (
  78. True,
  79. bytes([0, 1, 10, 2, 214, 50, 4]),
  80. [1, 1, 2, "clockwise", True, False, True, True, True, 50, 4],
  81. ),
  82. ],
  83. )
  84. async def test_get_basic_info(reverse_mode, data, result):
  85. blind_device = create_device_for_command_testing(reverse_mode=reverse_mode)
  86. blind_device._get_basic_info = AsyncMock(return_value=data)
  87. info = await blind_device.get_basic_info()
  88. assert info["battery"] == result[0]
  89. assert info["firmware"] == result[1]
  90. assert info["chainLength"] == result[2]
  91. assert info["openDirection"] == result[3]
  92. assert info["fault"] == result[4]
  93. assert info["solarPanel"] == result[5]
  94. assert info["calibration"] == result[6]
  95. assert info["calibrated"] == result[7]
  96. assert info["inMotion"] == result[8]
  97. assert info["position"] == result[9]
  98. assert info["timers"] == result[10]
  99. @pytest.mark.parametrize("reverse_mode", [(True), (False)])
  100. def test_device_passive_closing(reverse_mode):
  101. """Test passive closing advertisement."""
  102. ble_device = generate_ble_device("aa:bb:cc:dd:ee:ff", "any")
  103. curtain_device = roller_shade.SwitchbotRollerShade(
  104. ble_device, reverse_mode=reverse_mode
  105. )
  106. curtain_device.update_from_advertisement(
  107. make_advertisement_data(ble_device, True, 100)
  108. )
  109. curtain_device.update_from_advertisement(
  110. make_advertisement_data(ble_device, True, 90)
  111. )
  112. assert curtain_device.is_opening() is False
  113. assert curtain_device.is_closing() is True
  114. @pytest.mark.parametrize("reverse_mode", [(True), (False)])
  115. def test_device_passive_opening_then_stop(reverse_mode):
  116. """Test passive stopped after opening advertisement."""
  117. ble_device = generate_ble_device("aa:bb:cc:dd:ee:ff", "any")
  118. curtain_device = roller_shade.SwitchbotRollerShade(
  119. ble_device, reverse_mode=reverse_mode
  120. )
  121. curtain_device.update_from_advertisement(
  122. make_advertisement_data(ble_device, True, 0)
  123. )
  124. curtain_device.update_from_advertisement(
  125. make_advertisement_data(ble_device, True, 10)
  126. )
  127. curtain_device.update_from_advertisement(
  128. make_advertisement_data(ble_device, False, 10)
  129. )
  130. assert curtain_device.is_opening() is False
  131. assert curtain_device.is_closing() is False
  132. @pytest.mark.parametrize("reverse_mode", [(True), (False)])
  133. def test_device_passive_closing_then_stop(reverse_mode):
  134. """Test passive stopped after closing advertisement."""
  135. ble_device = generate_ble_device("aa:bb:cc:dd:ee:ff", "any")
  136. curtain_device = roller_shade.SwitchbotRollerShade(
  137. ble_device, reverse_mode=reverse_mode
  138. )
  139. curtain_device.update_from_advertisement(
  140. make_advertisement_data(ble_device, True, 100)
  141. )
  142. curtain_device.update_from_advertisement(
  143. make_advertisement_data(ble_device, True, 90)
  144. )
  145. curtain_device.update_from_advertisement(
  146. make_advertisement_data(ble_device, False, 90)
  147. )
  148. assert curtain_device.is_opening() is False
  149. assert curtain_device.is_closing() is False
  150. @pytest.mark.asyncio
  151. async def test_stop():
  152. curtain_device = create_device_for_command_testing()
  153. await curtain_device.stop()
  154. assert curtain_device.is_opening() is False
  155. assert curtain_device.is_closing() is False
  156. curtain_device._send_multiple_commands.assert_awaited_once_with(
  157. roller_shade.STOP_KEYS
  158. )
  159. @pytest.mark.asyncio
  160. async def test_set_position_opening():
  161. curtain_device = create_device_for_command_testing(reverse_mode=True)
  162. await curtain_device.set_position(0)
  163. assert curtain_device.is_opening() is True
  164. assert curtain_device.is_closing() is False
  165. curtain_device._send_multiple_commands.assert_awaited_once()
  166. @pytest.mark.asyncio
  167. async def test_set_position_closing():
  168. curtain_device = create_device_for_command_testing(reverse_mode=True)
  169. await curtain_device.set_position(100)
  170. assert curtain_device.is_opening() is False
  171. assert curtain_device.is_closing() is True
  172. curtain_device._send_multiple_commands.assert_awaited_once()
  173. def test_get_position():
  174. curtain_device = create_device_for_command_testing()
  175. assert curtain_device.get_position() == 50
  176. def test_update_motion_direction_with_no_previous_position():
  177. curtain_device = create_device_for_command_testing(reverse_mode=True)
  178. curtain_device._update_motion_direction(True, None, 100)
  179. assert curtain_device.is_opening() is False
  180. assert curtain_device.is_closing() is False
  181. def test_update_motion_direction_with_previous_position():
  182. curtain_device = create_device_for_command_testing(reverse_mode=True)
  183. curtain_device._update_motion_direction(True, 50, 100)
  184. assert curtain_device.is_opening() is True
  185. assert curtain_device.is_closing() is False