Merge #20276: test: run mempool_expiry.py even with wallet disabled

3b064fcb9dd3df6c438a440f0fea86e9cf7b5f57 test: run mempool_expiry.py even with wallet disabled (Michael Dietz)

Pull request description:

  Run the mempool expiry test even when the wallet was not compiled, as proposed in https://github.com/bitcoin/bitcoin/issues/20078.

ACKs for top commit:
  MarcoFalke:
    ACK 3b064fcb9dd3df6c438a440f0fea86e9cf7b5f57

Tree-SHA512: 5860dc021d02bc3752268ec1e859505bec87174953223b34b1af8a8e4ab66d645458fbf9571c0b816a9de891c3ff41314996e580869671fccd6972c093e78154
This commit is contained in:
MarcoFalke 2020-12-16 14:52:23 +01:00 committed by pasta
parent df80a6d2b9
commit d15e88c849
No known key found for this signature in database
GPG Key ID: 52527BEDABE87984

View File

@ -16,8 +16,8 @@ from test_framework.test_framework import BitcoinTestFramework
from test_framework.util import ( from test_framework.util import (
assert_equal, assert_equal,
assert_raises_rpc_error, assert_raises_rpc_error,
find_vout_for_address,
) )
from test_framework.wallet import MiniWallet
DEFAULT_MEMPOOL_EXPIRY = 336 # hours DEFAULT_MEMPOOL_EXPIRY = 336 # hours
CUSTOM_MEMPOOL_EXPIRY = 10 # hours CUSTOM_MEMPOOL_EXPIRY = 10 # hours
@ -26,44 +26,50 @@ CUSTOM_MEMPOOL_EXPIRY = 10 # hours
class MempoolExpiryTest(BitcoinTestFramework): class MempoolExpiryTest(BitcoinTestFramework):
def set_test_params(self): def set_test_params(self):
self.num_nodes = 1 self.num_nodes = 1
self.setup_clean_chain = True
def skip_test_if_missing_module(self):
self.skip_if_no_wallet()
def test_transaction_expiry(self, timeout): def test_transaction_expiry(self, timeout):
"""Tests that a transaction expires after the expiry timeout and its """Tests that a transaction expires after the expiry timeout and its
children are removed as well.""" children are removed as well."""
node = self.nodes[0] node = self.nodes[0]
self.wallet = MiniWallet(node)
# Add enough mature utxos to the wallet so that all txs spend confirmed coins.
self.wallet.generate(4)
node.generate(100)
# Send a parent transaction that will expire. # Send a parent transaction that will expire.
parent_address = node.getnewaddress() parent_txid = self.wallet.send_self_transfer(from_node=node)['txid']
parent_txid = node.sendtoaddress(parent_address, 1.0) parent_utxo = self.wallet.get_utxo(txid=parent_txid)
independent_utxo = self.wallet.get_utxo()
# Ensure the transactions we send to trigger the mempool check spend utxos that are independent of
# the transactions being tested for expiration.
trigger_utxo1 = self.wallet.get_utxo()
trigger_utxo2 = self.wallet.get_utxo()
# Set the mocktime to the arrival time of the parent transaction. # Set the mocktime to the arrival time of the parent transaction.
entry_time = node.getmempoolentry(parent_txid)['time'] entry_time = node.getmempoolentry(parent_txid)['time']
node.setmocktime(entry_time) node.setmocktime(entry_time)
# Create child transaction spending the parent transaction # Let half of the timeout elapse and broadcast the child transaction spending the parent transaction.
vout = find_vout_for_address(node, parent_txid, parent_address)
inputs = [{'txid': parent_txid, 'vout': vout}]
outputs = {node.getnewaddress(): 0.99}
child_raw = node.createrawtransaction(inputs, outputs)
child_signed = node.signrawtransactionwithwallet(child_raw)['hex']
# Let half of the timeout elapse and broadcast the child transaction.
half_expiry_time = entry_time + int(60 * 60 * timeout/2) half_expiry_time = entry_time + int(60 * 60 * timeout/2)
node.setmocktime(half_expiry_time) node.setmocktime(half_expiry_time)
child_txid = node.sendrawtransaction(child_signed) child_txid = self.wallet.send_self_transfer(from_node=node, utxo_to_spend=parent_utxo)['txid']
assert_equal(parent_txid, node.getmempoolentry(child_txid)['depends'][0])
self.log.info('Broadcast child transaction after {} hours.'.format( self.log.info('Broadcast child transaction after {} hours.'.format(
timedelta(seconds=(half_expiry_time-entry_time)))) timedelta(seconds=(half_expiry_time-entry_time))))
# Broadcast another (independent) transaction.
independent_txid = self.wallet.send_self_transfer(from_node=node, utxo_to_spend=independent_utxo)['txid']
# Let most of the timeout elapse and check that the parent tx is still # Let most of the timeout elapse and check that the parent tx is still
# in the mempool. # in the mempool.
nearly_expiry_time = entry_time + 60 * 60 * timeout - 5 nearly_expiry_time = entry_time + 60 * 60 * timeout - 5
node.setmocktime(nearly_expiry_time) node.setmocktime(nearly_expiry_time)
# Expiry of mempool transactions is only checked when a new transaction # Broadcast a transaction as the expiry of transactions in the mempool is only checked
# is added to the to the mempool. # when a new transaction is added to the mempool.
node.sendtoaddress(node.getnewaddress(), 1.0) self.wallet.send_self_transfer(from_node=node, utxo_to_spend=trigger_utxo1)
self.log.info('Test parent tx not expired after {} hours.'.format( self.log.info('Test parent tx not expired after {} hours.'.format(
timedelta(seconds=(nearly_expiry_time-entry_time)))) timedelta(seconds=(nearly_expiry_time-entry_time))))
assert_equal(entry_time, node.getmempoolentry(parent_txid)['time']) assert_equal(entry_time, node.getmempoolentry(parent_txid)['time'])
@ -72,9 +78,8 @@ class MempoolExpiryTest(BitcoinTestFramework):
# has passed. # has passed.
expiry_time = entry_time + 60 * 60 * timeout + 5 expiry_time = entry_time + 60 * 60 * timeout + 5
node.setmocktime(expiry_time) node.setmocktime(expiry_time)
# Expiry of mempool transactions is only checked when a new transaction # Again, broadcast a transaction so the expiry of transactions in the mempool is checked.
# is added to the to the mempool. self.wallet.send_self_transfer(from_node=node, utxo_to_spend=trigger_utxo2)
node.sendtoaddress(node.getnewaddress(), 1.0)
self.log.info('Test parent tx expiry after {} hours.'.format( self.log.info('Test parent tx expiry after {} hours.'.format(
timedelta(seconds=(expiry_time-entry_time)))) timedelta(seconds=(expiry_time-entry_time))))
assert_raises_rpc_error(-5, 'Transaction not in mempool', assert_raises_rpc_error(-5, 'Transaction not in mempool',
@ -85,6 +90,11 @@ class MempoolExpiryTest(BitcoinTestFramework):
assert_raises_rpc_error(-5, 'Transaction not in mempool', assert_raises_rpc_error(-5, 'Transaction not in mempool',
node.getmempoolentry, child_txid) node.getmempoolentry, child_txid)
# Check that the independent tx is still in the mempool.
self.log.info('Test the independent tx not expired after {} hours.'.format(
timedelta(seconds=(expiry_time-half_expiry_time))))
assert_equal(half_expiry_time, node.getmempoolentry(independent_txid)['time'])
def run_test(self): def run_test(self):
self.log.info('Test default mempool expiry timeout of %d hours.' % self.log.info('Test default mempool expiry timeout of %d hours.' %
DEFAULT_MEMPOOL_EXPIRY) DEFAULT_MEMPOOL_EXPIRY)