2016-03-19 20:58:06 +01:00
|
|
|
#!/usr/bin/env python3
|
2020-12-31 09:48:25 +01:00
|
|
|
# Copyright (c) 2014-2020 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.
|
2017-01-18 00:34:40 +01:00
|
|
|
"""Test longpolling with getblocktemplate."""
|
2014-07-11 14:39:50 +02:00
|
|
|
|
2018-07-07 00:10:35 +02:00
|
|
|
from decimal import Decimal
|
2020-10-15 20:27:57 +02:00
|
|
|
import random
|
|
|
|
import threading
|
2018-07-07 00:10:35 +02:00
|
|
|
|
2021-05-17 16:38:19 +02:00
|
|
|
from test_framework.blocktools import COINBASE_MATURITY
|
2015-05-02 12:53:35 +02:00
|
|
|
from test_framework.test_framework import BitcoinTestFramework
|
2020-10-15 20:27:57 +02:00
|
|
|
from test_framework.util import get_rpc_proxy
|
|
|
|
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-11-26 17:17:38 +01:00
|
|
|
template = node.getblocktemplate({'rules': ['segwit']})
|
2018-08-14 09:27:30 +02:00
|
|
|
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-06-02 20:30:36 +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):
|
2018-11-26 17:17:38 +01:00
|
|
|
self.node.getblocktemplate({'longpollid': self.longpollid, 'rules': ['segwit']})
|
2014-07-11 14:39:50 +02:00
|
|
|
|
2014-11-17 19:47:40 +01:00
|
|
|
class GetBlockTemplateLPTest(BitcoinTestFramework):
|
2017-08-24 17:11:56 +02:00
|
|
|
def set_test_params(self):
|
|
|
|
self.num_nodes = 2
|
2019-12-06 15:37:49 +01:00
|
|
|
self.supports_cli = False
|
2017-08-24 17:11:56 +02:00
|
|
|
|
2014-10-20 14:14:04 +02:00
|
|
|
def run_test(self):
|
2017-03-08 00:46:17 +01:00
|
|
|
self.log.info("Warning: this test will take about 70 seconds in the best case. Be patient.")
|
2020-10-15 20:39:50 +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-11-26 17:17:38 +01:00
|
|
|
template = self.nodes[0].getblocktemplate({'rules': ['segwit']})
|
2018-08-14 09:27:30 +02:00
|
|
|
longpollid = template['longpollid']
|
2018-11-26 17:17:38 +01:00
|
|
|
template2 = self.nodes[0].getblocktemplate({'rules': ['segwit']})
|
2019-02-19 23:43:44 +01:00
|
|
|
assert template2['longpollid'] == longpollid
|
2014-07-11 14:39:50 +02:00
|
|
|
|
2020-10-15 20:39:50 +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
|
2019-02-19 23:43:44 +01:00
|
|
|
assert thr.is_alive()
|
2014-07-11 14:39:50 +02:00
|
|
|
|
2020-10-15 20:27:57 +02:00
|
|
|
miniwallets = [ MiniWallet(node) for node in self.nodes ]
|
2020-10-15 20:39:50 +02:00
|
|
|
self.log.info("Test that longpoll will terminate if another node generates a block")
|
2020-10-15 20:27:57 +02:00
|
|
|
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
|
2019-02-19 23:43:44 +01:00
|
|
|
assert not thr.is_alive()
|
2014-07-11 14:39:50 +02:00
|
|
|
|
2020-10-15 20:39:50 +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-15 20:27:57 +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
|
2019-02-19 23:43:44 +01:00
|
|
|
assert not thr.is_alive()
|
2014-07-11 14:39:50 +02:00
|
|
|
|
2020-10-15 20:27:57 +02:00
|
|
|
# Add enough mature utxos to the wallets, so that all txs spend confirmed coins
|
2021-05-17 16:38:19 +02:00
|
|
|
self.nodes[0].generate(COINBASE_MATURITY)
|
2020-10-15 20:27:57 +02:00
|
|
|
self.sync_blocks()
|
|
|
|
|
2020-10-15 20:39:50 +02:00
|
|
|
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-11 19:04:38 +01:00
|
|
|
min_relay_fee = self.nodes[0].getnetworkinfo()["relayfee"]
|
2020-10-15 20:27:57 +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
|
|
|
|
thr.join(60 + 20)
|
2019-02-19 23:43:44 +01:00
|
|
|
assert not thr.is_alive()
|
2014-07-11 14:39:50 +02:00
|
|
|
|
|
|
|
if __name__ == '__main__':
|
2014-11-17 19:47:40 +01:00
|
|
|
GetBlockTemplateLPTest().main()
|