test_config.py 9.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278
  1. # python-cc1101 - Python Library to Transmit RF Signals via C1101 Transceivers
  2. #
  3. # Copyright (C) 2020 Fabian Peter Hammerle <fabian@hammerle.me>
  4. #
  5. # This program is free software: you can redistribute it and/or modify
  6. # it under the terms of the GNU General Public License as published by
  7. # the Free Software Foundation, either version 3 of the License, or
  8. # any later version.
  9. #
  10. # This program is distributed in the hope that it will be useful,
  11. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. # GNU General Public License for more details.
  14. #
  15. # You should have received a copy of the GNU General Public License
  16. # along with this program. If not, see <https://www.gnu.org/licenses/>.
  17. import unittest.mock
  18. import pytest
  19. import cc1101
  20. import cc1101.options
  21. # pylint: disable=protected-access
  22. @pytest.mark.parametrize(
  23. ("xfer_return_value", "sync_word"),
  24. [([64, 211, 145], b"\xd3\x91"), ([64, 0, 0], b"\0\0")],
  25. )
  26. def test_get_sync_word(transceiver, xfer_return_value, sync_word):
  27. transceiver._spi.xfer.return_value = xfer_return_value
  28. assert transceiver.get_sync_word() == sync_word
  29. transceiver._spi.xfer.assert_called_once_with([0x04 | 0xC0, 0, 0])
  30. def test_set_sync_word(transceiver):
  31. transceiver._spi.xfer.return_value = [15, 15, 15]
  32. transceiver.set_sync_word(b"\x12\x34")
  33. transceiver._spi.xfer.assert_called_once_with([0x04 | 0x40, 0x12, 0x34])
  34. @pytest.mark.parametrize("sync_word", [b"", b"\0", "\x12\x34\x56"])
  35. def test_set_sync_word_invalid_length(transceiver, sync_word):
  36. with pytest.raises(ValueError, match=r"\bexpected two bytes\b"):
  37. transceiver.set_sync_word(sync_word)
  38. _FREQUENCY_CONTROL_WORD_HERTZ_PARAMS = [
  39. ([0x10, 0xA7, 0x62], 433000000),
  40. ([0x10, 0xAB, 0x85], 433420000),
  41. ([0x10, 0xB1, 0x3B], 434000000),
  42. ([0x21, 0x62, 0x76], 868000000),
  43. ]
  44. @pytest.mark.parametrize(
  45. ("control_word", "hertz"), _FREQUENCY_CONTROL_WORD_HERTZ_PARAMS
  46. )
  47. def test__frequency_control_word_to_hertz(control_word, hertz):
  48. assert cc1101.CC1101._frequency_control_word_to_hertz(
  49. control_word
  50. ) == pytest.approx(hertz, abs=200)
  51. @pytest.mark.parametrize(
  52. ("control_word", "hertz"), _FREQUENCY_CONTROL_WORD_HERTZ_PARAMS
  53. )
  54. def test__hertz_to_frequency_control_word(control_word, hertz):
  55. assert cc1101.CC1101._hertz_to_frequency_control_word(hertz) == control_word
  56. _FILTER_BANDWIDTH_MANTISSA_EXPONENT_REAL_PARAMS = [
  57. # > The default values give 203 kHz channel filter bandwidth,
  58. # > assuming a 26.0 MHz crystal.
  59. (0, 2, 203e3),
  60. # "Table 26: Channel Filter Bandwidths [kHz] (assuming a 26 MHz crystal)"
  61. (0, 0, 812e3),
  62. (0, 1, 406e3),
  63. (0, 2, 203e3),
  64. (1, 0, 650e3),
  65. (1, 1, 325e3),
  66. (3, 0, 464e3),
  67. (3, 1, 232e3),
  68. (3, 2, 116e3),
  69. (3, 3, 58e3),
  70. ]
  71. @pytest.mark.parametrize(
  72. ("mantissa", "exponent", "real"), _FILTER_BANDWIDTH_MANTISSA_EXPONENT_REAL_PARAMS
  73. )
  74. def test__filter_bandwidth_floating_point_to_real(mantissa, exponent, real):
  75. assert cc1101.CC1101._filter_bandwidth_floating_point_to_real(
  76. mantissa=mantissa, exponent=exponent
  77. ) == pytest.approx(real, rel=1e-3)
  78. @pytest.mark.parametrize(
  79. ("mdmcfg4", "real"),
  80. [
  81. (0b10001100, 203e3),
  82. (0b10001010, 203e3),
  83. (0b10001110, 203e3),
  84. (0b11111100, 58e3),
  85. (0b01011100, 325e3),
  86. ],
  87. )
  88. def test__get_filter_bandwidth_hertz(transceiver, mdmcfg4, real):
  89. transceiver._spi.xfer.return_value = [15, mdmcfg4]
  90. assert transceiver._get_filter_bandwidth_hertz() == pytest.approx(real, rel=1e-3)
  91. transceiver._spi.xfer.assert_called_once_with([0x10 | 0x80, 0])
  92. _SYMBOL_RATE_MANTISSA_EXPONENT_REAL_PARAMS = [
  93. # > The default values give a data rate of 115.051 kBaud
  94. # > (closest setting to 115.2 kBaud), assuming a 26.0 MHz crystal.
  95. (34, 12, 115051),
  96. (34, 12 + 1, 115051 * 2),
  97. (34, 12 - 1, 115051 / 2),
  98. ]
  99. @pytest.mark.parametrize(
  100. ("mantissa", "exponent", "real"), _SYMBOL_RATE_MANTISSA_EXPONENT_REAL_PARAMS
  101. )
  102. def test__symbol_rate_floating_point_to_real(mantissa, exponent, real):
  103. assert cc1101.CC1101._symbol_rate_floating_point_to_real(
  104. mantissa=mantissa, exponent=exponent
  105. ) == pytest.approx(real, rel=1e-5)
  106. @pytest.mark.parametrize(
  107. ("mantissa", "exponent", "real"), _SYMBOL_RATE_MANTISSA_EXPONENT_REAL_PARAMS
  108. )
  109. def test__symbol_rate_real_to_floating_point(mantissa, exponent, real):
  110. assert cc1101.CC1101._symbol_rate_real_to_floating_point(real) == (
  111. mantissa,
  112. exponent,
  113. )
  114. @pytest.mark.parametrize(
  115. ("mdmcfg1", "length"),
  116. [
  117. (0b00000010, 2),
  118. (0b00010010, 3),
  119. (0b00100010, 4),
  120. (0b00110010, 6),
  121. (0b01000010, 8),
  122. (0b01010010, 12),
  123. (0b01100010, 16),
  124. (0b01110010, 24),
  125. ],
  126. )
  127. def test_get_preamble_length_bytes(transceiver, mdmcfg1, length):
  128. transceiver._spi.xfer.return_value = [0, mdmcfg1]
  129. assert transceiver.get_preamble_length_bytes() == length
  130. transceiver._spi.xfer.assert_called_once_with([0x13 | 0x80, 0])
  131. @pytest.mark.parametrize(
  132. ("mdmcfg1_before", "mdmcfg1_after", "length"),
  133. [
  134. (0b00000010, 0b00000010, 2),
  135. (0b00000010, 0b00010010, 3),
  136. (0b00000010, 0b00100010, 4),
  137. (0b00000010, 0b00110010, 6),
  138. (0b00000010, 0b01000010, 8),
  139. (0b00000010, 0b01010010, 12),
  140. (0b00000010, 0b01100010, 16),
  141. (0b00000010, 0b01110010, 24),
  142. (0b01010010, 0b01100010, 16),
  143. (0b01110010, 0b00000010, 2),
  144. (0b01110010, 0b01000010, 8),
  145. (0b11011010, 0b11101010, 16),
  146. (0b11110111, 0b11000111, 8),
  147. (0b11111110, 0b10001110, 2),
  148. ],
  149. )
  150. def test_set_preamble_length_bytes(transceiver, mdmcfg1_before, mdmcfg1_after, length):
  151. transceiver._spi.xfer.return_value = [15, 15]
  152. with unittest.mock.patch.object(
  153. transceiver, "_read_single_byte", return_value=mdmcfg1_before
  154. ):
  155. transceiver.set_preamble_length_bytes(length)
  156. transceiver._spi.xfer.assert_called_once_with([0x13 | 0x40, mdmcfg1_after])
  157. def test_get_packet_length_bytes(transceiver):
  158. xfer_mock = transceiver._spi.xfer
  159. xfer_mock.return_value = [0, 8]
  160. assert transceiver.get_packet_length_bytes() == 8
  161. xfer_mock.assert_called_once_with([0x06 | 0x80, 0])
  162. @pytest.mark.parametrize("packet_length", [21])
  163. def test_set_packet_length_bytes(transceiver, packet_length):
  164. xfer_mock = transceiver._spi.xfer
  165. xfer_mock.return_value = [15, 15]
  166. transceiver.set_packet_length_bytes(packet_length)
  167. xfer_mock.assert_called_once_with([0x06 | 0x40, packet_length])
  168. @pytest.mark.parametrize("packet_length", [-21, 0, 256, 1024])
  169. def test_set_packet_length_bytes_fail(transceiver, packet_length):
  170. with pytest.raises(Exception):
  171. transceiver.set_packet_length_bytes(packet_length)
  172. transceiver._spi.xfer.assert_not_called()
  173. @pytest.mark.parametrize(
  174. ("pktctrl0_before", "pktctrl0_after"),
  175. (
  176. # unchanged
  177. (0b00000000, 0b00000000),
  178. (0b00010000, 0b00010000),
  179. (0b00010001, 0b00010001),
  180. (0b01000000, 0b01000000),
  181. (0b01000010, 0b01000010),
  182. (0b01110000, 0b01110000),
  183. (0b01110010, 0b01110010),
  184. # disabled
  185. (0b00010100, 0b00010000),
  186. (0b01000100, 0b01000000),
  187. (0b01000110, 0b01000010),
  188. (0b01110110, 0b01110010),
  189. ),
  190. )
  191. def test_disable_checksum(transceiver, pktctrl0_before, pktctrl0_after):
  192. xfer_mock = transceiver._spi.xfer
  193. xfer_mock.return_value = [15, 15]
  194. with unittest.mock.patch.object(
  195. transceiver, "_read_single_byte", return_value=pktctrl0_before
  196. ):
  197. transceiver.disable_checksum()
  198. xfer_mock.assert_called_once_with([0x08 | 0x40, pktctrl0_after])
  199. @pytest.mark.parametrize(
  200. ("pktctrl0", "expected_mode"),
  201. (
  202. (0b00000000, cc1101.options.PacketLengthMode.FIXED),
  203. (0b00000001, cc1101.options.PacketLengthMode.VARIABLE),
  204. (0b01000100, cc1101.options.PacketLengthMode.FIXED),
  205. (0b01000101, cc1101.options.PacketLengthMode.VARIABLE),
  206. ),
  207. )
  208. def test_get_packet_length_mode(transceiver, pktctrl0, expected_mode):
  209. xfer_mock = transceiver._spi.xfer
  210. xfer_mock.return_value = [0, pktctrl0]
  211. assert transceiver.get_packet_length_mode() == expected_mode
  212. xfer_mock.assert_called_once_with([0x08 | 0x80, 0])
  213. @pytest.mark.parametrize(
  214. ("pktctrl0_before", "pktctrl0_after", "mode"),
  215. (
  216. (0b00000000, 0b00000000, cc1101.options.PacketLengthMode.FIXED),
  217. (0b00000001, 0b00000000, cc1101.options.PacketLengthMode.FIXED),
  218. (0b00000001, 0b00000001, cc1101.options.PacketLengthMode.VARIABLE),
  219. (0b00000010, 0b00000000, cc1101.options.PacketLengthMode.FIXED),
  220. (0b00000010, 0b00000001, cc1101.options.PacketLengthMode.VARIABLE),
  221. (0b01000100, 0b01000100, cc1101.options.PacketLengthMode.FIXED),
  222. (0b01000100, 0b01000101, cc1101.options.PacketLengthMode.VARIABLE),
  223. (0b01000101, 0b01000100, cc1101.options.PacketLengthMode.FIXED),
  224. (0b01000101, 0b01000101, cc1101.options.PacketLengthMode.VARIABLE),
  225. ),
  226. )
  227. def test_set_packet_length_mode(transceiver, pktctrl0_before, pktctrl0_after, mode):
  228. xfer_mock = transceiver._spi.xfer
  229. xfer_mock.return_value = [15, 15]
  230. with unittest.mock.patch.object(
  231. transceiver, "_read_single_byte", return_value=pktctrl0_before
  232. ):
  233. transceiver.set_packet_length_mode(mode)
  234. xfer_mock.assert_called_once_with([0x08 | 0x40, pktctrl0_after])