2016-05-06 11:23:48 +02:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
# Copyright (c) 2014-2016 The Bitcoin Core developers
|
2014-10-23 03:48:19 +02:00
|
|
|
# Distributed under the MIT software license, see the accompanying
|
2014-07-11 14:39:50 +02:00
|
|
|
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
2019-01-07 10:55:35 +01:00
|
|
|
"""Test longpolling with getblocktemplate."""
|
2014-07-11 14:39:50 +02: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
|
2020-10-17 17:57:07 +02:00
|
|
|
import random
|
|
|
|
import threading
|
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
|
|
|
|
2015-05-02 12:53:35 +02:00
|
|
|
from test_framework.test_framework import BitcoinTestFramework
|
2020-10-17 17:57:07 +02:00
|
|
|
from test_framework.util import get_rpc_proxy, wait_until
|
|
|
|
from test_framework.wallet import MiniWallet
|
2014-07-11 14:39:50 +02:00
|
|
|
|
|
|
|
|
|
|
|
class LongpollThread(threading.Thread):
|
|
|
|
def __init__(self, node):
|
|
|
|
threading.Thread.__init__(self)
|
|
|
|
# query current longpollid
|
2018-09-06 00:12:39 +02:00
|
|
|
template = node.getblocktemplate()
|
|
|
|
self.longpollid = template['longpollid']
|
2014-07-11 14:39:50 +02:00
|
|
|
# create a new connection to the node, we can't use the same
|
|
|
|
# connection from two threads
|
2017-08-15 23:34:07 +02:00
|
|
|
self.node = get_rpc_proxy(node.url, 1, timeout=600, coveragedir=node.coverage_dir)
|
2014-07-11 14:39:50 +02:00
|
|
|
|
|
|
|
def run(self):
|
|
|
|
self.node.getblocktemplate({'longpollid':self.longpollid})
|
|
|
|
|
2014-11-17 19:47:40 +01:00
|
|
|
class GetBlockTemplateLPTest(BitcoinTestFramework):
|
2017-09-01 18:47:13 +02:00
|
|
|
def set_test_params(self):
|
|
|
|
self.num_nodes = 2
|
2019-12-09 19:52:38 +01:00
|
|
|
self.supports_cli = False
|
2016-05-20 15:16:51 +02:00
|
|
|
|
2014-10-20 14:14:04 +02:00
|
|
|
def run_test(self):
|
2017-03-09 21:16:20 +01:00
|
|
|
self.log.info("Warning: this test will take about 70 seconds in the best case. Be patient.")
|
2020-10-17 17:57:07 +02:00
|
|
|
self.log.info("Test that longpollid doesn't change between successive getblocktemplate() invocations if nothing else happens")
|
2015-04-01 05:28:28 +02:00
|
|
|
self.nodes[0].generate(10)
|
2018-09-06 00:12:39 +02:00
|
|
|
template = self.nodes[0].getblocktemplate()
|
|
|
|
longpollid = template['longpollid']
|
|
|
|
template2 = self.nodes[0].getblocktemplate()
|
2021-08-27 21:03:02 +02:00
|
|
|
assert template2['longpollid'] == longpollid
|
2014-07-11 14:39:50 +02:00
|
|
|
|
2020-10-17 17:57:07 +02:00
|
|
|
self.log.info("Test that longpoll waits if we do nothing")
|
2014-10-20 14:14:04 +02:00
|
|
|
thr = LongpollThread(self.nodes[0])
|
2014-07-11 14:39:50 +02:00
|
|
|
thr.start()
|
|
|
|
# check that thread still lives
|
|
|
|
thr.join(5) # wait 5 seconds or until thread exits
|
2021-08-27 21:03:02 +02:00
|
|
|
assert thr.is_alive()
|
2014-07-11 14:39:50 +02:00
|
|
|
|
2020-10-17 17:57:07 +02:00
|
|
|
miniwallets = [ MiniWallet(node) for node in self.nodes ]
|
|
|
|
self.log.info("Test that longpoll will terminate if another node generates a block")
|
|
|
|
miniwallets[1].generate(1) # generate a block on another node
|
2014-07-11 14:39:50 +02:00
|
|
|
# check that thread will exit now that new transaction entered mempool
|
|
|
|
thr.join(5) # wait 5 seconds or until thread exits
|
2021-08-27 21:03:02 +02:00
|
|
|
assert not thr.is_alive()
|
2014-07-11 14:39:50 +02:00
|
|
|
|
2020-10-17 17:57:07 +02:00
|
|
|
self.log.info("Test that longpoll will terminate if we generate a block ourselves")
|
2014-10-20 14:14:04 +02:00
|
|
|
thr = LongpollThread(self.nodes[0])
|
2014-07-11 14:39:50 +02:00
|
|
|
thr.start()
|
2020-10-17 17:57:07 +02:00
|
|
|
miniwallets[0].generate(1) # generate a block on own node
|
2014-07-11 14:39:50 +02:00
|
|
|
thr.join(5) # wait 5 seconds or until thread exits
|
2021-08-27 21:03:02 +02:00
|
|
|
assert not thr.is_alive()
|
2014-07-11 14:39:50 +02:00
|
|
|
|
2020-10-17 17:57:07 +02:00
|
|
|
# Add enough mature utxos to the wallets, so that all txs spend confirmed coins
|
|
|
|
self.nodes[0].generate(100)
|
|
|
|
self.sync_blocks()
|
|
|
|
|
|
|
|
self.log.info("Test that introducing a new transaction into the mempool will terminate the longpoll")
|
2014-10-20 14:14:04 +02:00
|
|
|
thr = LongpollThread(self.nodes[0])
|
2014-07-11 14:39:50 +02:00
|
|
|
thr.start()
|
|
|
|
# generate a random transaction and submit it
|
2017-03-14 10:13:03 +01:00
|
|
|
min_relay_fee = self.nodes[0].getnetworkinfo()["relayfee"]
|
2020-10-17 17:57:07 +02:00
|
|
|
fee_rate = min_relay_fee + Decimal('0.00000010') * random.randint(0,20)
|
|
|
|
miniwallets[0].send_self_transfer(from_node=random.choice(self.nodes),
|
|
|
|
fee_rate=fee_rate)
|
2014-07-11 14:39:50 +02:00
|
|
|
# after one minute, every 10 seconds the mempool is probed, so in 80 seconds it should have returned
|
2020-06-14 03:58:03 +02:00
|
|
|
|
2020-04-13 22:23:29 +02:00
|
|
|
def check():
|
|
|
|
self.bump_mocktime(1)
|
|
|
|
return not thr.is_alive()
|
|
|
|
wait_until(check, timeout=60 + 20, sleep=1)
|
2014-07-11 14:39:50 +02:00
|
|
|
|
|
|
|
if __name__ == '__main__':
|
2014-11-17 19:47:40 +01:00
|
|
|
GetBlockTemplateLPTest().main()
|