X-Git-Url: https://robinkrens.nl/gitweb/?a=blobdiff_plain;f=tests%2Ftest_parse.py;fp=tests%2Ftest_parse.py;h=81697d96ef0ca46a9fc619200461cf0ef1d070a1;hb=5691332770d73dd16888eba8b1171fadc70e704a;hp=e629b13e0cfcd3169062ca1b8a044b2f03df9a0e;hpb=2d74aaa29ad36ab47de232aca47c559dd6bf81d4;p=renesas-ra-flasher diff --git a/tests/test_parse.py b/tests/test_parse.py index e629b13..81697d9 100644 --- a/tests/test_parse.py +++ b/tests/test_parse.py @@ -11,6 +11,9 @@ def test_unpack(): assert unpack_pkt(b'\x81\x00\x02\x12\x00\xEC\x03') == ['0x00'] assert unpack_pkt(b'\x81\x00\x02\x13\x00\xEB\x03') == ['0x00'] +def test_read_unpack(): + assert unpack_pkt(b'\x81\x00\x04\x15\xAA\xBB\xCC\xB6\x03') == ['0xAA', '0xBB', '0xCC'] + def test_pack_unpack(): assert unpack_pkt(pack_pkt(0x13, ['0x00','0x01','0x02'])) == ['0x00', '0x01', '0x02'] assert unpack_pkt(pack_pkt(0x34, ['0x00'])) == ['0x00']