pyln: Adds tests to zbase32

This commit is contained in:
Sergi Delgado Segura 2020-10-20 16:10:57 +02:00 committed by Christian Decker
parent 26f651f71f
commit f497b90ee8
1 changed files with 106 additions and 0 deletions

View File

@ -0,0 +1,106 @@
import pytest
import bitstring
from pyln.proto import zbase32
not_str_bytes = [1, dict(), None, 3.4, object()]
messages = [b'this', b'is', b'a', b'split', b'message:', b'lightning', b'rocks']
zbase32_messages = [b'qtwg1ha', b'pf3o', b'cr', b'qpaga4mw', b'pi1zgh5bc71uw', b'ptwsq4dwp3wsh3a', b'qjzsg45u']
not_zbase32_messages = ['00', '[]', 'vv', '1234']
def test_message_to_bitarray():
# This is an internal function and the input is supposed to be bytes. Not testing unexpected inputs.
dummy_messages = [b'a' * i for i in range(1, 6)]
for message in dummy_messages:
not_padded_barr = bitstring.Bits(message)
barr = zbase32._message_to_bitarray(message)
assert isinstance(barr, bitstring.ConstBitStream)
for i in range(len(barr)):
# Then first len(not_padded_barr) bits are equal
if i < len(not_padded_barr):
assert not_padded_barr.bin[i] == barr.bin[i]
# The remaining are zeros
else:
assert barr.bin[i] == '0'
def test_bitarray_to_message():
# This is an internal function and the input is supposed to be BitArray. Not testing unexpected inputs.
dummy_messages = [b'b' * i for i in range(1, 6)]
for message in dummy_messages:
barr = bitstring.Bits(message)
not_padded_message = zbase32._bitarray_to_message(bitstring.BitArray(message))
assert isinstance(not_padded_message, bytes)
not_padded_barr = bitstring.Bits(not_padded_message)
for i in range(len(not_padded_barr)):
# Then first len(pre_padded_barr) bits are equal
if i < len(not_padded_barr):
assert not_padded_barr.bin[i] == barr.bin[i]
# The remaining are zeros
else:
assert barr.bin[i] == '0'
def test_bitarray_to_u5():
# This is an internal function and the input is supposed to be ConstBitStream of length multiple of 5.
# Not testing unexpected inputs.
barrs = [zbase32._message_to_bitarray(message) for message in messages]
for barr in barrs:
u5 = zbase32._bitarray_to_u5(barr)
assert isinstance(u5, list)
assert all(x in range(0, 31) for x in u5)
def test_u5_to_bitarray():
# This is an internal function and the input is supposed to be a list of ints 0-31. Not testing unexpected inputs.
u5s = [[0, 1, 2, 3, 4, 5], [15, 30, 24, 17, 8, 3, 21], [0], [28, 11]]
for u5 in u5s:
bitarray = zbase32._u5_to_bitarray(u5)
assert isinstance(bitarray, bitstring.BitArray)
def test_is_zbase32_encoded():
for message in zbase32_messages:
assert zbase32.is_zbase32_encoded(message)
for message in not_zbase32_messages:
assert not zbase32.is_zbase32_encoded(message)
def test_encode():
for message, expected_zbase32_message in zip(messages, zbase32_messages):
zbase32_message = zbase32.encode(message)
assert isinstance(zbase32_message, bytes)
assert zbase32_message == expected_zbase32_message
def test_encode_wrong_inputs():
# Message must be either str or bytes, any other type will be rejected
for m in not_str_bytes:
with pytest.raises(TypeError, match='message must be string or bytes'):
zbase32.encode(m)
def test_decode():
for expected_message, zbase32_message in zip(messages, zbase32_messages):
message = zbase32.decode(zbase32_message)
assert isinstance(message, bytes)
assert message == expected_message
def test_decode_wrong_inputs():
# Message must be either str or bytes, any other type will be rejected
for m in not_str_bytes:
with pytest.raises(TypeError, match='message must be string or bytes'):
zbase32.decode(m)
# Message must also be zbase32 encoded, otherwise it will be rejected
for m in not_zbase32_messages:
with pytest.raises(ValueError, match='message is not zbase32 encoded'):
zbase32.decode(m)