mirror of
https://github.com/dashpay/dash.git
synced 2024-12-26 12:32:48 +01:00
58 lines
1.8 KiB
Python
58 lines
1.8 KiB
Python
|
#!/usr/bin/env python3
|
||
|
# Copyright (c) 2020 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 error messages for 'getaddressinfo' and 'validateaddress' RPC commands."""
|
||
|
|
||
|
from test_framework.test_framework import BitcoinTestFramework
|
||
|
|
||
|
from test_framework.util import (
|
||
|
assert_equal,
|
||
|
assert_raises_rpc_error,
|
||
|
)
|
||
|
|
||
|
|
||
|
BASE58_VALID = 'yjQ5gLvGRtmq1cwc4kePLCrzQ8GVCh9Gaz'
|
||
|
BASE58_INVALID_PREFIX = 'XpG61qAVhdyN7AqVZQsHfJL7AEk4dPVinc'
|
||
|
|
||
|
INVALID_ADDRESS = 'asfah14i8fajz0123f'
|
||
|
|
||
|
class InvalidAddressErrorMessageTest(BitcoinTestFramework):
|
||
|
def set_test_params(self):
|
||
|
self.setup_clean_chain = True
|
||
|
self.num_nodes = 1
|
||
|
|
||
|
def skip_test_if_missing_module(self):
|
||
|
self.skip_if_no_wallet()
|
||
|
|
||
|
def test_validateaddress(self):
|
||
|
node = self.nodes[0]
|
||
|
|
||
|
# Base58
|
||
|
info = node.validateaddress(BASE58_INVALID_PREFIX)
|
||
|
assert not info['isvalid']
|
||
|
assert_equal(info['error'], 'Invalid prefix for Base58-encoded address')
|
||
|
|
||
|
info = node.validateaddress(BASE58_VALID)
|
||
|
assert info['isvalid']
|
||
|
assert 'error' not in info
|
||
|
|
||
|
# Invalid address format
|
||
|
info = node.validateaddress(INVALID_ADDRESS)
|
||
|
assert not info['isvalid']
|
||
|
assert_equal(info['error'], 'Invalid address format')
|
||
|
|
||
|
def test_getaddressinfo(self):
|
||
|
node = self.nodes[0]
|
||
|
|
||
|
assert_raises_rpc_error(-5, "Invalid prefix for Base58-encoded address", node.getaddressinfo, BASE58_INVALID_PREFIX)
|
||
|
assert_raises_rpc_error(-5, "Invalid address format", node.getaddressinfo, INVALID_ADDRESS)
|
||
|
|
||
|
def run_test(self):
|
||
|
self.test_validateaddress()
|
||
|
self.test_getaddressinfo()
|
||
|
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
InvalidAddressErrorMessageTest().main()
|