Skip to content

Commit

Permalink
tests/test_misc.py: Add test_decode to test the decryption of bech32 …
Browse files Browse the repository at this point in the history
…encoding of emergency.recover
  • Loading branch information
adi2011 authored and rustyrussell committed Oct 27, 2023
1 parent 8d36b7c commit 34692ec
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions tests/test_misc.py
Original file line number Diff line number Diff line change
Expand Up @@ -1343,6 +1343,22 @@ def test_funding_reorg_get_upset(node_factory, bitcoind):
assert only_one(l2.rpc.listpeerchannels()['channels'])['state'] == 'AWAITING_UNILATERAL'


def test_decode(node_factory, bitcoind):
"""Test the decode option to decode the contents of emergency recovery.
"""
l1 = node_factory.get_node(allow_broken_log=True)
cmd_line = ["tools/hsmtool", "getemergencyrecover", os.path.join(l1.daemon.lightning_dir, TEST_NETWORK, "emergency.recover")]
out = subprocess.check_output(cmd_line).decode('utf-8')
bech32_out = out.strip('\n')
assert bech32_out.startswith('clnemerg1')

x = l1.rpc.decode(bech32_out)

assert x["valid"]
assert x["type"] == "emergency recover"
assert x["decrypted"].startswith('17')


@unittest.skipIf(os.getenv('TEST_DB_PROVIDER', 'sqlite3') != 'sqlite3', "deletes database, which is assumed sqlite3")
def test_recover(node_factory, bitcoind):
"""Test the recover option
Expand Down

0 comments on commit 34692ec

Please sign in to comment.