8#include <chainparams.h>
21#include <validation.h>
26#include <boost/test/unit_test.hpp>
138 node.fSuccessfullyConnected =
true;
157 connman->Init(options);
158 std::vector<CNode *>
vNodes;
165 peerLogic->CheckForStaleTipAndEvictPeers();
176 peerLogic->CheckForStaleTipAndEvictPeers();
191 peerLogic->CheckForStaleTipAndEvictPeers();
198 vNodes.back()->fDisconnect =
false;
204 peerLogic->CheckForStaleTipAndEvictPeers();
218 peerLogic->CheckForStaleTipAndEvictPeers();
231 peerLogic->CheckForStaleTipAndEvictPeers();
239 connman->ClearTestNodes();
253 connman->Init(options);
254 std::vector<CNode*>
vNodes;
260 peerLogic->CheckForStaleTipAndEvictPeers();
268 peerLogic->CheckForStaleTipAndEvictPeers();
277 peerLogic->CheckForStaleTipAndEvictPeers();
285 vNodes.back()->fDisconnect =
false;
288 peerLogic->CheckForStaleTipAndEvictPeers();
298 connman->ClearTestNodes();
311 tor_netaddr.SetSpecial(
"pg6mmjiyjmcrsslvykfwnntlaru7p5svn6y2ymmju6nubxndf4pscryd.onion"));
320 std::array<CNode*, 3>
nodes;
322 banman->ClearBanned();
336 nodes[0]->fSuccessfullyConnected =
true;
337 connman->AddTestNode(*
nodes[0]);
357 nodes[1]->fSuccessfullyConnected =
true;
358 connman->AddTestNode(*
nodes[1]);
388 nodes[2]->fSuccessfullyConnected =
true;
389 connman->AddTestNode(*
nodes[2]);
402 connman->ClearTestNodes();
413 banman->ClearBanned();
static constexpr unsigned int DEFAULT_MISBEHAVING_BANTIME
const CChainParams & Params()
Return the currently selected parameters.
A CService with information about it as peer.
uint16_t GetDefaultPort() const
bool SetSpecial(std::string_view addr)
Parse a Tor or I2P address and set this object to it.
Information about a peer.
A combination of a network address (CNetAddr) and a (TCP) port.
static Mutex g_msgproc_mutex
Mutex for anything that is only accessed via the msg processing thread.
virtual void FinalizeNode(const CNode &node)=0
Handle removal of a peer (clear state)
virtual bool SendMessages(CNode &node) EXCLUSIVE_LOCKS_REQUIRED(g_msgproc_mutex)=0
Send queued protocol messages to a given node.
static std::unique_ptr< PeerManager > make(CConnman &connman, AddrMan &addrman, BanMan *banman, ChainstateManager &chainman, CTxMemPool &pool, node::Warnings &warnings, Options opts)
std::vector< B > randbytes(size_t len) noexcept
Generate random bytes.
uint64_t randbits(int bits) noexcept
Generate a random (bits)-bit integer.
ConnectionType
Different types of connections to a peer.
@ BLOCK_RELAY
We use block-relay-only connections to help prevent against partition attacks.
@ OUTBOUND_FULL_RELAY
These are the default connections that we use to connect with the network.
@ INBOUND
Inbound connections are those initiated by a peer.
RecursiveMutex cs_main
Mutex to guard access to validation specific variables, such as reading or changing the chainstate.
BOOST_FIXTURE_TEST_SUITE(cuckoocache_tests, BasicTestingSetup)
Test Suite for CuckooCache.
BOOST_AUTO_TEST_SUITE_END()
BOOST_FIXTURE_TEST_CASE(stale_tip_peer_management, OutboundTest)
BOOST_AUTO_TEST_CASE(outbound_slow_chain_eviction)
static CService ip(uint32_t i)
static const std::string addr1
static const unsigned int DEFAULT_MAX_PEER_CONNECTIONS
The maximum number of peer connections to maintain.
static const int MAX_OUTBOUND_FULL_RELAY_CONNECTIONS
Maximum number of automatic outgoing nodes over which we'll relay everything (blocks,...
static const int MAX_BLOCK_RELAY_ONLY_CONNECTIONS
Maximum number of block-relay-only outgoing connections.
static constexpr auto MINIMUM_CONNECT_TIME
Minimum time an outbound-peer-eviction candidate must be connected for, in order to evict.
std::string OnionToString(std::span< const uint8_t > addr)
static constexpr size_t ADDR_TORV3_SIZE
Size of TORv3 address (in bytes).
#define BOOST_CHECK(expr)
ServiceFlags
nServices flags
static const int PROTOCOL_VERSION
network protocol versioning
int m_max_automatic_connections
void AddTestNode(CNode &node)
void FlushSendBuffer(CNode &node) const
void SetPeerConnectTimeout(std::chrono::seconds timeout)
void AddRandomOutboundPeer(NodeId &id, std::vector< CNode * > &vNodes, PeerManager &peerLogic, ConnmanTestMsg &connman, ConnectionType connType, bool onion_peer=false)
Testing setup that configures a complete environment.
std::unique_ptr< CConnman > connman
std::unique_ptr< CTxMemPool > mempool
std::unique_ptr< AddrMan > addrman
std::unique_ptr< ChainstateManager > chainman
std::unique_ptr< node::Warnings > warnings
Manages all the node warnings.
std::unique_ptr< PeerManager > peerman
std::unique_ptr< const NetGroupManager > netgroupman
int64_t GetTime()
DEPRECATED Use either ClockType::now() or Now<TimePointType>() if a cast is needed.
void SetMockTime(int64_t nMockTimeIn)
DEPRECATED Use SetMockTime with chrono type.
constexpr auto Ticks(Dur2 d)
Helper to count the seconds of a duration/time_point.