13#include <boost/test/unit_test.hpp>
31 mtx.
vin[0].nSequence = id;
32 if (num_witness > 0) {
34 mtx.
vin[0].scriptWitness.stack.resize(num_witness);
44 const NodeId recipient1{1};
46 ipv4Addr.s_addr = 0xa0b0c001;
63 BOOST_REQUIRE(tx1->GetHash() == tx2->GetHash());
64 BOOST_REQUIRE(tx1->GetWitnessHash() != tx2->GetWitnessHash());
68 const auto it{std::ranges::find(infos, tx->GetWitnessHash(), [](
const auto& info) { return info.tx->GetWitnessHash(); })};
69 BOOST_REQUIRE(it != infos.end());
72 const auto check_peer_counts{[&](
size_t tx1_peer_count,
size_t tx2_peer_count) {
79 check_peer_counts(0, 0);
82 BOOST_CHECK(tx_for_recipient1 == tx1 || tx_for_recipient1 == tx2);
85 const NodeId recipient2{2};
88 BOOST_CHECK(tx_for_recipient2 == tx1 || tx_for_recipient2 == tx2);
89 BOOST_CHECK_NE(tx_for_recipient1, tx_for_recipient2);
91 check_peer_counts(1, 1);
93 const NodeId nonexistent_recipient{0};
124 const auto& peers{find_tx_info(infos, tx_for_recipient1).peers};
130 const auto& peers{find_tx_info(infos, tx_for_recipient2).peers};
136 const auto stale_state{pb.
GetStale()};
150 const CService addr_nonexistent{ipv4Addr, 3333};
167 const auto stale_state{pb.
GetStale()};
168 BOOST_REQUIRE_EQUAL(stale_state.size(), 1);
176 constexpr size_t num_over{5};
179 std::vector<CTransactionRef> txs;
180 txs.reserve(num_cap);
181 for (
size_t i{0}; i < num_cap; ++i) {
184 txs.push_back(std::move(tx));
189 for (
size_t i{0}; i < num_over; ++i) {
190 const auto tx{
MakeDummyTx(
static_cast<uint32_t
>(num_cap + i), 0)};
197 std::set<uint256> present_wtxids;
198 for (
const auto& info : infos) {
199 present_wtxids.insert(info.tx->GetWitnessHash().ToUint256());
202 for (
size_t i{0}; i < num_cap; ++i) {
203 BOOST_CHECK_MESSAGE(present_wtxids.contains(txs[i]->GetWitnessHash().ToUint256()),
204 "tx index " << i <<
" should still be present");
212 BOOST_REQUIRE(pb.
Remove(txs[0]).has_value());
219 BOOST_REQUIRE(pb.
Remove(fresh).has_value());
A combination of a network address (CNetAddr) and a (TCP) port.
Helper to initialize the global NodeClock, let a duration elapse, and reset it after use in a test.
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...
AddResult Add(const CTransactionRef &tx) EXCLUSIVE_LOCKS_REQUIRED(!m_mutex)
Add a transaction to the storage.
std::vector< TxBroadcastInfo > GetBroadcastInfo() const EXCLUSIVE_LOCKS_REQUIRED(!m_mutex)
Get stats about all transactions currently being privately broadcast.
AddResult
Outcome of Add().
@ QueueFull
Rejected: the queue is already at MAX_TRANSACTIONS.
@ AlreadyPresent
The transaction was already present; no change.
@ Added
The transaction was newly added.
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.
static constexpr size_t MAX_TRANSACTIONS
Maximum number of transactions tracked simultaneously.
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().
std::vector< CTransactionRef > GetStale() const EXCLUSIVE_LOCKS_REQUIRED(!m_mutex)
Get the transactions that have not been broadcast recently.
static constexpr auto INITIAL_STALE_DURATION
If a transaction is not sent to any peer for this duration, then we consider it stale / for rebroadca...
BOOST_FIXTURE_TEST_SUITE(cuckoocache_tests, BasicTestingSetup)
Test Suite for CuckooCache.
BOOST_AUTO_TEST_SUITE_END()
BOOST_CHECK_EQUAL(headers.FindFirst("key"), "value")
static const std::string addr1
static const std::string addr2
#define BOOST_CHECK(expr)
static CTransactionRef MakeTransactionRef(Tx &&txIn)
std::shared_ptr< const CTransaction > CTransactionRef
std::ostream & operator<<(std::ostream &os, PrivateBroadcast::AddResult r)
static CTransactionRef MakeDummyTx(uint32_t id, size_t num_witness)
BOOST_AUTO_TEST_CASE(basic)
A mutable version of CTransaction.