summaryrefslogtreecommitdiffstats
path: root/src/test/common/test_ceph_timer.cc
blob: 12391c7ea71b5d94151f3b23b18e7b7578330a2e (plain)
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*-
// vim: ts=8 sw=2 smarttab
/*
 * Ceph - scalable distributed file system
 *
 * Copyright (C) 2020 Red Hat
 *
 * This is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License version 2.1, as published by the Free Software
 * Foundation. See file COPYING.
 *
 */

#include <chrono>
#include <future>
#include <vector>

#include <gtest/gtest.h>

#include "common/ceph_timer.h"

using namespace std::literals;

namespace {
template<typename TC>
void run_some()
{
  static constexpr auto MAX_FUTURES = 5;
  ceph::timer<TC> timer;
  std::vector<std::future<void>> futures;
  for (auto i = 0; i < MAX_FUTURES; ++i) {
    auto t = TC::now() + 2s;
    std::promise<void> p;
    futures.push_back(p.get_future());
    timer.add_event(t, [p = std::move(p)]() mutable {
                         p.set_value();
                       });
  }
  for (auto& f : futures)
    f.get();
}

template<typename TC>
void run_orderly()
{
  ceph::timer<TC> timer;

  std::future<typename TC::time_point> first;
  std::future<typename TC::time_point> second;


  {
    std::promise<typename TC::time_point> p;
    second = p.get_future();
    timer.add_event(4s, [p = std::move(p)]() mutable {
                          p.set_value(TC::now());
                        });
  }
  {
    std::promise<typename TC::time_point> p;
    first = p.get_future();
    timer.add_event(2s, [p = std::move(p)]() mutable {
                          p.set_value(TC::now());
                        });
  }

  EXPECT_LT(first.get(), second.get());
}

struct Destructo {
  bool armed = true;
  std::promise<void> p;

  Destructo(std::promise<void>&& p) : p(std::move(p)) {}
  Destructo(const Destructo&) = delete;
  Destructo& operator =(const Destructo&) = delete;
  Destructo(Destructo&& rhs) {
    p = std::move(rhs.p);
    armed = rhs.armed;
    rhs.armed = false;
  }
  Destructo& operator =(Destructo& rhs) {
    p = std::move(rhs.p);
    rhs.armed = false;
    armed = rhs.armed;
    rhs.armed = false;
    return *this;
  }

  ~Destructo() {
    if (armed)
      p.set_value();
  }
  void operator ()() const {
    FAIL();
  }
};

template<typename TC>
void cancel_all()
{
  ceph::timer<TC> timer;
  static constexpr auto MAX_FUTURES = 5;
  std::vector<std::future<void>> futures;
  for (auto i = 0; i < MAX_FUTURES; ++i) {
    std::promise<void> p;
    futures.push_back(p.get_future());
    timer.add_event(100s + i*1s, Destructo(std::move(p)));
  }
  timer.cancel_all_events();
  for (auto& f : futures)
    f.get();
}

template<typename TC>
void cancellation()
{
  ceph::timer<TC> timer;
  {
    std::promise<void> p;
    auto f = p.get_future();
    auto e = timer.add_event(100s, Destructo(std::move(p)));
    EXPECT_TRUE(timer.cancel_event(e));
  }
  {
    std::promise<void> p;
    auto f = p.get_future();
    auto e = timer.add_event(1s, [p = std::move(p)]() mutable {
                                   p.set_value();
                                 });
    f.get();
    EXPECT_FALSE(timer.cancel_event(e));
  }
}
}

TEST(RunSome, Steady)
{
  run_some<std::chrono::steady_clock>();
}
TEST(RunSome, Wall)
{
  run_some<std::chrono::system_clock>();
}

TEST(RunOrderly, Steady)
{
  run_orderly<std::chrono::steady_clock>();
}
TEST(RunOrderly, Wall)
{
  run_orderly<std::chrono::system_clock>();
}

TEST(CancelAll, Steady)
{
  cancel_all<std::chrono::steady_clock>();
}
TEST(CancelAll, Wall)
{
  cancel_all<std::chrono::system_clock>();
}