Files
rippled/src/test/ledger/SkipList_test.cpp
Bart 1d42c4f6de refactor: Remove unnecessary copyright notices already covered by LICENSE.md (#5929)
Per XLS-0095, we are taking steps to rename ripple(d) to xrpl(d).

This change specifically removes all copyright notices referencing Ripple, XRPLF, and certain affiliated contributors upon mutual agreement, so the notice in the LICENSE.md file applies throughout. Copyright notices referencing external contributions remain as-is. Duplicate verbiage is also removed.
2025-11-04 08:33:42 +00:00

91 lines
2.7 KiB
C++

#include <test/jtx/Env.h>
#include <xrpld/app/ledger/Ledger.h>
#include <xrpl/beast/unit_test.h>
#include <xrpl/ledger/View.h>
namespace ripple {
namespace test {
class SkipList_test : public beast::unit_test::suite
{
void
testSkipList()
{
jtx::Env env(*this);
std::vector<std::shared_ptr<Ledger>> history;
{
Config config;
auto prev = std::make_shared<Ledger>(
create_genesis,
config,
std::vector<uint256>{},
env.app().getNodeFamily());
history.push_back(prev);
for (auto i = 0; i < 1023; ++i)
{
auto next = std::make_shared<Ledger>(
*prev, env.app().timeKeeper().closeTime());
next->updateSkipList();
history.push_back(next);
prev = next;
}
}
{
auto l = *(std::next(std::begin(history)));
BEAST_EXPECT((*std::begin(history))->info().seq < l->info().seq);
BEAST_EXPECT(
!hashOfSeq(*l, l->info().seq + 1, env.journal).has_value());
BEAST_EXPECT(
hashOfSeq(*l, l->info().seq, env.journal) == l->info().hash);
BEAST_EXPECT(
hashOfSeq(*l, l->info().seq - 1, env.journal) ==
l->info().parentHash);
BEAST_EXPECT(!hashOfSeq(*history.back(), l->info().seq, env.journal)
.has_value());
}
// ledger skip lists store up to the previous 256 hashes
for (auto i = history.crbegin(); i != history.crend(); i += 256)
{
for (auto n = i;
n != std::next(i, (*i)->info().seq - 256 > 1 ? 257 : 256);
++n)
{
BEAST_EXPECT(
hashOfSeq(**i, (*n)->info().seq, env.journal) ==
(*n)->info().hash);
}
// edge case accessing beyond 256
BEAST_EXPECT(!hashOfSeq(**i, (*i)->info().seq - 258, env.journal)
.has_value());
}
// every 256th hash beyond the first 256 is stored
for (auto i = history.crbegin(); i != std::next(history.crend(), -512);
i += 256)
{
for (auto n = std::next(i, 512); n != history.crend(); n += 256)
{
BEAST_EXPECT(
hashOfSeq(**i, (*n)->info().seq, env.journal) ==
(*n)->info().hash);
}
}
}
void
run() override
{
testSkipList();
}
};
BEAST_DEFINE_TESTSUITE(SkipList, ledger, ripple);
} // namespace test
} // namespace ripple