mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-02-02 09:46:52 -05:00
Merge bitcoin/bitcoin#22641: test: Split rpc_signmessage test for disabled wallet
a3b559c970
test: added test for disabled wallet (Shubhankar Gambhir) Pull request description: This PR enables a part of the non-wallet functional test (rpc_signmessage.py) to be run even with the Bitcoin Core wallet disabled, it is inspired by #20078. Divided tests in rpc_signmessage.py into 2 files wallet_signmessagewithaddress.py and rpc_signmessagewithprivkey.py, latter one can run even when wallet is disabled that provides extra test which was not performed earlier. * we need bitcoincore wallet to run rpc_signmessage.py, but it is olny required for signing messages with address and not for signing messages wih private key, so latter one can be in a seperate test which can run without wallet * verifying message doesn't require wallet, so it can be used in both tests without any problem * 2 tests are named as wallet_signmessagewithaddress.py and rpc_signmessagewithprivkey.py to provide clarity of what they are testing. ACKs for top commit: vasild: ACKa3b559c970
theStack: Code-review ACKa3b559c970
Tree-SHA512: 1bfca3baf3123a02f0a2389e55e141d64430c3bed40ff5a5fb97ef2c66e2853c46e4b2dff62b948eb94dc574cb89d061769330f0535e2d5d1be76b60101136ac
This commit is contained in:
commit
489beb3984
3 changed files with 52 additions and 23 deletions
|
@ -2,7 +2,7 @@
|
||||||
# Copyright (c) 2016-2019 The Bitcoin Core developers
|
# Copyright (c) 2016-2019 The Bitcoin Core developers
|
||||||
# Distributed under the MIT software license, see the accompanying
|
# Distributed under the MIT software license, see the accompanying
|
||||||
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
"""Test RPC commands for signing and verifying messages."""
|
"""Test RPC commands for signing messages with private key."""
|
||||||
|
|
||||||
from test_framework.test_framework import BitcoinTestFramework
|
from test_framework.test_framework import BitcoinTestFramework
|
||||||
from test_framework.util import (
|
from test_framework.util import (
|
||||||
|
@ -10,14 +10,10 @@ from test_framework.util import (
|
||||||
assert_raises_rpc_error,
|
assert_raises_rpc_error,
|
||||||
)
|
)
|
||||||
|
|
||||||
class SignMessagesTest(BitcoinTestFramework):
|
class SignMessagesWithPrivTest(BitcoinTestFramework):
|
||||||
def set_test_params(self):
|
def set_test_params(self):
|
||||||
self.setup_clean_chain = True
|
self.setup_clean_chain = True
|
||||||
self.num_nodes = 1
|
self.num_nodes = 1
|
||||||
self.extra_args = [["-addresstype=legacy"]]
|
|
||||||
|
|
||||||
def skip_test_if_missing_module(self):
|
|
||||||
self.skip_if_no_wallet()
|
|
||||||
|
|
||||||
def run_test(self):
|
def run_test(self):
|
||||||
message = 'This is just a test message'
|
message = 'This is just a test message'
|
||||||
|
@ -30,33 +26,20 @@ class SignMessagesTest(BitcoinTestFramework):
|
||||||
assert_equal(expected_signature, signature)
|
assert_equal(expected_signature, signature)
|
||||||
assert self.nodes[0].verifymessage(address, signature, message)
|
assert self.nodes[0].verifymessage(address, signature, message)
|
||||||
|
|
||||||
self.log.info('test signing with an address with wallet')
|
|
||||||
address = self.nodes[0].getnewaddress()
|
|
||||||
signature = self.nodes[0].signmessage(address, message)
|
|
||||||
assert self.nodes[0].verifymessage(address, signature, message)
|
|
||||||
|
|
||||||
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)
|
|
||||||
assert not self.nodes[0].verifymessage(other_address, signature, message)
|
|
||||||
assert not self.nodes[0].verifymessage(address, other_signature, message)
|
|
||||||
|
|
||||||
self.log.info('test parameter validity and error codes')
|
self.log.info('test parameter validity and error codes')
|
||||||
# signmessage(withprivkey) have two required parameters
|
# signmessagewithprivkey has two required parameters
|
||||||
for num_params in [0, 1, 3, 4, 5]:
|
for num_params in [0, 1, 3, 4, 5]:
|
||||||
param_list = ["dummy"]*num_params
|
param_list = ["dummy"]*num_params
|
||||||
assert_raises_rpc_error(-1, "signmessagewithprivkey", self.nodes[0].signmessagewithprivkey, *param_list)
|
assert_raises_rpc_error(-1, "signmessagewithprivkey", self.nodes[0].signmessagewithprivkey, *param_list)
|
||||||
assert_raises_rpc_error(-1, "signmessage", self.nodes[0].signmessage, *param_list)
|
|
||||||
# verifymessage has three required parameters
|
# verifymessage has three required parameters
|
||||||
for num_params in [0, 1, 2, 4, 5]:
|
for num_params in [0, 1, 2, 4, 5]:
|
||||||
param_list = ["dummy"]*num_params
|
param_list = ["dummy"]*num_params
|
||||||
assert_raises_rpc_error(-1, "verifymessage", self.nodes[0].verifymessage, *param_list)
|
assert_raises_rpc_error(-1, "verifymessage", self.nodes[0].verifymessage, *param_list)
|
||||||
# invalid key or address provided
|
# invalid key or address provided
|
||||||
assert_raises_rpc_error(-5, "Invalid private key", self.nodes[0].signmessagewithprivkey, "invalid_key", message)
|
assert_raises_rpc_error(-5, "Invalid private key", self.nodes[0].signmessagewithprivkey, "invalid_key", message)
|
||||||
assert_raises_rpc_error(-5, "Invalid address", self.nodes[0].signmessage, "invalid_addr", message)
|
|
||||||
assert_raises_rpc_error(-5, "Invalid address", self.nodes[0].verifymessage, "invalid_addr", signature, message)
|
assert_raises_rpc_error(-5, "Invalid address", self.nodes[0].verifymessage, "invalid_addr", signature, message)
|
||||||
# malformed signature provided
|
# malformed signature provided
|
||||||
assert_raises_rpc_error(-3, "Malformed base64 encoding", self.nodes[0].verifymessage, self.nodes[0].getnewaddress(), "invalid_sig", message)
|
assert_raises_rpc_error(-3, "Malformed base64 encoding", self.nodes[0].verifymessage, 'mpLQjfK79b7CCV4VMJWEWAj5Mpx8Up5zxB', "invalid_sig", message)
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
SignMessagesTest().main()
|
SignMessagesWithPrivTest().main()
|
|
@ -225,7 +225,8 @@ BASE_SCRIPTS = [
|
||||||
'wallet_importprunedfunds.py --descriptors',
|
'wallet_importprunedfunds.py --descriptors',
|
||||||
'p2p_leak_tx.py',
|
'p2p_leak_tx.py',
|
||||||
'p2p_eviction.py',
|
'p2p_eviction.py',
|
||||||
'rpc_signmessage.py',
|
'wallet_signmessagewithaddress.py',
|
||||||
|
'rpc_signmessagewithprivkey.py',
|
||||||
'rpc_generateblock.py',
|
'rpc_generateblock.py',
|
||||||
'rpc_generate.py',
|
'rpc_generate.py',
|
||||||
'wallet_balance.py --legacy-wallet',
|
'wallet_balance.py --legacy-wallet',
|
||||||
|
|
45
test/functional/wallet_signmessagewithaddress.py
Executable file
45
test/functional/wallet_signmessagewithaddress.py
Executable file
|
@ -0,0 +1,45 @@
|
||||||
|
#!/usr/bin/env python3
|
||||||
|
# Copyright (c) 2016-2019 The Bitcoin Core developers
|
||||||
|
# Distributed under the MIT software license, see the accompanying
|
||||||
|
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
|
"""Test Wallet commands for signing and verifying messages."""
|
||||||
|
|
||||||
|
from test_framework.test_framework import BitcoinTestFramework
|
||||||
|
from test_framework.util import (
|
||||||
|
assert_raises_rpc_error,
|
||||||
|
)
|
||||||
|
|
||||||
|
class SignMessagesWithAddressTest(BitcoinTestFramework):
|
||||||
|
def set_test_params(self):
|
||||||
|
self.setup_clean_chain = True
|
||||||
|
self.num_nodes = 1
|
||||||
|
self.extra_args = [["-addresstype=legacy"]]
|
||||||
|
|
||||||
|
def skip_test_if_missing_module(self):
|
||||||
|
self.skip_if_no_wallet()
|
||||||
|
|
||||||
|
def run_test(self):
|
||||||
|
message = 'This is just a test message'
|
||||||
|
|
||||||
|
self.log.info('test signing with an address with wallet')
|
||||||
|
address = self.nodes[0].getnewaddress()
|
||||||
|
signature = self.nodes[0].signmessage(address, message)
|
||||||
|
assert self.nodes[0].verifymessage(address, signature, message)
|
||||||
|
|
||||||
|
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)
|
||||||
|
assert not self.nodes[0].verifymessage(other_address, signature, message)
|
||||||
|
assert not self.nodes[0].verifymessage(address, other_signature, message)
|
||||||
|
|
||||||
|
self.log.info('test parameter validity and error codes')
|
||||||
|
# signmessage has two required parameters
|
||||||
|
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)
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == '__main__':
|
||||||
|
SignMessagesWithAddressTest().main()
|
Loading…
Add table
Reference in a new issue