11#include <boost/test/unit_test.hpp>
19 mtx.
vin[0].nSequence = id;
20 if (num_witness > 0) {
22 mtx.
vin[0].scriptWitness.stack.resize(num_witness);
32 const NodeId recipient1{1};
34 ipv4Addr.s_addr = 0xa0b0c001;
51 BOOST_REQUIRE(tx1->GetHash() == tx2->GetHash());
52 BOOST_REQUIRE(tx1->GetWitnessHash() != tx2->GetWitnessHash());
56 const auto it{std::ranges::find(infos, tx->GetWitnessHash(), [](
const auto& info) { return info.tx->GetWitnessHash(); })};
57 BOOST_REQUIRE(it != infos.end());
60 const auto check_peer_counts{[&](
size_t tx1_peer_count,
size_t tx2_peer_count) {
67 check_peer_counts(0, 0);
70 BOOST_CHECK(tx_for_recipient1 == tx1 || tx_for_recipient1 == tx2);
73 const NodeId recipient2{2};
76 BOOST_CHECK(tx_for_recipient2 == tx1 || tx_for_recipient2 == tx2);
77 BOOST_CHECK_NE(tx_for_recipient1, tx_for_recipient2);
79 check_peer_counts(1, 1);
81 const NodeId nonexistent_recipient{0};
105 const auto& [tx, peers]{find_tx_info(infos, tx_for_recipient1)};
111 const auto& [tx, peers]{find_tx_info(infos, tx_for_recipient2)};
130 const CService addr_nonexistent{ipv4Addr, 3333};
A combination of a network address (CNetAddr) and a (TCP) port.
Store a list of transactions to be broadcast privately.
void NodeConfirmedReception(const NodeId &nodeid) EXCLUSIVE_LOCKS_REQUIRED(!m_mutex)
Mark that the node has confirmed reception of the transaction we sent it by responding with PONG to o...
std::vector< TxBroadcastInfo > GetBroadcastInfo() const EXCLUSIVE_LOCKS_REQUIRED(!m_mutex)
Get stats about all transactions currently being privately broadcast.
bool HavePendingTransactions() EXCLUSIVE_LOCKS_REQUIRED(!m_mutex)
Check if there are transactions that need to be broadcast.
bool DidNodeConfirmReception(const NodeId &nodeid) EXCLUSIVE_LOCKS_REQUIRED(!m_mutex)
Check if the node has confirmed reception of the transaction.
std::optional< size_t > Remove(const CTransactionRef &tx) EXCLUSIVE_LOCKS_REQUIRED(!m_mutex)
Forget a transaction.
std::optional< CTransactionRef > PickTxForSend(const NodeId &will_send_to_nodeid, const CService &will_send_to_address) EXCLUSIVE_LOCKS_REQUIRED(!m_mutex)
Pick the transaction with the fewest send attempts, and confirmations, and oldest send/confirm times.
std::optional< CTransactionRef > GetTxForNode(const NodeId &nodeid) EXCLUSIVE_LOCKS_REQUIRED(!m_mutex)
Get the transaction that was picked for sending to a given node by PickTxForSend().
bool Add(const CTransactionRef &tx) EXCLUSIVE_LOCKS_REQUIRED(!m_mutex)
Add a transaction to the storage.
std::vector< CTransactionRef > GetStale() const EXCLUSIVE_LOCKS_REQUIRED(!m_mutex)
Get the transactions that have not been broadcast recently.
BOOST_FIXTURE_TEST_SUITE(cuckoocache_tests, BasicTestingSetup)
Test Suite for CuckooCache.
BOOST_AUTO_TEST_SUITE_END()
static const std::string addr1
static const std::string addr2
#define BOOST_CHECK_EQUAL(v1, v2)
#define BOOST_CHECK(expr)
static CTransactionRef MakeTransactionRef(Tx &&txIn)
std::shared_ptr< const CTransaction > CTransactionRef
static CTransactionRef MakeDummyTx(uint32_t id, size_t num_witness)
BOOST_AUTO_TEST_CASE(basic)
A mutable version of CTransaction.
void SetMockTime(int64_t nMockTimeIn)
DEPRECATED Use SetMockTime with chrono type.