pyln-proto: Add Tu32Field and Tu64Field helpers

These are necessary for the interim keysend plugin
This commit is contained in:
Christian Decker 2020-04-08 20:50:27 +02:00 committed by Rusty Russell
parent 97fb27650d
commit f3315ca110
2 changed files with 46 additions and 2 deletions

View File

@ -184,11 +184,27 @@ class TlvField(object):
class Tu32Field(TlvField):
pass
def to_bytes(self):
raw = struct.pack("!I", self.value)
while len(raw) > 1 and raw[0] == 0:
raw = raw[1:]
b = BytesIO()
varint_encode(self.typenum, b)
varint_encode(len(raw), b)
b.write(raw)
return b.getvalue()
class Tu64Field(TlvField):
pass
def to_bytes(self):
raw = struct.pack("!Q", self.value)
while len(raw) > 1 and raw[0] == 0:
raw = raw[1:]
b = BytesIO()
varint_encode(self.typenum, b)
varint_encode(len(raw), b)
b.write(raw)
return b.getvalue()
class ShortChannelIdField(TlvField):

View File

@ -30,3 +30,31 @@ def test_tlv_payload():
))
assert(payload.to_bytes() == tlv)
def test_tu_fields():
pairs = [
(0, b'\x01\x01\x00'),
(1 << 8, b'\x01\x02\x01\x00'),
(1 << 16, b'\x01\x03\x01\x00\x00'),
(1 << 24, b'\x01\x04\x01\x00\x00\x00'),
((1 << 32) - 1, b'\x01\x04\xFF\xFF\xFF\xFF'),
]
# These should work for Tu32
for i, o in pairs:
f = onion.Tu32Field(1, i)
assert(f.to_bytes() == o)
# And these should work for Tu64
pairs += [
(1 << 32, b'\x01\x05\x01\x00\x00\x00\x00'),
(1 << 40, b'\x01\x06\x01\x00\x00\x00\x00\x00'),
(1 << 48, b'\x01\x07\x01\x00\x00\x00\x00\x00\x00'),
(1 << 56, b'\x01\x08\x01\x00\x00\x00\x00\x00\x00\x00'),
((1 << 64) - 1, b'\x01\x08\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF'),
]
for i, o in pairs:
f = onion.Tu64Field(1, i)
assert(f.to_bytes() == o)