test_switchbot_button_automator.py 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196
  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 typing
  20. import unittest.mock
  21. import _pytest.logging
  22. import bluepy.btle
  23. import pytest
  24. from switchbot_mqtt._actors import _ButtonAutomator
  25. # pylint: disable=protected-access
  26. # pylint: disable=too-many-arguments; these are tests, no API
  27. @pytest.mark.parametrize("mac_address", ["{MAC_ADDRESS}", "aa:bb:cc:dd:ee:ff"])
  28. def test_get_mqtt_battery_percentage_topic(mac_address: str) -> None:
  29. assert (
  30. _ButtonAutomator.get_mqtt_battery_percentage_topic(mac_address=mac_address)
  31. == f"homeassistant/switch/switchbot/{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. ) -> None:
  37. with unittest.mock.patch("switchbot.SwitchbotCurtain.__init__", return_value=None):
  38. actor = _ButtonAutomator(mac_address="dummy", retry_count=21, password=None)
  39. actor._get_device()._switchbot_device_data = {"data": {"battery": battery_percent}}
  40. mqtt_client_mock = unittest.mock.MagicMock()
  41. with unittest.mock.patch("switchbot.Switchbot.update") as update_mock:
  42. actor._update_and_report_device_info(mqtt_client=mqtt_client_mock)
  43. update_mock.assert_called_once_with()
  44. assert mqtt_client_mock.publish.call_args_list == [
  45. unittest.mock.call(topic=t, payload=battery_percent_encoded, retain=True)
  46. for t in [
  47. "homeassistant/switch/switchbot/dummy/battery-percentage",
  48. # will be removed in v3:
  49. "homeassistant/cover/switchbot/dummy/battery-percentage",
  50. ]
  51. ]
  52. @pytest.mark.parametrize("mac_address", ["aa:bb:cc:dd:ee:ff", "aa:bb:cc:11:22:33"])
  53. @pytest.mark.parametrize("password", (None, "secret"))
  54. @pytest.mark.parametrize("retry_count", (3, 21))
  55. @pytest.mark.parametrize(
  56. ("message_payload", "action_name"),
  57. [
  58. (b"on", "switchbot.Switchbot.turn_on"),
  59. (b"ON", "switchbot.Switchbot.turn_on"),
  60. (b"On", "switchbot.Switchbot.turn_on"),
  61. (b"off", "switchbot.Switchbot.turn_off"),
  62. (b"OFF", "switchbot.Switchbot.turn_off"),
  63. (b"Off", "switchbot.Switchbot.turn_off"),
  64. ],
  65. )
  66. @pytest.mark.parametrize("update_device_info", [True, False])
  67. @pytest.mark.parametrize("command_successful", [True, False])
  68. def test_execute_command(
  69. caplog: _pytest.logging.LogCaptureFixture,
  70. mac_address: str,
  71. password: typing.Optional[str],
  72. retry_count: int,
  73. message_payload: bytes,
  74. action_name: str,
  75. update_device_info: bool,
  76. command_successful: bool,
  77. ) -> None:
  78. with unittest.mock.patch(
  79. "switchbot.Switchbot.__init__", return_value=None
  80. ) as device_init_mock, caplog.at_level(logging.INFO):
  81. actor = _ButtonAutomator(
  82. mac_address=mac_address, retry_count=retry_count, password=password
  83. )
  84. with unittest.mock.patch.object(
  85. actor, "report_state"
  86. ) as report_mock, unittest.mock.patch(
  87. action_name, return_value=command_successful
  88. ) as action_mock, unittest.mock.patch.object(
  89. actor, "_update_and_report_device_info"
  90. ) as update_device_info_mock:
  91. actor.execute_command(
  92. mqtt_client="dummy",
  93. mqtt_message_payload=message_payload,
  94. update_device_info=update_device_info,
  95. )
  96. device_init_mock.assert_called_once_with(
  97. mac=mac_address, password=password, retry_count=retry_count
  98. )
  99. action_mock.assert_called_once_with()
  100. if command_successful:
  101. assert caplog.record_tuples == [
  102. (
  103. "switchbot_mqtt._actors",
  104. logging.INFO,
  105. f"switchbot {mac_address} turned {message_payload.decode().lower()}",
  106. )
  107. ]
  108. report_mock.assert_called_once_with(
  109. mqtt_client="dummy", state=message_payload.upper()
  110. )
  111. assert update_device_info_mock.call_count == (1 if update_device_info else 0)
  112. else:
  113. assert caplog.record_tuples == [
  114. (
  115. "switchbot_mqtt._actors",
  116. logging.ERROR,
  117. f"failed to turn {message_payload.decode().lower()} switchbot {mac_address}",
  118. )
  119. ]
  120. report_mock.assert_not_called()
  121. update_device_info_mock.assert_not_called()
  122. @pytest.mark.parametrize("mac_address", ["aa:bb:cc:dd:ee:ff"])
  123. @pytest.mark.parametrize("message_payload", [b"EIN", b""])
  124. def test_execute_command_invalid_payload(
  125. caplog: _pytest.logging.LogCaptureFixture, mac_address: str, message_payload: bytes
  126. ) -> None:
  127. with unittest.mock.patch("switchbot.Switchbot") as device_mock, caplog.at_level(
  128. logging.INFO
  129. ):
  130. actor = _ButtonAutomator(mac_address=mac_address, retry_count=21, password=None)
  131. with unittest.mock.patch.object(actor, "report_state") as report_mock:
  132. actor.execute_command(
  133. mqtt_client="dummy",
  134. mqtt_message_payload=message_payload,
  135. update_device_info=True,
  136. )
  137. device_mock.assert_called_once_with(mac=mac_address, retry_count=21, password=None)
  138. assert not device_mock().mock_calls # no methods called
  139. report_mock.assert_not_called()
  140. assert caplog.record_tuples == [
  141. (
  142. "switchbot_mqtt._actors",
  143. logging.WARNING,
  144. f"unexpected payload {message_payload!r} (expected 'ON' or 'OFF')",
  145. )
  146. ]
  147. @pytest.mark.parametrize("mac_address", ["aa:bb:cc:dd:ee:ff"])
  148. @pytest.mark.parametrize("message_payload", [b"ON", b"OFF"])
  149. def test_execute_command_bluetooth_error(
  150. caplog: _pytest.logging.LogCaptureFixture, mac_address: str, message_payload: bytes
  151. ) -> None:
  152. """
  153. paho.mqtt.python>=1.5.1 no longer implicitly suppresses exceptions in callbacks.
  154. verify pySwitchbot catches exceptions raised in bluetooth stack.
  155. https://github.com/Danielhiversen/pySwitchbot/blob/0.8.0/switchbot/__init__.py#L48
  156. https://github.com/Danielhiversen/pySwitchbot/blob/0.8.0/switchbot/__init__.py#L94
  157. """
  158. with unittest.mock.patch(
  159. "bluepy.btle.Peripheral",
  160. side_effect=bluepy.btle.BTLEDisconnectError(
  161. f"Failed to connect to peripheral {mac_address}, addr type: random"
  162. ),
  163. ), caplog.at_level(logging.ERROR):
  164. _ButtonAutomator(
  165. mac_address=mac_address, retry_count=0, password=None
  166. ).execute_command(
  167. mqtt_client="dummy",
  168. mqtt_message_payload=message_payload,
  169. update_device_info=True,
  170. )
  171. assert len(caplog.records) == 2
  172. assert caplog.records[0].name == "switchbot"
  173. assert caplog.records[0].levelno == logging.ERROR
  174. assert caplog.records[0].msg.startswith(
  175. # pySwitchbot<0.11 had '.' suffix
  176. "Switchbot communication failed. Stopping trying",
  177. )
  178. assert caplog.record_tuples[1] == (
  179. "switchbot_mqtt._actors",
  180. logging.ERROR,
  181. f"failed to turn {message_payload.decode().lower()} switchbot {mac_address}",
  182. )