From 34692ec3c81f6c445468b1b1047157ecbfe530ff Mon Sep 17 00:00:00 2001 From: Aditya Sharma Date: Thu, 26 Oct 2023 13:46:02 +1030 Subject: [PATCH] tests/test_misc.py: Add test_decode to test the decryption of bech32 encoding of emergency.recover --- tests/test_misc.py | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/tests/test_misc.py b/tests/test_misc.py index f66680c98..29adb9a53 100644 --- a/tests/test_misc.py +++ b/tests/test_misc.py @@ -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