mirror of
https://github.com/dashpay/dash.git
synced 2024-12-26 20:42:59 +01:00
8368bd795e
fa1cd9e1ddc6918c3d600d36eadea71eebb242b6 test: Remove unused lock arg from BitcoinTestFramework.wait_until (MarcoFalke) fad2794e93b4f5976e81793a4a63aa03a2c8c686 test: Rename wait until helper to wait_until_helper (MarcoFalke) facb41bf1d1b7ee552c627f9829b4494b817ce28 test: Remove unused p2p_lock in VersionBitsWarningTest (MarcoFalke) Pull request description: This avoids confusion with the `wait_until` member functions, which should be preferred because they take the appropriate locks and scale the timeout appropriately on their own. ACKs for top commit: laanwj: Code review ACK fa1cd9e1ddc6918c3d600d36eadea71eebb242b6 hebasto: ACK fa1cd9e1ddc6918c3d600d36eadea71eebb242b6, I have reviewed the code and it looks OK, I agree it can be merged. Tree-SHA512: 319d400085606a4c738e314824037f72998e6657d8622b363726842aba968744f23c56d27275dfe506b8cbbb6e97fc39ca1d325db05d4d67df0e8b35f2244d5c
85 lines
3.5 KiB
Python
Executable File
85 lines
3.5 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 longpolling with getblocktemplate."""
|
|
|
|
from decimal import Decimal
|
|
import random
|
|
import threading
|
|
|
|
from test_framework.test_framework import BitcoinTestFramework
|
|
from test_framework.util import get_rpc_proxy
|
|
from test_framework.wallet import MiniWallet
|
|
|
|
|
|
class LongpollThread(threading.Thread):
|
|
def __init__(self, node):
|
|
threading.Thread.__init__(self)
|
|
# query current longpollid
|
|
template = node.getblocktemplate()
|
|
self.longpollid = template['longpollid']
|
|
# create a new connection to the node, we can't use the same
|
|
# connection from two threads
|
|
self.node = get_rpc_proxy(node.url, 1, timeout=600, coveragedir=node.coverage_dir)
|
|
|
|
def run(self):
|
|
self.node.getblocktemplate({'longpollid':self.longpollid})
|
|
|
|
class GetBlockTemplateLPTest(BitcoinTestFramework):
|
|
def set_test_params(self):
|
|
self.num_nodes = 2
|
|
self.supports_cli = False
|
|
|
|
def run_test(self):
|
|
self.log.info("Warning: this test will take about 70 seconds in the best case. Be patient.")
|
|
self.log.info("Test that longpollid doesn't change between successive getblocktemplate() invocations if nothing else happens")
|
|
self.nodes[0].generate(10)
|
|
template = self.nodes[0].getblocktemplate()
|
|
longpollid = template['longpollid']
|
|
template2 = self.nodes[0].getblocktemplate()
|
|
assert template2['longpollid'] == longpollid
|
|
|
|
self.log.info("Test that longpoll waits if we do nothing")
|
|
thr = LongpollThread(self.nodes[0])
|
|
thr.start()
|
|
# check that thread still lives
|
|
thr.join(5) # wait 5 seconds or until thread exits
|
|
assert thr.is_alive()
|
|
|
|
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
|
|
# check that thread will exit now that new transaction entered mempool
|
|
thr.join(5) # wait 5 seconds or until thread exits
|
|
assert not thr.is_alive()
|
|
|
|
self.log.info("Test that longpoll will terminate if we generate a block ourselves")
|
|
thr = LongpollThread(self.nodes[0])
|
|
thr.start()
|
|
miniwallets[0].generate(1) # generate a block on own node
|
|
thr.join(5) # wait 5 seconds or until thread exits
|
|
assert not thr.is_alive()
|
|
|
|
# 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")
|
|
thr = LongpollThread(self.nodes[0])
|
|
thr.start()
|
|
# generate a random transaction and submit it
|
|
min_relay_fee = self.nodes[0].getnetworkinfo()["relayfee"]
|
|
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)
|
|
# after one minute, every 10 seconds the mempool is probed, so in 80 seconds it should have returned
|
|
|
|
def check():
|
|
self.bump_mocktime(1)
|
|
return not thr.is_alive()
|
|
self.wait_until(check, timeout=60 + 20)
|
|
|
|
if __name__ == '__main__':
|
|
GetBlockTemplateLPTest().main()
|