10#include <boost/test/unit_test.hpp>
18 mtx.
vin[0].nSequence = id;
19 if (num_witness > 0) {
21 mtx.
vin[0].scriptWitness.stack.resize(num_witness);
31 const NodeId recipient1{1};
46 BOOST_REQUIRE(tx1->GetHash() == tx2->GetHash());
47 BOOST_REQUIRE(tx1->GetWitnessHash() != tx2->GetWitnessHash());
51 const auto tx_for_recipient1{pb.
PickTxForSend(recipient1).value()};
52 BOOST_CHECK(tx_for_recipient1 == tx1 || tx_for_recipient1 == tx2);
55 const NodeId recipient2{2};
56 const auto tx_for_recipient2{pb.
PickTxForSend(recipient2).value()};
57 BOOST_CHECK(tx_for_recipient2 == tx1 || tx_for_recipient2 == tx2);
58 BOOST_CHECK_NE(tx_for_recipient1, tx_for_recipient2);
60 const NodeId nonexistent_recipient{0};
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...
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) 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()
#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.