2017-02-07 19:43:36 -03:00
|
|
|
#!/usr/bin/env python3
|
2020-04-16 13:14:08 -04:00
|
|
|
# Copyright (c) 2016-2020 The Bitcoin Core developers
|
2017-02-07 19:43:36 -03:00
|
|
|
# Distributed under the MIT software license, see the accompanying
|
|
|
|
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
2017-01-17 20:34:40 -03:00
|
|
|
"""Test various net timeouts.
|
2017-02-07 19:43:36 -03:00
|
|
|
|
|
|
|
- Create three bitcoind nodes:
|
|
|
|
|
|
|
|
no_verack_node - we never send a verack in response to their version
|
|
|
|
no_version_node - we never send a version (only a ping)
|
|
|
|
no_send_node - we never send any P2P message.
|
|
|
|
|
|
|
|
- Start all three nodes
|
|
|
|
- Wait 1 second
|
|
|
|
- Assert that we're connected
|
|
|
|
- Send a ping to no_verack_node and no_version_node
|
2018-11-15 20:30:26 -03:00
|
|
|
- Wait 1 second
|
2017-02-07 19:43:36 -03:00
|
|
|
- Assert that we're still connected
|
|
|
|
- Send a ping to no_verack_node and no_version_node
|
2018-11-15 20:30:26 -03:00
|
|
|
- Wait 2 seconds
|
|
|
|
- Assert that we're no longer connected (timeout to receive version/verack is 3 seconds)
|
2017-02-07 19:43:36 -03:00
|
|
|
"""
|
|
|
|
|
|
|
|
from time import sleep
|
|
|
|
|
2018-07-06 18:10:35 -04:00
|
|
|
from test_framework.messages import msg_ping
|
2020-07-19 03:47:05 -04:00
|
|
|
from test_framework.p2p import P2PInterface
|
2017-02-07 19:43:36 -03:00
|
|
|
from test_framework.test_framework import BitcoinTestFramework
|
|
|
|
|
2020-03-02 16:14:30 -03:00
|
|
|
|
2018-02-07 11:22:58 -03:00
|
|
|
class TestP2PConn(P2PInterface):
|
2017-11-17 17:01:24 -03:00
|
|
|
def on_version(self, message):
|
2017-02-07 19:43:36 -03:00
|
|
|
# Don't send a verack in response
|
2017-03-30 09:38:46 -03:00
|
|
|
pass
|
2017-02-07 19:43:36 -03:00
|
|
|
|
2020-03-02 16:14:30 -03:00
|
|
|
|
2017-02-07 19:43:36 -03:00
|
|
|
class TimeoutsTest(BitcoinTestFramework):
|
2017-06-09 18:21:21 -04:00
|
|
|
def set_test_params(self):
|
2017-02-07 19:43:36 -03:00
|
|
|
self.setup_clean_chain = True
|
|
|
|
self.num_nodes = 1
|
2018-11-15 20:30:26 -03:00
|
|
|
# set timeout to receive version/verack to 3 seconds
|
|
|
|
self.extra_args = [["-peertimeout=3"]]
|
2017-02-07 19:43:36 -03:00
|
|
|
|
|
|
|
def run_test(self):
|
2018-06-18 17:28:37 -04:00
|
|
|
# Setup the p2p connections
|
2020-03-02 16:14:30 -03:00
|
|
|
no_verack_node = self.nodes[0].add_p2p_connection(TestP2PConn(), wait_for_verack=False)
|
2018-08-08 17:22:45 -04:00
|
|
|
no_version_node = self.nodes[0].add_p2p_connection(TestP2PConn(), send_version=False, wait_for_verack=False)
|
|
|
|
no_send_node = self.nodes[0].add_p2p_connection(TestP2PConn(), send_version=False, wait_for_verack=False)
|
2017-02-07 19:43:36 -03:00
|
|
|
|
2020-03-02 16:14:30 -03:00
|
|
|
# Wait until we got the verack in response to the version. Though, don't wait for the other node to receive the
|
|
|
|
# verack, since we never sent one
|
|
|
|
no_verack_node.wait_for_verack()
|
|
|
|
|
2017-02-07 19:43:36 -03:00
|
|
|
sleep(1)
|
|
|
|
|
2018-06-20 21:24:29 -04:00
|
|
|
assert no_verack_node.is_connected
|
|
|
|
assert no_version_node.is_connected
|
|
|
|
assert no_send_node.is_connected
|
2017-02-07 19:43:36 -03:00
|
|
|
|
2017-08-24 16:36:02 -03:00
|
|
|
no_verack_node.send_message(msg_ping())
|
|
|
|
no_version_node.send_message(msg_ping())
|
2017-02-07 19:43:36 -03:00
|
|
|
|
2018-11-15 20:30:26 -03:00
|
|
|
sleep(1)
|
2017-02-07 19:43:36 -03:00
|
|
|
|
2017-08-24 16:36:02 -03:00
|
|
|
assert "version" in no_verack_node.last_message
|
2017-02-07 19:43:36 -03:00
|
|
|
|
2018-06-20 21:24:29 -04:00
|
|
|
assert no_verack_node.is_connected
|
|
|
|
assert no_version_node.is_connected
|
|
|
|
assert no_send_node.is_connected
|
2017-02-07 19:43:36 -03:00
|
|
|
|
2017-08-24 16:36:02 -03:00
|
|
|
no_verack_node.send_message(msg_ping())
|
|
|
|
no_version_node.send_message(msg_ping())
|
2017-02-07 19:43:36 -03:00
|
|
|
|
2018-11-15 20:30:26 -03:00
|
|
|
expected_timeout_logs = [
|
|
|
|
"version handshake timeout from 0",
|
|
|
|
"socket no message in first 3 seconds, 1 0 from 1",
|
|
|
|
"socket no message in first 3 seconds, 0 0 from 2",
|
|
|
|
]
|
|
|
|
|
|
|
|
with self.nodes[0].assert_debug_log(expected_msgs=expected_timeout_logs):
|
2018-12-20 22:08:22 -03:00
|
|
|
sleep(3)
|
|
|
|
# By now, we waited a total of 5 seconds. Off-by-two for two
|
|
|
|
# reasons:
|
|
|
|
# * The internal precision is one second
|
|
|
|
# * Account for network delay
|
2018-11-15 20:30:26 -03:00
|
|
|
assert not no_verack_node.is_connected
|
|
|
|
assert not no_version_node.is_connected
|
|
|
|
assert not no_send_node.is_connected
|
2017-02-07 19:43:36 -03:00
|
|
|
|
2020-03-02 16:14:30 -03:00
|
|
|
|
2017-02-07 19:43:36 -03:00
|
|
|
if __name__ == '__main__':
|
|
|
|
TimeoutsTest().main()
|