diff options
author | Jon Atack <jon@atack.com> | 2020-04-15 15:24:52 +0200 |
---|---|---|
committer | Jon Atack <jon@atack.com> | 2020-04-15 16:40:24 +0200 |
commit | c28c7b882b40cc75989dd102414de3b3dad69706 (patch) | |
tree | 1f43ecb34141402724c761a0baaa27cd3d978b0d /test/functional/interface_bitcoin_cli.py | |
parent | bb13f46fb15c360c68e370d0106463afd590dc43 (diff) |
test: add -getinfo "unlocked_until" and "headers" coverage
Diffstat (limited to 'test/functional/interface_bitcoin_cli.py')
-rwxr-xr-x | test/functional/interface_bitcoin_cli.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/test/functional/interface_bitcoin_cli.py b/test/functional/interface_bitcoin_cli.py index e18bdd2d1b..07edc4e0ba 100755 --- a/test/functional/interface_bitcoin_cli.py +++ b/test/functional/interface_bitcoin_cli.py @@ -50,11 +50,14 @@ class TestBitcoinCli(BitcoinTestFramework): assert_raises_process_error(1, "-getinfo takes no arguments", self.nodes[0].cli('-getinfo').help) self.log.info("Test -getinfo returns expected network and blockchain info") + if self.is_wallet_compiled(): + self.nodes[0].encryptwallet(password) cli_get_info = self.nodes[0].cli('-getinfo').send_cli() network_info = self.nodes[0].getnetworkinfo() blockchain_info = self.nodes[0].getblockchaininfo() assert_equal(cli_get_info['version'], network_info['version']) assert_equal(cli_get_info['blocks'], blockchain_info['blocks']) + assert_equal(cli_get_info['headers'], blockchain_info['headers']) assert_equal(cli_get_info['timeoffset'], network_info['timeoffset']) assert_equal(cli_get_info['connections'], network_info['connections']) assert_equal(cli_get_info['proxy'], network_info['networks'][0]['proxy']) @@ -66,9 +69,9 @@ class TestBitcoinCli(BitcoinTestFramework): assert_equal(cli_get_info['balance'], BALANCE) wallet_info = self.nodes[0].getwalletinfo() assert_equal(cli_get_info['keypoolsize'], wallet_info['keypoolsize']) + assert_equal(cli_get_info['unlocked_until'], wallet_info['unlocked_until']) assert_equal(cli_get_info['paytxfee'], wallet_info['paytxfee']) assert_equal(cli_get_info['relayfee'], network_info['relayfee']) - # unlocked_until is not tested because the wallet is not encrypted assert_equal(self.nodes[0].cli.getwalletinfo(), wallet_info) else: self.log.info("*** Wallet not compiled; cli getwalletinfo and -getinfo wallet tests skipped") |