2016-05-06 11:23:48 +02:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
# Copyright (c) 2014-2016 The Bitcoin Core developers
|
2015-11-30 15:42:27 +01:00
|
|
|
# Distributed under the MIT software license, see the accompanying
|
|
|
|
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
2019-01-07 10:55:35 +01:00
|
|
|
"""Test mempool limiting together/eviction with the wallet."""
|
2015-11-30 15:42:27 +01:00
|
|
|
|
Merge #13054: tests: Enable automatic detection of undefined names in Python tests scripts. Remove wildcard imports.
68400d8b96 tests: Use explicit imports (practicalswift)
Pull request description:
Enable automatic detection of undefined names in Python tests scripts. Remove wildcard imports.
Wildcard imports make it unclear which names are present in the namespace, confusing both readers and many automated tools.
An additional benefit of not using wildcard imports in tests scripts is that readers of a test script then can infer the rough testing scope just by looking at the imports.
Before this commit:
```
$ contrib/devtools/lint-python.sh | head -10
./test/functional/feature_rbf.py:8:1: F403 'from test_framework.util import *' used; unable to detect undefined names
./test/functional/feature_rbf.py:9:1: F403 'from test_framework.script import *' used; unable to detect undefined names
./test/functional/feature_rbf.py:10:1: F403 'from test_framework.mininode import *' used; unable to detect undefined names
./test/functional/feature_rbf.py:15:12: F405 bytes_to_hex_str may be undefined, or defined from star imports: test_framework.mininode, test_framework.script, test_framework.util
./test/functional/feature_rbf.py:17:58: F405 CScript may be undefined, or defined from star imports: test_framework.mininode, test_framework.script, test_framework.util
./test/functional/feature_rbf.py:25:13: F405 COIN may be undefined, or defined from star imports: test_framework.mininode, test_framework.script, test_framework.util
./test/functional/feature_rbf.py:26:31: F405 satoshi_round may be undefined, or defined from star imports: test_framework.mininode, test_framework.script, test_framework.util
./test/functional/feature_rbf.py:26:60: F405 COIN may be undefined, or defined from star imports: test_framework.mininode, test_framework.script, test_framework.util
./test/functional/feature_rbf.py:30:41: F405 satoshi_round may be undefined, or defined from star imports: test_framework.mininode, test_framework.script, test_framework.util
./test/functional/feature_rbf.py:30:68: F405 COIN may be undefined, or defined from star imports: test_framework.mininode, test_framework.script, test_framework.util
$
```
After this commit:
```
$ contrib/devtools/lint-python.sh | head -10
$
```
Tree-SHA512: 3f826d39cffb6438388e5efcb20a9622ff8238247e882d68f7b38609877421b2a8e10e9229575f8eb6a8fa42dec4256986692e92922c86171f750a0e887438d9
2018-08-13 14:24:43 +02:00
|
|
|
from decimal import Decimal
|
|
|
|
|
2015-11-30 15:42:27 +01:00
|
|
|
from test_framework.test_framework import BitcoinTestFramework
|
Merge #13054: tests: Enable automatic detection of undefined names in Python tests scripts. Remove wildcard imports.
68400d8b96 tests: Use explicit imports (practicalswift)
Pull request description:
Enable automatic detection of undefined names in Python tests scripts. Remove wildcard imports.
Wildcard imports make it unclear which names are present in the namespace, confusing both readers and many automated tools.
An additional benefit of not using wildcard imports in tests scripts is that readers of a test script then can infer the rough testing scope just by looking at the imports.
Before this commit:
```
$ contrib/devtools/lint-python.sh | head -10
./test/functional/feature_rbf.py:8:1: F403 'from test_framework.util import *' used; unable to detect undefined names
./test/functional/feature_rbf.py:9:1: F403 'from test_framework.script import *' used; unable to detect undefined names
./test/functional/feature_rbf.py:10:1: F403 'from test_framework.mininode import *' used; unable to detect undefined names
./test/functional/feature_rbf.py:15:12: F405 bytes_to_hex_str may be undefined, or defined from star imports: test_framework.mininode, test_framework.script, test_framework.util
./test/functional/feature_rbf.py:17:58: F405 CScript may be undefined, or defined from star imports: test_framework.mininode, test_framework.script, test_framework.util
./test/functional/feature_rbf.py:25:13: F405 COIN may be undefined, or defined from star imports: test_framework.mininode, test_framework.script, test_framework.util
./test/functional/feature_rbf.py:26:31: F405 satoshi_round may be undefined, or defined from star imports: test_framework.mininode, test_framework.script, test_framework.util
./test/functional/feature_rbf.py:26:60: F405 COIN may be undefined, or defined from star imports: test_framework.mininode, test_framework.script, test_framework.util
./test/functional/feature_rbf.py:30:41: F405 satoshi_round may be undefined, or defined from star imports: test_framework.mininode, test_framework.script, test_framework.util
./test/functional/feature_rbf.py:30:68: F405 COIN may be undefined, or defined from star imports: test_framework.mininode, test_framework.script, test_framework.util
$
```
After this commit:
```
$ contrib/devtools/lint-python.sh | head -10
$
```
Tree-SHA512: 3f826d39cffb6438388e5efcb20a9622ff8238247e882d68f7b38609877421b2a8e10e9229575f8eb6a8fa42dec4256986692e92922c86171f750a0e887438d9
2018-08-13 14:24:43 +02:00
|
|
|
from test_framework.util import assert_equal, assert_greater_than, assert_raises_rpc_error, create_confirmed_utxos, create_lots_of_big_transactions, gen_return_txouts
|
2015-11-30 15:42:27 +01:00
|
|
|
|
|
|
|
class MempoolLimitTest(BitcoinTestFramework):
|
2017-09-01 18:47:13 +02:00
|
|
|
def set_test_params(self):
|
2016-05-20 15:16:51 +02:00
|
|
|
self.setup_clean_chain = True
|
|
|
|
self.num_nodes = 1
|
2019-07-16 22:07:14 +02:00
|
|
|
self.extra_args = [[
|
|
|
|
"-acceptnonstdtxn=1",
|
|
|
|
"-maxmempool=5",
|
|
|
|
"-spendzeroconfchange=0",
|
|
|
|
]]
|
2019-12-09 19:52:38 +01:00
|
|
|
self.supports_cli = False
|
2015-11-30 15:42:27 +01:00
|
|
|
|
2018-09-13 12:33:15 +02:00
|
|
|
def skip_test_if_missing_module(self):
|
|
|
|
self.skip_if_no_wallet()
|
|
|
|
|
2015-11-30 15:42:27 +01:00
|
|
|
def run_test(self):
|
2017-05-02 20:02:55 +02:00
|
|
|
txouts = gen_return_txouts()
|
|
|
|
relayfee = self.nodes[0].getnetworkinfo()['relayfee']
|
|
|
|
|
2018-01-04 09:22:40 +01:00
|
|
|
self.log.info('Check that mempoolminfee is minrelytxfee')
|
|
|
|
assert_equal(self.nodes[0].getmempoolinfo()['minrelaytxfee'], Decimal('0.00001000'))
|
|
|
|
assert_equal(self.nodes[0].getmempoolinfo()['mempoolminfee'], Decimal('0.00001000'))
|
|
|
|
|
2015-11-30 15:42:27 +01:00
|
|
|
txids = []
|
2017-05-02 20:02:55 +02:00
|
|
|
utxos = create_confirmed_utxos(relayfee, self.nodes[0], 491)
|
2015-11-30 15:42:27 +01:00
|
|
|
|
2018-01-04 09:22:40 +01:00
|
|
|
self.log.info('Create a mempool tx that will be evicted')
|
2015-11-30 15:42:27 +01:00
|
|
|
us0 = utxos.pop()
|
|
|
|
inputs = [{ "txid" : us0["txid"], "vout" : us0["vout"]}]
|
|
|
|
outputs = {self.nodes[0].getnewaddress() : 0.0001}
|
|
|
|
tx = self.nodes[0].createrawtransaction(inputs, outputs)
|
2017-05-02 20:02:55 +02:00
|
|
|
self.nodes[0].settxfee(relayfee) # specifically fund this tx with low fee
|
2015-11-30 15:42:27 +01:00
|
|
|
txF = self.nodes[0].fundrawtransaction(tx)
|
2016-01-05 19:10:19 +01:00
|
|
|
self.nodes[0].settxfee(0) # return to automatic fee selection
|
2018-02-20 03:29:22 +01:00
|
|
|
txFS = self.nodes[0].signrawtransactionwithwallet(txF['hex'])
|
2015-11-30 15:42:27 +01:00
|
|
|
txid = self.nodes[0].sendrawtransaction(txFS['hex'])
|
|
|
|
|
|
|
|
relayfee = self.nodes[0].getnetworkinfo()['relayfee']
|
|
|
|
base_fee = relayfee*100
|
2016-12-06 12:05:31 +01:00
|
|
|
for i in range (3):
|
2015-11-30 15:42:27 +01:00
|
|
|
txids.append([])
|
2017-05-02 20:02:55 +02:00
|
|
|
txids[i] = create_lots_of_big_transactions(self.nodes[0], txouts, utxos[30*i:30*i+30], 30, (i+1)*base_fee)
|
2015-11-30 15:42:27 +01:00
|
|
|
|
2018-01-04 09:22:40 +01:00
|
|
|
self.log.info('The tx should be evicted by now')
|
2021-08-27 21:03:02 +02:00
|
|
|
assert txid not in self.nodes[0].getrawmempool()
|
2015-12-02 18:12:23 +01:00
|
|
|
txdata = self.nodes[0].gettransaction(txid)
|
2021-08-27 21:03:02 +02:00
|
|
|
assert txdata['confirmations'] == 0 #confirmation should still be 0
|
2015-11-30 15:42:27 +01:00
|
|
|
|
2018-01-04 09:22:40 +01:00
|
|
|
self.log.info('Check that mempoolminfee is larger than minrelytxfee')
|
|
|
|
assert_equal(self.nodes[0].getmempoolinfo()['minrelaytxfee'], Decimal('0.00001000'))
|
|
|
|
assert_greater_than(self.nodes[0].getmempoolinfo()['mempoolminfee'], Decimal('0.00001000'))
|
|
|
|
|
2018-02-15 16:35:12 +01:00
|
|
|
self.log.info('Create a mempool tx that will not pass mempoolminfee')
|
|
|
|
us0 = utxos.pop()
|
|
|
|
inputs = [{ "txid" : us0["txid"], "vout" : us0["vout"]}]
|
|
|
|
outputs = {self.nodes[0].getnewaddress() : 0.0001}
|
|
|
|
tx = self.nodes[0].createrawtransaction(inputs, outputs)
|
|
|
|
# specifically fund this tx with a fee < mempoolminfee, >= than minrelaytxfee
|
|
|
|
txF = self.nodes[0].fundrawtransaction(tx, {'feeRate': relayfee})
|
2018-02-20 03:29:22 +01:00
|
|
|
txFS = self.nodes[0].signrawtransactionwithwallet(txF['hex'])
|
2018-03-05 22:07:59 +01:00
|
|
|
assert_raises_rpc_error(-26, "mempool min fee not met", self.nodes[0].sendrawtransaction, txFS['hex'])
|
2018-02-15 16:35:12 +01:00
|
|
|
|
2015-11-30 15:42:27 +01:00
|
|
|
if __name__ == '__main__':
|
|
|
|
MempoolLimitTest().main()
|