Merge #8309: [qa] Add wallet-hd test
fade505
[qa] Add wallet-hd test (MarcoFalke)fa9976b
[qa] test_framework: Add wrapper for stop_node (MarcoFalke)
This commit is contained in:
commit
bb2646aea0
3 changed files with 82 additions and 0 deletions
|
@ -106,6 +106,7 @@ testScripts = [
|
||||||
'walletbackup.py',
|
'walletbackup.py',
|
||||||
'bip68-112-113-p2p.py',
|
'bip68-112-113-p2p.py',
|
||||||
'wallet.py',
|
'wallet.py',
|
||||||
|
'wallet-hd.py',
|
||||||
'listtransactions.py',
|
'listtransactions.py',
|
||||||
'receivedby.py',
|
'receivedby.py',
|
||||||
'mempool_resurrect_test.py',
|
'mempool_resurrect_test.py',
|
||||||
|
|
|
@ -20,6 +20,7 @@ from .util import (
|
||||||
sync_blocks,
|
sync_blocks,
|
||||||
sync_mempools,
|
sync_mempools,
|
||||||
stop_nodes,
|
stop_nodes,
|
||||||
|
stop_node,
|
||||||
wait_bitcoinds,
|
wait_bitcoinds,
|
||||||
enable_coverage,
|
enable_coverage,
|
||||||
check_json_precision,
|
check_json_precision,
|
||||||
|
@ -49,6 +50,9 @@ class BitcoinTestFramework(object):
|
||||||
else:
|
else:
|
||||||
initialize_chain(self.options.tmpdir, self.num_nodes)
|
initialize_chain(self.options.tmpdir, self.num_nodes)
|
||||||
|
|
||||||
|
def stop_node(self, num_node):
|
||||||
|
stop_node(self.nodes[num_node], num_node)
|
||||||
|
|
||||||
def setup_nodes(self):
|
def setup_nodes(self):
|
||||||
return start_nodes(self.num_nodes, self.options.tmpdir)
|
return start_nodes(self.num_nodes, self.options.tmpdir)
|
||||||
|
|
||||||
|
|
77
qa/rpc-tests/wallet-hd.py
Executable file
77
qa/rpc-tests/wallet-hd.py
Executable file
|
@ -0,0 +1,77 @@
|
||||||
|
#!/usr/bin/env python3
|
||||||
|
# Copyright (c) 2016 The Bitcoin Core developers
|
||||||
|
# Distributed under the MIT software license, see the accompanying
|
||||||
|
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
|
|
||||||
|
from test_framework.test_framework import BitcoinTestFramework
|
||||||
|
from test_framework.util import (
|
||||||
|
start_nodes,
|
||||||
|
start_node,
|
||||||
|
assert_equal,
|
||||||
|
connect_nodes_bi,
|
||||||
|
)
|
||||||
|
import os
|
||||||
|
import shutil
|
||||||
|
|
||||||
|
|
||||||
|
class WalletHDTest(BitcoinTestFramework):
|
||||||
|
|
||||||
|
def __init__(self):
|
||||||
|
super().__init__()
|
||||||
|
self.setup_clean_chain = True
|
||||||
|
self.num_nodes = 2
|
||||||
|
self.node_args = [['-usehd=0'], ['-usehd=1', '-keypool=0']]
|
||||||
|
|
||||||
|
def setup_network(self):
|
||||||
|
self.nodes = start_nodes(self.num_nodes, self.options.tmpdir, self.node_args)
|
||||||
|
self.is_network_split = False
|
||||||
|
connect_nodes_bi(self.nodes, 0, 1)
|
||||||
|
|
||||||
|
def run_test (self):
|
||||||
|
tmpdir = self.options.tmpdir
|
||||||
|
|
||||||
|
# Import a non-HD private key in the HD wallet
|
||||||
|
non_hd_add = self.nodes[0].getnewaddress()
|
||||||
|
self.nodes[1].importprivkey(self.nodes[0].dumpprivkey(non_hd_add))
|
||||||
|
|
||||||
|
# This should be enough to keep the master key and the non-HD key
|
||||||
|
self.nodes[1].backupwallet(tmpdir + "hd.bak")
|
||||||
|
#self.nodes[1].dumpwallet(tmpdir + "hd.dump")
|
||||||
|
|
||||||
|
# Derive some HD addresses and remember the last
|
||||||
|
# Also send funds to each add
|
||||||
|
self.nodes[0].generate(101)
|
||||||
|
hd_add = None
|
||||||
|
num_hd_adds = 300
|
||||||
|
for _ in range(num_hd_adds):
|
||||||
|
hd_add = self.nodes[1].getnewaddress()
|
||||||
|
self.nodes[0].sendtoaddress(hd_add, 1)
|
||||||
|
self.nodes[0].generate(1)
|
||||||
|
self.nodes[0].sendtoaddress(non_hd_add, 1)
|
||||||
|
self.nodes[0].generate(1)
|
||||||
|
|
||||||
|
self.sync_all()
|
||||||
|
assert_equal(self.nodes[1].getbalance(), num_hd_adds + 1)
|
||||||
|
|
||||||
|
print("Restore backup ...")
|
||||||
|
self.stop_node(1)
|
||||||
|
os.remove(self.options.tmpdir + "/node1/regtest/wallet.dat")
|
||||||
|
shutil.copyfile(tmpdir + "hd.bak", tmpdir + "/node1/regtest/wallet.dat")
|
||||||
|
self.nodes[1] = start_node(1, self.options.tmpdir, self.node_args[1])
|
||||||
|
#connect_nodes_bi(self.nodes, 0, 1)
|
||||||
|
|
||||||
|
# Assert that derivation is deterministic
|
||||||
|
hd_add_2 = None
|
||||||
|
for _ in range(num_hd_adds):
|
||||||
|
hd_add_2 = self.nodes[1].getnewaddress()
|
||||||
|
assert_equal(hd_add, hd_add_2)
|
||||||
|
|
||||||
|
# Needs rescan
|
||||||
|
self.stop_node(1)
|
||||||
|
self.nodes[1] = start_node(1, self.options.tmpdir, self.node_args[1] + ['-rescan'])
|
||||||
|
#connect_nodes_bi(self.nodes, 0, 1)
|
||||||
|
assert_equal(self.nodes[1].getbalance(), num_hd_adds + 1)
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == '__main__':
|
||||||
|
WalletHDTest().main ()
|
Loading…
Reference in a new issue