fix hhwheeltimertest
[folly.git] / folly / io / async / test / HHWheelTimerTest.cpp
1 /*
2  * Licensed to the Apache Software Foundation (ASF) under one
3  * or more contributor license agreements. See the NOTICE file
4  * distributed with this work for additional information
5  * regarding copyright ownership. The ASF licenses this file
6  * to you under the Apache License, Version 2.0 (the
7  * "License"); you may not use this file except in compliance
8  * with the License. You may obtain a copy of the License at
9  *
10  *   http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing,
13  * software distributed under the License is distributed on an
14  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15  * KIND, either express or implied. See the License for the
16  * specific language governing permissions and limitations
17  * under the License.
18  */
19 #include <folly/io/async/HHWheelTimer.h>
20 #include <folly/io/async/EventBase.h>
21 #include <folly/io/async/test/UndelayedDestruction.h>
22 #include <folly/io/async/test/Util.h>
23
24 #include <gtest/gtest.h>
25 #include <vector>
26
27 using namespace folly;
28 using std::chrono::milliseconds;
29
30 typedef UndelayedDestruction<HHWheelTimer> StackWheelTimer;
31
32 class TestTimeout : public HHWheelTimer::Callback {
33  public:
34   TestTimeout() {}
35   TestTimeout(HHWheelTimer* t, milliseconds timeout) {
36     t->scheduleTimeout(this, timeout);
37   }
38
39   void timeoutExpired() noexcept override {
40     timestamps.emplace_back();
41     if (fn) {
42       fn();
43     }
44   }
45
46   void callbackCanceled() noexcept override {
47     canceledTimestamps.emplace_back();
48     if (fn) {
49       fn();
50     }
51   }
52
53   std::deque<TimePoint> timestamps;
54   std::deque<TimePoint> canceledTimestamps;
55   std::function<void()> fn;
56 };
57
58
59 class TestTimeoutDelayed : public TestTimeout {
60  protected:
61     std::chrono::milliseconds getCurTime() override {
62       return std::chrono::duration_cast<std::chrono::milliseconds>(
63         std::chrono::steady_clock::now().time_since_epoch()) -
64         milliseconds(5);
65     }
66 };
67
68 struct HHWheelTimerTest : public ::testing::Test {
69   EventBase eventBase;
70 };
71
72 /*
73  * Test firing some simple timeouts that are fired once and never rescheduled
74  */
75 TEST_F(HHWheelTimerTest, FireOnce) {
76   StackWheelTimer t(&eventBase, milliseconds(1));
77
78   TestTimeout t1;
79   TestTimeout t2;
80   TestTimeout t3;
81
82   ASSERT_EQ(t.count(), 0);
83
84   t.scheduleTimeout(&t1, milliseconds(5));
85   t.scheduleTimeout(&t2, milliseconds(5));
86   // Verify scheduling it twice cancels, then schedules.
87   // Should only get one callback.
88   t.scheduleTimeout(&t2, milliseconds(5));
89   t.scheduleTimeout(&t3, milliseconds(10));
90
91   ASSERT_EQ(t.count(), 3);
92
93   TimePoint start;
94   eventBase.loop();
95   TimePoint end;
96
97   ASSERT_EQ(t1.timestamps.size(), 1);
98   ASSERT_EQ(t2.timestamps.size(), 1);
99   ASSERT_EQ(t3.timestamps.size(), 1);
100
101   ASSERT_EQ(t.count(), 0);
102
103   T_CHECK_TIMEOUT(start, t1.timestamps[0], milliseconds(5));
104   T_CHECK_TIMEOUT(start, t2.timestamps[0], milliseconds(5));
105   T_CHECK_TIMEOUT(start, t3.timestamps[0], milliseconds(10));
106   T_CHECK_TIMEOUT(start, end, milliseconds(10));
107 }
108
109 /*
110  * Test scheduling a timeout from another timeout callback.
111  */
112 TEST_F(HHWheelTimerTest, TestSchedulingWithinCallback) {
113   HHWheelTimer& t = eventBase.timer();
114
115   TestTimeout t1;
116   // Delayed to simulate the steady_clock counter lagging
117   TestTimeoutDelayed t2;
118
119   t.scheduleTimeout(&t1, milliseconds(500));
120   t1.fn = [&] { t.scheduleTimeout(&t2, milliseconds(1)); };
121   // If t is in an inconsistent state, detachEventBase should fail.
122   t2.fn = [&] { t.detachEventBase(); };
123
124   ASSERT_EQ(t.count(), 1);
125
126   eventBase.loop();
127
128   ASSERT_EQ(t.count(), 0);
129   ASSERT_EQ(t1.timestamps.size(), 1);
130   ASSERT_EQ(t2.timestamps.size(), 1);
131 }
132
133 /*
134  * Test cancelling a timeout when it is scheduled to be fired right away.
135  */
136
137 TEST_F(HHWheelTimerTest, CancelTimeout) {
138   StackWheelTimer t(&eventBase, milliseconds(1));
139
140   // Create several timeouts that will all fire in 5ms.
141   TestTimeout t5_1(&t, milliseconds(5));
142   TestTimeout t5_2(&t, milliseconds(5));
143   TestTimeout t5_3(&t, milliseconds(5));
144   TestTimeout t5_4(&t, milliseconds(5));
145   TestTimeout t5_5(&t, milliseconds(5));
146
147   // Also create a few timeouts to fire in 10ms
148   TestTimeout t10_1(&t, milliseconds(10));
149   TestTimeout t10_2(&t, milliseconds(10));
150   TestTimeout t10_3(&t, milliseconds(10));
151
152   TestTimeout t20_1(&t, milliseconds(20));
153   TestTimeout t20_2(&t, milliseconds(20));
154
155   // Have t5_1 cancel t5_2 and t5_4.
156   //
157   // Cancelling t5_2 will test cancelling a timeout that is at the head of the
158   // list and ready to be fired.
159   //
160   // Cancelling t5_4 will test cancelling a timeout in the middle of the list
161   t5_1.fn = [&] {
162     t5_2.cancelTimeout();
163     t5_4.cancelTimeout();
164   };
165
166   // Have t5_3 cancel t5_5.
167   // This will test cancelling the last remaining timeout.
168   //
169   // Then have t5_3 reschedule itself.
170   t5_3.fn = [&] {
171     t5_5.cancelTimeout();
172     // Reset our function so we won't continually reschedule ourself
173     std::function<void()> fnDtorGuard;
174     t5_3.fn.swap(fnDtorGuard);
175     t.scheduleTimeout(&t5_3, milliseconds(5));
176
177     // Also test cancelling timeouts in another timeset that isn't ready to
178     // fire yet.
179     //
180     // Cancel the middle timeout in ts10.
181     t10_2.cancelTimeout();
182     // Cancel both the timeouts in ts20.
183     t20_1.cancelTimeout();
184     t20_2.cancelTimeout();
185   };
186
187   TimePoint start;
188   eventBase.loop();
189   TimePoint end;
190
191   ASSERT_EQ(t5_1.timestamps.size(), 1);
192   T_CHECK_TIMEOUT(start, t5_1.timestamps[0], milliseconds(5));
193
194   ASSERT_EQ(t5_3.timestamps.size(), 2);
195   T_CHECK_TIMEOUT(start, t5_3.timestamps[0], milliseconds(5));
196   T_CHECK_TIMEOUT(t5_3.timestamps[0], t5_3.timestamps[1], milliseconds(5));
197
198   ASSERT_EQ(t10_1.timestamps.size(), 1);
199   T_CHECK_TIMEOUT(start, t10_1.timestamps[0], milliseconds(10));
200   ASSERT_EQ(t10_3.timestamps.size(), 1);
201   T_CHECK_TIMEOUT(start, t10_3.timestamps[0], milliseconds(10));
202
203   // Cancelled timeouts
204   ASSERT_EQ(t5_2.timestamps.size(), 0);
205   ASSERT_EQ(t5_4.timestamps.size(), 0);
206   ASSERT_EQ(t5_5.timestamps.size(), 0);
207   ASSERT_EQ(t10_2.timestamps.size(), 0);
208   ASSERT_EQ(t20_1.timestamps.size(), 0);
209   ASSERT_EQ(t20_2.timestamps.size(), 0);
210
211   T_CHECK_TIMEOUT(start, end, milliseconds(10));
212 }
213
214 /*
215  * Test destroying a HHWheelTimer with timeouts outstanding
216  */
217
218 TEST_F(HHWheelTimerTest, DestroyTimeoutSet) {
219   HHWheelTimer::UniquePtr t(
220       HHWheelTimer::newTimer(&eventBase, milliseconds(1)));
221
222   TestTimeout t5_1(t.get(), milliseconds(5));
223   TestTimeout t5_2(t.get(), milliseconds(5));
224   TestTimeout t5_3(t.get(), milliseconds(5));
225
226   TestTimeout t10_1(t.get(), milliseconds(10));
227   TestTimeout t10_2(t.get(), milliseconds(10));
228
229   // Have t5_2 destroy t
230   // Note that this will call destroy() inside t's timeoutExpired()
231   // method.
232   t5_2.fn = [&] {
233     t5_3.cancelTimeout();
234     t5_1.cancelTimeout();
235     t10_1.cancelTimeout();
236     t10_2.cancelTimeout();
237     t.reset();};
238
239   TimePoint start;
240   eventBase.loop();
241   TimePoint end;
242
243   ASSERT_EQ(t5_1.timestamps.size(), 1);
244   T_CHECK_TIMEOUT(start, t5_1.timestamps[0], milliseconds(5));
245   ASSERT_EQ(t5_2.timestamps.size(), 1);
246   T_CHECK_TIMEOUT(start, t5_2.timestamps[0], milliseconds(5));
247
248   ASSERT_EQ(t5_3.timestamps.size(), 0);
249   ASSERT_EQ(t10_1.timestamps.size(), 0);
250   ASSERT_EQ(t10_2.timestamps.size(), 0);
251
252   T_CHECK_TIMEOUT(start, end, milliseconds(5));
253 }
254
255 /*
256  * Test the tick interval parameter
257  */
258 TEST_F(HHWheelTimerTest, AtMostEveryN) {
259
260   // Create a timeout set with a 10ms interval, to fire no more than once
261   // every 3ms.
262   milliseconds interval(10);
263   milliseconds atMostEveryN(3);
264   StackWheelTimer t(&eventBase, atMostEveryN);
265   t.setCatchupEveryN(70);
266
267   // Create 60 timeouts to be added to ts1 at 1ms intervals.
268   uint32_t numTimeouts = 60;
269   std::vector<TestTimeout> timeouts(numTimeouts);
270
271   // Create a scheduler timeout to add the timeouts 1ms apart.
272   uint32_t index = 0;
273   StackWheelTimer ts1(&eventBase, milliseconds(1));
274   TestTimeout scheduler(&ts1, milliseconds(1));
275   scheduler.fn = [&] {
276     if (index >= numTimeouts) {
277       return;
278     }
279     // Call timeoutExpired() on the timeout so it will record a timestamp.
280     // This is done only so we can record when we scheduled the timeout.
281     // This way if ts1 starts to fall behind a little over time we will still
282     // be comparing the ts1 timeouts to when they were first scheduled (rather
283     // than when we intended to schedule them).  The scheduler may fall behind
284     // eventually since we don't really schedule it once every millisecond.
285     // Each time it finishes we schedule it for 1 millisecond in the future.
286     // The amount of time it takes to run, and any delays it encounters
287     // getting scheduled may eventually add up over time.
288     timeouts[index].timeoutExpired();
289
290     // Schedule the new timeout
291     t.scheduleTimeout(&timeouts[index], interval);
292     // Reschedule ourself
293     ts1.scheduleTimeout(&scheduler, milliseconds(1));
294     ++index;
295   };
296
297   TimePoint start;
298   eventBase.loop();
299   TimePoint end;
300
301   // This should take roughly 60 + 10 ms to finish. If it takes more than
302   // 250 ms to finish the system is probably heavily loaded, so skip.
303   if (std::chrono::duration_cast<std::chrono::milliseconds>(
304         end.getTime() - start.getTime()).count() > 250) {
305     LOG(WARNING) << "scheduling all timeouts takes too long";
306     return;
307   }
308
309   // We scheduled timeouts 1ms apart, when the HHWheelTimer is only allowed
310   // to wake up at most once every 3ms.  It will therefore wake up every 3ms
311   // and fire groups of approximately 3 timeouts at a time.
312   //
313   // This is "approximately 3" since it may get slightly behind and fire 4 in
314   // one interval, etc.  T_CHECK_TIMEOUT normally allows a few milliseconds of
315   // tolerance.  We have to add the same into our checking algorithm here.
316   for (uint32_t idx = 0; idx < numTimeouts; ++idx) {
317     ASSERT_EQ(timeouts[idx].timestamps.size(), 2);
318
319     TimePoint scheduledTime(timeouts[idx].timestamps[0]);
320     TimePoint firedTime(timeouts[idx].timestamps[1]);
321
322     // Assert that the timeout fired at roughly the right time.
323     // T_CHECK_TIMEOUT() normally has a tolerance of 5ms.  Allow an additional
324     // atMostEveryN.
325     milliseconds tolerance = milliseconds(5) + interval;
326     T_CHECK_TIMEOUT(scheduledTime, firedTime, atMostEveryN, tolerance);
327
328     // Assert that the difference between the previous timeout and now was
329     // either very small (fired in the same event loop), or larger than
330     // atMostEveryN.
331     if (idx == 0) {
332       // no previous value
333       continue;
334     }
335     TimePoint prev(timeouts[idx - 1].timestamps[1]);
336
337     auto delta = (firedTime.getTimeStart() - prev.getTimeEnd()) -
338       (firedTime.getTimeWaiting() - prev.getTimeWaiting());
339     if (delta > milliseconds(1)) {
340       T_CHECK_TIMEOUT(prev, firedTime, atMostEveryN);
341     }
342   }
343 }
344
345 /*
346  * Test an event loop that is blocking
347  */
348
349 TEST_F(HHWheelTimerTest, SlowLoop) {
350   StackWheelTimer t(&eventBase, milliseconds(1));
351
352   TestTimeout t1;
353   TestTimeout t2;
354
355   ASSERT_EQ(t.count(), 0);
356
357   eventBase.runInLoop([](){usleep(10000);});
358   t.scheduleTimeout(&t1, milliseconds(5));
359
360   ASSERT_EQ(t.count(), 1);
361
362   TimePoint start;
363   eventBase.loop();
364   TimePoint end;
365
366   ASSERT_EQ(t1.timestamps.size(), 1);
367   ASSERT_EQ(t.count(), 0);
368
369   // Check that the timeout was delayed by sleep
370   T_CHECK_TIMEOUT(start, t1.timestamps[0], milliseconds(15), milliseconds(1));
371   T_CHECK_TIMEOUT(start, end, milliseconds(15), milliseconds(1));
372
373   // Try it again, this time with catchup timing every loop
374   t.setCatchupEveryN(1);
375
376   eventBase.runInLoop([](){usleep(10000);});
377   t.scheduleTimeout(&t2, milliseconds(5));
378
379   ASSERT_EQ(t.count(), 1);
380
381   TimePoint start2;
382   eventBase.loop();
383   TimePoint end2;
384
385   ASSERT_EQ(t2.timestamps.size(), 1);
386   ASSERT_EQ(t.count(), 0);
387
388   // Check that the timeout was NOT delayed by sleep
389   T_CHECK_TIMEOUT(start2, t2.timestamps[0], milliseconds(10), milliseconds(1));
390   T_CHECK_TIMEOUT(start2, end2, milliseconds(10), milliseconds(1));
391 }
392
393 /*
394  * Test scheduling a mix of timers with default timeout and variable timeout.
395  */
396 TEST_F(HHWheelTimerTest, DefaultTimeout) {
397   milliseconds defaultTimeout(milliseconds(5));
398   StackWheelTimer t(&eventBase,
399                     milliseconds(1),
400                     AsyncTimeout::InternalEnum::NORMAL,
401                     defaultTimeout);
402
403   TestTimeout t1;
404   TestTimeout t2;
405
406   ASSERT_EQ(t.count(), 0);
407   ASSERT_EQ(t.getDefaultTimeout(), defaultTimeout);
408
409   t.scheduleTimeout(&t1);
410   t.scheduleTimeout(&t2, milliseconds(10));
411
412   ASSERT_EQ(t.count(), 2);
413
414   TimePoint start;
415   eventBase.loop();
416   TimePoint end;
417
418   ASSERT_EQ(t1.timestamps.size(), 1);
419   ASSERT_EQ(t2.timestamps.size(), 1);
420
421   ASSERT_EQ(t.count(), 0);
422
423   T_CHECK_TIMEOUT(start, t1.timestamps[0], defaultTimeout);
424   T_CHECK_TIMEOUT(start, t2.timestamps[0], milliseconds(10));
425   T_CHECK_TIMEOUT(start, end, milliseconds(10));
426 }
427
428 TEST_F(HHWheelTimerTest, lambda) {
429   StackWheelTimer t(&eventBase, milliseconds(1));
430   size_t count = 0;
431   t.scheduleTimeoutFn([&]{ count++; }, milliseconds(1));
432   eventBase.loop();
433   EXPECT_EQ(1, count);
434 }
435
436 // shouldn't crash because we swallow and log the error (you'll have to look
437 // at the console to confirm logging)
438 TEST_F(HHWheelTimerTest, lambdaThrows) {
439   StackWheelTimer t(&eventBase, milliseconds(1));
440   t.scheduleTimeoutFn([&]{ throw std::runtime_error("expected"); },
441                       milliseconds(1));
442   eventBase.loop();
443 }
444
445 TEST_F(HHWheelTimerTest, cancelAll) {
446   StackWheelTimer t(&eventBase, milliseconds(1));
447   TestTimeout tt;
448   t.scheduleTimeout(&tt, std::chrono::minutes(1));
449   EXPECT_EQ(1, t.cancelAll());
450   EXPECT_EQ(1, tt.canceledTimestamps.size());
451 }
452
453 TEST_F(HHWheelTimerTest, IntrusivePtr) {
454   HHWheelTimer::UniquePtr t(
455       HHWheelTimer::newTimer(&eventBase, milliseconds(1)));
456
457   TestTimeout t1;
458   TestTimeout t2;
459   TestTimeout t3;
460
461   ASSERT_EQ(t->count(), 0);
462
463   t->scheduleTimeout(&t1, milliseconds(5));
464   t->scheduleTimeout(&t2, milliseconds(5));
465
466   DelayedDestruction::IntrusivePtr<HHWheelTimer> s(t);
467
468   s->scheduleTimeout(&t3, milliseconds(10));
469
470   ASSERT_EQ(t->count(), 3);
471
472   // Kill the UniquePtr, but the SharedPtr keeps it alive
473   t.reset();
474
475   TimePoint start;
476   eventBase.loop();
477   TimePoint end;
478
479   ASSERT_EQ(t1.timestamps.size(), 1);
480   ASSERT_EQ(t2.timestamps.size(), 1);
481   ASSERT_EQ(t3.timestamps.size(), 1);
482
483   ASSERT_EQ(s->count(), 0);
484
485   T_CHECK_TIMEOUT(start, t1.timestamps[0], milliseconds(5));
486   T_CHECK_TIMEOUT(start, t2.timestamps[0], milliseconds(5));
487   T_CHECK_TIMEOUT(start, t3.timestamps[0], milliseconds(10));
488   T_CHECK_TIMEOUT(start, end, milliseconds(10));
489 }