lokinet/test/util/test_llarp_util_decaying_hashset.cpp

40 lines
1.3 KiB
C++
Raw Normal View History

2019-12-30 20:52:10 +00:00
#include <util/decaying_hashset.hpp>
#include <router_id.hpp>
#include <catch2/catch.hpp>
2019-12-30 20:52:10 +00:00
TEST_CASE("DecayingHashSet test decay static time", "[decaying-hashset]")
2019-12-30 20:52:10 +00:00
{
static constexpr auto timeout = 5s;
static constexpr auto now = 1s;
2021-03-01 21:07:32 +00:00
llarp::util::DecayingHashSet<llarp::RouterID> hashset{timeout};
const llarp::RouterID zero{};
REQUIRE(zero.IsZero());
REQUIRE(not hashset.Contains(zero));
REQUIRE(hashset.Insert(zero, now));
REQUIRE(hashset.Contains(zero));
hashset.Decay(now + 1s);
REQUIRE(hashset.Contains(zero));
2019-12-30 20:52:10 +00:00
hashset.Decay(now + timeout);
REQUIRE(not hashset.Contains(zero));
hashset.Decay(now + timeout + 1s);
REQUIRE(not hashset.Contains(zero));
2019-12-30 20:52:10 +00:00
}
2021-03-01 21:07:32 +00:00
TEST_CASE("DecayingHashSet test decay dynamic time", "[decaying-hashset]")
2019-12-30 20:52:10 +00:00
{
static constexpr llarp_time_t timeout = 5s;
2021-03-04 20:47:09 +00:00
const auto now = llarp::time_now_ms();
2021-03-01 21:07:32 +00:00
llarp::util::DecayingHashSet<llarp::RouterID> hashset{timeout};
const llarp::RouterID zero{};
REQUIRE(zero.IsZero());
REQUIRE(not hashset.Contains(zero));
2021-03-04 20:47:09 +00:00
REQUIRE(hashset.Insert(zero, now));
REQUIRE(hashset.Contains(zero));
2021-03-04 20:47:09 +00:00
hashset.Decay(now + 1s);
REQUIRE(hashset.Contains(zero));
2021-03-04 20:47:09 +00:00
hashset.Decay(now + timeout);
REQUIRE(not hashset.Contains(zero));
2021-03-04 20:47:09 +00:00
hashset.Decay(now + timeout + 1s);
REQUIRE(not hashset.Contains(zero));
2019-12-30 20:52:10 +00:00
}