test_switchbot_button_automator.py 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193
  1. # switchbot-mqtt - MQTT client controlling SwitchBot button & curtain automators,
  2. # compatible with home-assistant.io's MQTT Switch & Cover platform
  3. #
  4. # Copyright (C) 2020 Fabian Peter Hammerle <fabian@hammerle.me>
  5. #
  6. # This program is free software: you can redistribute it and/or modify
  7. # it under the terms of the GNU General Public License as published by
  8. # the Free Software Foundation, either version 3 of the License, or
  9. # any later version.
  10. #
  11. # This program is distributed in the hope that it will be useful,
  12. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. # GNU General Public License for more details.
  15. #
  16. # You should have received a copy of the GNU General Public License
  17. # along with this program. If not, see <https://www.gnu.org/licenses/>.
  18. import logging
  19. import unittest.mock
  20. import bluepy.btle
  21. import pytest
  22. import switchbot_mqtt
  23. # pylint: disable=protected-access
  24. # pylint: disable=too-many-arguments; these are tests, no API
  25. @pytest.mark.parametrize("mac_address", ["{MAC_ADDRESS}", "aa:bb:cc:dd:ee:ff"])
  26. def test_get_mqtt_battery_percentage_topic(mac_address):
  27. assert (
  28. switchbot_mqtt._CurtainMotor.get_mqtt_battery_percentage_topic(
  29. mac_address=mac_address
  30. )
  31. == f"homeassistant/cover/switchbot-curtain/{mac_address}/battery-percentage"
  32. )
  33. @pytest.mark.parametrize(("battery_percent", "battery_percent_encoded"), [(42, b"42")])
  34. def test__update_and_report_device_info(
  35. battery_percent: int, battery_percent_encoded: bytes
  36. ):
  37. with unittest.mock.patch("switchbot.SwitchbotCurtain.__init__", return_value=None):
  38. actor = switchbot_mqtt._ButtonAutomator(
  39. mac_address="dummy", retry_count=21, password=None
  40. )
  41. actor._get_device()._battery_percent = battery_percent
  42. mqtt_client_mock = unittest.mock.MagicMock()
  43. with unittest.mock.patch("switchbot.Switchbot.update") as update_mock:
  44. actor._update_and_report_device_info(mqtt_client=mqtt_client_mock)
  45. update_mock.assert_called_once_with()
  46. mqtt_client_mock.publish.assert_called_once_with(
  47. topic="homeassistant/cover/switchbot/dummy/battery-percentage",
  48. payload=battery_percent_encoded,
  49. retain=True,
  50. )
  51. @pytest.mark.parametrize("mac_address", ["aa:bb:cc:dd:ee:ff", "aa:bb:cc:11:22:33"])
  52. @pytest.mark.parametrize("password", (None, "secret"))
  53. @pytest.mark.parametrize("retry_count", (3, 21))
  54. @pytest.mark.parametrize(
  55. ("message_payload", "action_name"),
  56. [
  57. (b"on", "switchbot.Switchbot.turn_on"),
  58. (b"ON", "switchbot.Switchbot.turn_on"),
  59. (b"On", "switchbot.Switchbot.turn_on"),
  60. (b"off", "switchbot.Switchbot.turn_off"),
  61. (b"OFF", "switchbot.Switchbot.turn_off"),
  62. (b"Off", "switchbot.Switchbot.turn_off"),
  63. ],
  64. )
  65. @pytest.mark.parametrize("update_device_info", [True, False])
  66. @pytest.mark.parametrize("command_successful", [True, False])
  67. def test_execute_command(
  68. caplog,
  69. mac_address,
  70. password,
  71. retry_count,
  72. message_payload,
  73. action_name,
  74. update_device_info,
  75. command_successful,
  76. ):
  77. with unittest.mock.patch(
  78. "switchbot.Switchbot.__init__", return_value=None
  79. ) as device_init_mock, caplog.at_level(logging.INFO):
  80. actor = switchbot_mqtt._ButtonAutomator(
  81. mac_address=mac_address, retry_count=retry_count, password=password
  82. )
  83. with unittest.mock.patch.object(
  84. actor, "report_state"
  85. ) as report_mock, unittest.mock.patch(
  86. action_name, return_value=command_successful
  87. ) as action_mock, unittest.mock.patch.object(
  88. actor, "_update_and_report_device_info"
  89. ) as update_device_info_mock:
  90. actor.execute_command(
  91. mqtt_client="dummy",
  92. mqtt_message_payload=message_payload,
  93. update_device_info=update_device_info,
  94. )
  95. device_init_mock.assert_called_once_with(
  96. mac=mac_address, password=password, retry_count=retry_count
  97. )
  98. action_mock.assert_called_once_with()
  99. if command_successful:
  100. assert caplog.record_tuples == [
  101. (
  102. "switchbot_mqtt",
  103. logging.INFO,
  104. f"switchbot {mac_address} turned {message_payload.decode().lower()}",
  105. )
  106. ]
  107. report_mock.assert_called_once_with(
  108. mqtt_client="dummy", state=message_payload.upper()
  109. )
  110. assert update_device_info_mock.call_count == (1 if update_device_info else 0)
  111. else:
  112. assert caplog.record_tuples == [
  113. (
  114. "switchbot_mqtt",
  115. logging.ERROR,
  116. f"failed to turn {message_payload.decode().lower()} switchbot {mac_address}",
  117. )
  118. ]
  119. report_mock.assert_not_called()
  120. update_device_info_mock.assert_not_called()
  121. @pytest.mark.parametrize("mac_address", ["aa:bb:cc:dd:ee:ff"])
  122. @pytest.mark.parametrize("message_payload", [b"EIN", b""])
  123. def test_execute_command_invalid_payload(caplog, mac_address, message_payload):
  124. with unittest.mock.patch("switchbot.Switchbot") as device_mock, caplog.at_level(
  125. logging.INFO
  126. ):
  127. actor = switchbot_mqtt._ButtonAutomator(
  128. mac_address=mac_address, retry_count=21, password=None
  129. )
  130. with unittest.mock.patch.object(actor, "report_state") as report_mock:
  131. actor.execute_command(
  132. mqtt_client="dummy",
  133. mqtt_message_payload=message_payload,
  134. update_device_info=True,
  135. )
  136. device_mock.assert_called_once_with(mac=mac_address, retry_count=21, password=None)
  137. assert not device_mock().mock_calls # no methods called
  138. report_mock.assert_not_called()
  139. assert caplog.record_tuples == [
  140. (
  141. "switchbot_mqtt",
  142. logging.WARNING,
  143. f"unexpected payload {message_payload!r} (expected 'ON' or 'OFF')",
  144. )
  145. ]
  146. @pytest.mark.parametrize("mac_address", ["aa:bb:cc:dd:ee:ff"])
  147. @pytest.mark.parametrize("message_payload", [b"ON", b"OFF"])
  148. def test_execute_command_bluetooth_error(caplog, mac_address, message_payload):
  149. """
  150. paho.mqtt.python>=1.5.1 no longer implicitly suppresses exceptions in callbacks.
  151. verify pySwitchbot catches exceptions raised in bluetooth stack.
  152. https://github.com/Danielhiversen/pySwitchbot/blob/0.8.0/switchbot/__init__.py#L48
  153. https://github.com/Danielhiversen/pySwitchbot/blob/0.8.0/switchbot/__init__.py#L94
  154. """
  155. with unittest.mock.patch(
  156. "bluepy.btle.Peripheral",
  157. side_effect=bluepy.btle.BTLEDisconnectError(
  158. f"Failed to connect to peripheral {mac_address}, addr type: random"
  159. ),
  160. ), caplog.at_level(logging.ERROR):
  161. switchbot_mqtt._ButtonAutomator(
  162. mac_address=mac_address, retry_count=3, password=None
  163. ).execute_command(
  164. mqtt_client="dummy",
  165. mqtt_message_payload=message_payload,
  166. update_device_info=True,
  167. )
  168. assert caplog.record_tuples == [
  169. (
  170. "switchbot",
  171. logging.ERROR,
  172. "Switchbot communication failed. Stopping trying.",
  173. ),
  174. (
  175. "switchbot_mqtt",
  176. logging.ERROR,
  177. f"failed to turn {message_payload.decode().lower()} switchbot {mac_address}",
  178. ),
  179. ]