2016-03-19 20:58:06 +01:00
|
|
|
#!/usr/bin/env python3
|
2022-12-25 00:49:50 +01:00
|
|
|
# Copyright (c) 2016-2022 The Bitcoin Core developers
|
2016-04-27 21:18:20 +02:00
|
|
|
# Distributed under the MIT software license, see the accompanying
|
|
|
|
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
2021-08-05 23:31:12 +02:00
|
|
|
"""Test Wallet commands for signing and verifying messages."""
|
2016-04-27 21:18:20 +02:00
|
|
|
|
|
|
|
from test_framework.test_framework import BitcoinTestFramework
|
2020-03-29 18:28:46 +02:00
|
|
|
from test_framework.util import (
|
|
|
|
assert_raises_rpc_error,
|
|
|
|
)
|
2016-04-27 21:18:20 +02:00
|
|
|
|
2021-08-05 23:31:12 +02:00
|
|
|
class SignMessagesWithAddressTest(BitcoinTestFramework):
|
2022-11-09 12:53:13 +01:00
|
|
|
def add_options(self, parser):
|
|
|
|
self.add_wallet_options(parser)
|
|
|
|
|
2017-06-10 00:21:21 +02:00
|
|
|
def set_test_params(self):
|
2016-05-14 13:01:31 +02:00
|
|
|
self.setup_clean_chain = True
|
|
|
|
self.num_nodes = 1
|
2017-12-01 01:49:11 +01:00
|
|
|
self.extra_args = [["-addresstype=legacy"]]
|
2016-04-27 21:18:20 +02:00
|
|
|
|
2018-09-09 19:32:37 +02:00
|
|
|
def skip_test_if_missing_module(self):
|
|
|
|
self.skip_if_no_wallet()
|
|
|
|
|
2016-04-27 21:18:20 +02:00
|
|
|
def run_test(self):
|
|
|
|
message = 'This is just a test message'
|
|
|
|
|
2017-09-05 18:55:37 +02:00
|
|
|
self.log.info('test signing with an address with wallet')
|
2016-04-27 21:18:20 +02:00
|
|
|
address = self.nodes[0].getnewaddress()
|
|
|
|
signature = self.nodes[0].signmessage(address, message)
|
2019-02-19 23:43:44 +01:00
|
|
|
assert self.nodes[0].verifymessage(address, signature, message)
|
2016-04-27 21:18:20 +02:00
|
|
|
|
2017-09-05 18:55:37 +02:00
|
|
|
self.log.info('test verifying with another address should not work')
|
|
|
|
other_address = self.nodes[0].getnewaddress()
|
|
|
|
other_signature = self.nodes[0].signmessage(other_address, message)
|
2019-02-19 23:43:44 +01:00
|
|
|
assert not self.nodes[0].verifymessage(other_address, signature, message)
|
|
|
|
assert not self.nodes[0].verifymessage(address, other_signature, message)
|
2017-09-05 18:55:37 +02:00
|
|
|
|
2020-03-29 18:28:46 +02:00
|
|
|
self.log.info('test parameter validity and error codes')
|
2021-08-05 23:31:12 +02:00
|
|
|
# signmessage has two required parameters
|
2020-03-29 18:28:46 +02:00
|
|
|
for num_params in [0, 1, 3, 4, 5]:
|
|
|
|
param_list = ["dummy"]*num_params
|
|
|
|
assert_raises_rpc_error(-1, "signmessage", self.nodes[0].signmessage, *param_list)
|
|
|
|
# invalid key or address provided
|
|
|
|
assert_raises_rpc_error(-5, "Invalid address", self.nodes[0].signmessage, "invalid_addr", message)
|
2021-08-05 23:31:12 +02:00
|
|
|
|
2020-03-29 18:28:46 +02:00
|
|
|
|
2016-04-27 21:18:20 +02:00
|
|
|
if __name__ == '__main__':
|
2024-07-16 23:05:14 +02:00
|
|
|
SignMessagesWithAddressTest(__file__).main()
|