summaryrefslogtreecommitdiffstats
path: root/storage/src/tests/distributor/ownership_transfer_safe_time_point_calculator_test.cpp
blob: ab708cce9263e85fdf1a33b041305af3c3384df2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#include <vespa/storage/distributor/ownership_transfer_safe_time_point_calculator.h>
#include <vespa/vdstestlib/cppunit/macros.h>

template <typename Clock, typename Duration>
std::ostream& operator<<(std::ostream& os,
                         std::chrono::time_point<Clock, Duration> t)
{
    os << std::chrono::duration_cast<std::chrono::milliseconds>(
            t.time_since_epoch()).count() << "ms";
    return os;
}

namespace storage {
namespace distributor {

struct OwnershipTransferSafeTimePointCalculatorTest : CppUnit::TestFixture {
    void generated_safe_time_point_rounds_up_to_nearest_second();
    void zero_clock_skew_returns_epoch();

    CPPUNIT_TEST_SUITE(OwnershipTransferSafeTimePointCalculatorTest);
    CPPUNIT_TEST(generated_safe_time_point_rounds_up_to_nearest_second);
    CPPUNIT_TEST(zero_clock_skew_returns_epoch);
    CPPUNIT_TEST_SUITE_END();
};

CPPUNIT_TEST_SUITE_REGISTRATION(OwnershipTransferSafeTimePointCalculatorTest);


using CalcType = OwnershipTransferSafeTimePointCalculator;
using Clock = CalcType::Clock;
using TimePoint = CalcType::TimePoint;

using namespace std::literals::chrono_literals;

void OwnershipTransferSafeTimePointCalculatorTest::generated_safe_time_point_rounds_up_to_nearest_second() {
    CPPUNIT_ASSERT_EQUAL(TimePoint(6s),
                         CalcType(1s).safeTimePoint(TimePoint(4001ms)));
    CPPUNIT_ASSERT_EQUAL(TimePoint(6s),
                         CalcType(1s).safeTimePoint(TimePoint(4999ms)));
    CPPUNIT_ASSERT_EQUAL(TimePoint(6s),
                         CalcType(1s).safeTimePoint(TimePoint(4000ms)));
    CPPUNIT_ASSERT_EQUAL(TimePoint(7s),
                         CalcType(2s).safeTimePoint(TimePoint(4001ms)));
    CPPUNIT_ASSERT_EQUAL(TimePoint(7s),
                         CalcType(2s).safeTimePoint(TimePoint(4999ms)));
}

void OwnershipTransferSafeTimePointCalculatorTest::zero_clock_skew_returns_epoch() {
    CPPUNIT_ASSERT_EQUAL(TimePoint(0s),
                         CalcType(0s).safeTimePoint(TimePoint(4001ms)));
}

}
}