mirror of
https://github.com/dashpay/dash.git
synced 2024-12-26 12:32:48 +01:00
71b4cf307b
fac95398366f644911b58f1605e6bc37fb76782d qa: Run all tests even if wallet is not compiled (MarcoFalke) faa669cbcd1fc799517b523b0f850e01b11bf40a qa: Premine to deterministic address with -disablewallet (MarcoFalke) Pull request description: Currently the test_runner would exit if the wallet was not compiled into the Bitcoin Core executable. However, a lot of the tests run without the wallet just fine and there is no need to globally require the wallet to run the tests. Tree-SHA512: 63177260aa29126fd20f0be217a82b10b62288ab846f96f1cbcc3bd2c52702437703475d91eae3f8d821a3149fc62b725a4c5b2a7b3657b67ffcbc81532a03bb
83 lines
3.4 KiB
Python
Executable File
83 lines
3.4 KiB
Python
Executable File
#!/usr/bin/env python3
|
|
# Copyright (c) 2014-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.
|
|
"""Test the zapwallettxes functionality.
|
|
|
|
- start two dashd nodes
|
|
- create two transactions on node 0 - one is confirmed and one is unconfirmed.
|
|
- restart node 0 and verify that both the confirmed and the unconfirmed
|
|
transactions are still available.
|
|
- restart node 0 with zapwallettxes and persistmempool, and verify that both
|
|
the confirmed and the unconfirmed transactions are still available.
|
|
- restart node 0 with just zapwallettxes and verify that the confirmed
|
|
transactions are still available, but that the unconfirmed transaction has
|
|
been zapped.
|
|
"""
|
|
from test_framework.test_framework import BitcoinTestFramework
|
|
from test_framework.util import (
|
|
assert_equal,
|
|
assert_raises_rpc_error,
|
|
)
|
|
from test_framework.mininode import wait_until
|
|
|
|
class ZapWalletTXesTest (BitcoinTestFramework):
|
|
def set_test_params(self):
|
|
self.setup_clean_chain = True
|
|
self.num_nodes = 2
|
|
|
|
def skip_test_if_missing_module(self):
|
|
self.skip_if_no_wallet()
|
|
|
|
def run_test(self):
|
|
self.log.info("Mining blocks...")
|
|
self.nodes[0].generate(1)
|
|
self.sync_all()
|
|
self.nodes[1].generate(100)
|
|
self.sync_all()
|
|
|
|
# This transaction will be confirmed
|
|
txid1 = self.nodes[0].sendtoaddress(self.nodes[1].getnewaddress(), 10)
|
|
|
|
self.nodes[0].generate(1)
|
|
self.sync_all()
|
|
|
|
# This transaction will not be confirmed
|
|
txid2 = self.nodes[0].sendtoaddress(self.nodes[1].getnewaddress(), 20)
|
|
|
|
# Confirmed and unconfirmed transactions are now in the wallet.
|
|
assert_equal(self.nodes[0].gettransaction(txid1)['txid'], txid1)
|
|
assert_equal(self.nodes[0].gettransaction(txid2)['txid'], txid2)
|
|
|
|
# Stop-start node0. Both confirmed and unconfirmed transactions remain in the wallet.
|
|
self.stop_node(0)
|
|
self.start_node(0)
|
|
|
|
assert_equal(self.nodes[0].gettransaction(txid1)['txid'], txid1)
|
|
assert_equal(self.nodes[0].gettransaction(txid2)['txid'], txid2)
|
|
|
|
# Stop node0 and restart with zapwallettxes and persistmempool. The unconfirmed
|
|
# transaction is zapped from the wallet, but is re-added when the mempool is reloaded.
|
|
self.stop_node(0)
|
|
self.start_node(0, ["-persistmempool=1", "-zapwallettxes=2"])
|
|
|
|
wait_until(lambda: self.nodes[0].getmempoolinfo()['size'] == 1, timeout=3)
|
|
self.nodes[0].syncwithvalidationinterfacequeue() # Flush mempool to wallet
|
|
|
|
assert_equal(self.nodes[0].gettransaction(txid1)['txid'], txid1)
|
|
assert_equal(self.nodes[0].gettransaction(txid2)['txid'], txid2)
|
|
|
|
# Stop node0 and restart with zapwallettxes, but not persistmempool.
|
|
# The unconfirmed transaction is zapped and is no longer in the wallet.
|
|
self.stop_node(0)
|
|
self.start_node(0, ["-zapwallettxes=2"])
|
|
|
|
# tx1 is still be available because it was confirmed
|
|
assert_equal(self.nodes[0].gettransaction(txid1)['txid'], txid1)
|
|
|
|
# This will raise an exception because the unconfirmed transaction has been zapped
|
|
assert_raises_rpc_error(-5, 'Invalid or non-wallet transaction id', self.nodes[0].gettransaction, txid2)
|
|
|
|
if __name__ == '__main__':
|
|
ZapWalletTXesTest().main()
|