mirror of
https://github.com/XRPLF/rippled.git
synced 2026-06-04 01:06:48 +00:00
This change renames all occurrences of `namespace ripple` and `ripple::` to `namespace xrpl` and `xrpl::`, respectively, as well as the names of test suites. It also provides a script to allow developers to replicate the changes in their local branch or fork to avoid conflicts.
71 lines
2.2 KiB
C++
71 lines
2.2 KiB
C++
#include <test/csf/Scheduler.h>
|
|
|
|
#include <xrpl/beast/unit_test.h>
|
|
|
|
#include <set>
|
|
|
|
namespace xrpl {
|
|
namespace test {
|
|
|
|
class Scheduler_test : public beast::unit_test::suite
|
|
{
|
|
public:
|
|
void
|
|
run() override
|
|
{
|
|
using namespace std::chrono_literals;
|
|
csf::Scheduler scheduler;
|
|
std::set<int> seen;
|
|
|
|
scheduler.in(1s, [&] { seen.insert(1); });
|
|
scheduler.in(2s, [&] { seen.insert(2); });
|
|
auto token = scheduler.in(3s, [&] { seen.insert(3); });
|
|
scheduler.at(scheduler.now() + 4s, [&] { seen.insert(4); });
|
|
scheduler.at(scheduler.now() + 8s, [&] { seen.insert(8); });
|
|
|
|
auto start = scheduler.now();
|
|
|
|
// Process first event
|
|
BEAST_EXPECT(seen.empty());
|
|
BEAST_EXPECT(scheduler.step_one());
|
|
BEAST_EXPECT(seen == std::set<int>({1}));
|
|
BEAST_EXPECT(scheduler.now() == (start + 1s));
|
|
|
|
// No processing if stepping until current time
|
|
BEAST_EXPECT(scheduler.step_until(scheduler.now()));
|
|
BEAST_EXPECT(seen == std::set<int>({1}));
|
|
BEAST_EXPECT(scheduler.now() == (start + 1s));
|
|
|
|
// Process next event
|
|
BEAST_EXPECT(scheduler.step_for(1s));
|
|
BEAST_EXPECT(seen == std::set<int>({1, 2}));
|
|
BEAST_EXPECT(scheduler.now() == (start + 2s));
|
|
|
|
// Don't process cancelled event, but advance clock
|
|
scheduler.cancel(token);
|
|
BEAST_EXPECT(scheduler.step_for(1s));
|
|
BEAST_EXPECT(seen == std::set<int>({1, 2}));
|
|
BEAST_EXPECT(scheduler.now() == (start + 3s));
|
|
|
|
// Process until 3 seen ints
|
|
BEAST_EXPECT(scheduler.step_while([&]() { return seen.size() < 3; }));
|
|
BEAST_EXPECT(seen == std::set<int>({1, 2, 4}));
|
|
BEAST_EXPECT(scheduler.now() == (start + 4s));
|
|
|
|
// Process the rest
|
|
BEAST_EXPECT(scheduler.step());
|
|
BEAST_EXPECT(seen == std::set<int>({1, 2, 4, 8}));
|
|
BEAST_EXPECT(scheduler.now() == (start + 8s));
|
|
|
|
// Process the rest again doesn't advance
|
|
BEAST_EXPECT(!scheduler.step());
|
|
BEAST_EXPECT(seen == std::set<int>({1, 2, 4, 8}));
|
|
BEAST_EXPECT(scheduler.now() == (start + 8s));
|
|
}
|
|
};
|
|
|
|
BEAST_DEFINE_TESTSUITE(Scheduler, csf, xrpl);
|
|
|
|
} // namespace test
|
|
} // namespace xrpl
|