123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111 |
- import logging
- import unittest.mock
- import pytest
- import cc1101.options
- # pylint: disable=protected-access
- def test_transmit_empty_payload(transceiver):
- with unittest.mock.patch.object(
- transceiver,
- "get_packet_length_mode",
- return_value=cc1101.options.PacketLengthMode.VARIABLE,
- ), unittest.mock.patch.object(
- transceiver, "get_packet_length_bytes", return_value=21
- ):
- with pytest.raises(ValueError, match=r"\bempty\b"):
- transceiver.transmit([])
- @pytest.mark.parametrize(
- ("max_packet_length", "payload"),
- ((3, "\x04\x01\x02\x03"), (4, [7, 21, 42, 0, 0, 1, 2, 3])),
- )
- def test_transmit_exceeding_max_length(transceiver, max_packet_length, payload):
- with unittest.mock.patch.object(
- transceiver,
- "get_packet_length_mode",
- return_value=cc1101.options.PacketLengthMode.VARIABLE,
- ), unittest.mock.patch.object(
- transceiver, "get_packet_length_bytes", return_value=max_packet_length
- ):
- with pytest.raises(
- ValueError, match=r"\bpayload exceeds maximum payload length\b"
- ):
- transceiver.transmit(payload)
- @pytest.mark.parametrize(
- ("packet_length", "payload"),
- ((3, "\x04\x01\x02\x03"), (4, [7, 21, 42, 0, 0, 1, 2, 3])),
- )
- def test_transmit_unexpected_payload_len(transceiver, packet_length, payload):
- with unittest.mock.patch.object(
- transceiver,
- "get_packet_length_mode",
- return_value=cc1101.options.PacketLengthMode.FIXED,
- ), unittest.mock.patch.object(
- transceiver, "get_packet_length_bytes", return_value=packet_length
- ):
- with pytest.raises(ValueError, match=r"\bpayload length\b"):
- transceiver.transmit(payload)
- @pytest.mark.parametrize("payload", (b"\0", b"\xaa\xbb\xcc", bytes(range(42))))
- def test_transmit_fixed(caplog, transceiver, payload):
- transceiver._spi.xfer.side_effect = lambda v: [15] * len(v)
- with unittest.mock.patch.object(
- transceiver,
- "get_packet_length_mode",
- return_value=cc1101.options.PacketLengthMode.FIXED,
- ), unittest.mock.patch.object(
- transceiver, "get_packet_length_bytes", return_value=len(payload)
- ), unittest.mock.patch.object(
- transceiver,
- "get_main_radio_control_state_machine_state",
- return_value=cc1101.MainRadioControlStateMachineState.IDLE,
- ), caplog.at_level(
- logging.INFO
- ):
- transceiver.transmit(payload)
- assert transceiver._spi.xfer.call_args_list == [
- unittest.mock.call([0x3B]), # flush
- unittest.mock.call([0x3F | 0x40] + list(payload)),
- unittest.mock.call([0x35]), # start transmission
- ]
- assert caplog.record_tuples == [
- (
- "cc1101",
- 20,
- "transmitting 0x{} ({!r})".format(
- "".join("{:02x}".format(b) for b in payload), payload
- ),
- )
- ]
- @pytest.mark.parametrize(
- "payload", (b"\x01\0", b"\x03\xaa\xbb\xcc", b"\x10" + bytes(range(16)))
- )
- def test_transmit_variable(transceiver, payload):
- transceiver._spi.xfer.side_effect = lambda v: [15] * len(v)
- with unittest.mock.patch.object(
- transceiver,
- "get_packet_length_mode",
- return_value=cc1101.options.PacketLengthMode.VARIABLE,
- ), unittest.mock.patch.object(
- transceiver, "get_packet_length_bytes", return_value=255
- ), unittest.mock.patch.object(
- transceiver,
- "get_main_radio_control_state_machine_state",
- return_value=cc1101.MainRadioControlStateMachineState.IDLE,
- ):
- transceiver.transmit(payload)
- assert transceiver._spi.xfer.call_args_list == [
- unittest.mock.call([0x3B]), # flush
- unittest.mock.call([0x3F | 0x40] + [len(payload)] + list(payload)),
- unittest.mock.call([0x35]), # start transmission
- ]
|