2017-02-07 17:43:36 -05:00
|
|
|
#!/usr/bin/env python3
|
2018-07-26 18:36:45 -04:00
|
|
|
# Copyright (c) 2016-2018 The Bitcoin Core developers
|
2017-02-07 17:43:36 -05:00
|
|
|
# Distributed under the MIT software license, see the accompanying
|
|
|
|
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
2017-01-17 18:34:40 -05:00
|
|
|
"""Test various net timeouts.
|
2017-02-07 17:43:36 -05: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 15:30:26 -08:00
|
|
|
- Wait 1 second
|
2017-02-07 17:43:36 -05:00
|
|
|
- Assert that we're still connected
|
|
|
|
- Send a ping to no_verack_node and no_version_node
|
2018-11-15 15:30:26 -08:00
|
|
|
- Wait 2 seconds
|
|
|
|
- Assert that we're no longer connected (timeout to receive version/verack is 3 seconds)
|
2017-02-07 17:43:36 -05:00
|
|
|
"""
|
|
|
|
|
|
|
|
from time import sleep
|
|
|
|
|
2018-07-07 00:10:35 +02:00
|
|
|
from test_framework.messages import msg_ping
|
|
|
|
from test_framework.mininode import P2PInterface
|
2017-02-07 17:43:36 -05:00
|
|
|
from test_framework.test_framework import BitcoinTestFramework
|
|
|
|
|
2018-02-07 09:22:58 -05:00
|
|
|
class TestP2PConn(P2PInterface):
|
2017-11-17 15:01:24 -05:00
|
|
|
def on_version(self, message):
|
2017-02-07 17:43:36 -05:00
|
|
|
# Don't send a verack in response
|
2017-03-30 08:38:46 -04:00
|
|
|
pass
|
2017-02-07 17:43:36 -05:00
|
|
|
|
|
|
|
class TimeoutsTest(BitcoinTestFramework):
|
2017-06-09 18:21:21 -04:00
|
|
|
def set_test_params(self):
|
2017-02-07 17:43:36 -05:00
|
|
|
self.setup_clean_chain = True
|
|
|
|
self.num_nodes = 1
|
2018-11-15 15:30:26 -08:00
|
|
|
# set timeout to receive version/verack to 3 seconds
|
|
|
|
self.extra_args = [["-peertimeout=3"]]
|
2017-02-07 17:43:36 -05:00
|
|
|
|
|
|
|
def run_test(self):
|
2018-06-18 17:28:37 -04:00
|
|
|
# Setup the p2p connections
|
2018-02-07 09:22:58 -05:00
|
|
|
no_verack_node = self.nodes[0].add_p2p_connection(TestP2PConn())
|
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 17:43:36 -05: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 17:43:36 -05:00
|
|
|
|
2017-08-24 15:36:02 -04:00
|
|
|
no_verack_node.send_message(msg_ping())
|
|
|
|
no_version_node.send_message(msg_ping())
|
2017-02-07 17:43:36 -05:00
|
|
|
|
2018-11-15 15:30:26 -08:00
|
|
|
sleep(1)
|
2017-02-07 17:43:36 -05:00
|
|
|
|
2017-08-24 15:36:02 -04:00
|
|
|
assert "version" in no_verack_node.last_message
|
2017-02-07 17:43:36 -05: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 17:43:36 -05:00
|
|
|
|
2017-08-24 15:36:02 -04:00
|
|
|
no_verack_node.send_message(msg_ping())
|
|
|
|
no_version_node.send_message(msg_ping())
|
2017-02-07 17:43:36 -05:00
|
|
|
|
2018-11-15 15:30:26 -08: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-21 02:08:22 +01: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 15:30:26 -08: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 17:43:36 -05:00
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
TimeoutsTest().main()
|