mirror of
https://github.com/Retropex/bitcoin.git
synced 2025-05-17 13:40:43 +02:00
test: verify cli.getwalletinfo in wallet section
This commit is contained in:
parent
becc8b9747
commit
bb13f46fb1
@ -25,12 +25,6 @@ class TestBitcoinCli(BitcoinTestFramework):
|
|||||||
"""Main test logic"""
|
"""Main test logic"""
|
||||||
self.nodes[0].generate(BLOCKS)
|
self.nodes[0].generate(BLOCKS)
|
||||||
|
|
||||||
if self.is_wallet_compiled():
|
|
||||||
self.log.info("Compare responses from getwalletinfo RPC and `bitcoin-cli getwalletinfo`")
|
|
||||||
cli_response = self.nodes[0].cli.getwalletinfo()
|
|
||||||
rpc_response = self.nodes[0].getwalletinfo()
|
|
||||||
assert_equal(cli_response, rpc_response)
|
|
||||||
|
|
||||||
self.log.info("Compare responses from getblockchaininfo RPC and `bitcoin-cli getblockchaininfo`")
|
self.log.info("Compare responses from getblockchaininfo RPC and `bitcoin-cli getblockchaininfo`")
|
||||||
cli_response = self.nodes[0].cli.getblockchaininfo()
|
cli_response = self.nodes[0].cli.getblockchaininfo()
|
||||||
rpc_response = self.nodes[0].getblockchaininfo()
|
rpc_response = self.nodes[0].getblockchaininfo()
|
||||||
@ -59,7 +53,6 @@ class TestBitcoinCli(BitcoinTestFramework):
|
|||||||
cli_get_info = self.nodes[0].cli('-getinfo').send_cli()
|
cli_get_info = self.nodes[0].cli('-getinfo').send_cli()
|
||||||
network_info = self.nodes[0].getnetworkinfo()
|
network_info = self.nodes[0].getnetworkinfo()
|
||||||
blockchain_info = self.nodes[0].getblockchaininfo()
|
blockchain_info = self.nodes[0].getblockchaininfo()
|
||||||
|
|
||||||
assert_equal(cli_get_info['version'], network_info['version'])
|
assert_equal(cli_get_info['version'], network_info['version'])
|
||||||
assert_equal(cli_get_info['blocks'], blockchain_info['blocks'])
|
assert_equal(cli_get_info['blocks'], blockchain_info['blocks'])
|
||||||
assert_equal(cli_get_info['timeoffset'], network_info['timeoffset'])
|
assert_equal(cli_get_info['timeoffset'], network_info['timeoffset'])
|
||||||
@ -69,15 +62,16 @@ class TestBitcoinCli(BitcoinTestFramework):
|
|||||||
assert_equal(cli_get_info['chain'], blockchain_info['chain'])
|
assert_equal(cli_get_info['chain'], blockchain_info['chain'])
|
||||||
|
|
||||||
if self.is_wallet_compiled():
|
if self.is_wallet_compiled():
|
||||||
self.log.info("Test -getinfo returns expected wallet info")
|
self.log.info("Test -getinfo and bitcoin-cli getwalletinfo return expected wallet info")
|
||||||
assert_equal(cli_get_info['balance'], BALANCE)
|
assert_equal(cli_get_info['balance'], BALANCE)
|
||||||
wallet_info = self.nodes[0].getwalletinfo()
|
wallet_info = self.nodes[0].getwalletinfo()
|
||||||
assert_equal(cli_get_info['keypoolsize'], wallet_info['keypoolsize'])
|
assert_equal(cli_get_info['keypoolsize'], wallet_info['keypoolsize'])
|
||||||
assert_equal(cli_get_info['paytxfee'], wallet_info['paytxfee'])
|
assert_equal(cli_get_info['paytxfee'], wallet_info['paytxfee'])
|
||||||
assert_equal(cli_get_info['relayfee'], network_info['relayfee'])
|
assert_equal(cli_get_info['relayfee'], network_info['relayfee'])
|
||||||
# unlocked_until is not tested because the wallet is not encrypted
|
# unlocked_until is not tested because the wallet is not encrypted
|
||||||
|
assert_equal(self.nodes[0].cli.getwalletinfo(), wallet_info)
|
||||||
else:
|
else:
|
||||||
self.log.info("*** Wallet not compiled; -getinfo wallet tests skipped")
|
self.log.info("*** Wallet not compiled; cli getwalletinfo and -getinfo wallet tests skipped")
|
||||||
|
|
||||||
self.stop_node(0)
|
self.stop_node(0)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user