blob: 05efe091c6dda01e2a10f837aa2715ce1e0cb0ad [file] [log] [blame]
Davide Pesaventob7703ad2019-03-23 21:12:56 -04001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/*
Davide Pesaventoe422f9e2022-06-03 01:30:23 -04003 * Copyright (c) 2014-2022, Regents of the University of California,
Davide Pesaventob7703ad2019-03-23 21:12:56 -04004 * Arizona Board of Regents,
5 * Colorado State University,
6 * University Pierre & Marie Curie, Sorbonne University,
7 * Washington University in St. Louis,
8 * Beijing Institute of Technology,
9 * The University of Memphis.
10 *
11 * This file is part of NFD (Named Data Networking Forwarding Daemon).
12 * See AUTHORS.md for complete list of NFD authors and contributors.
13 *
14 * NFD is free software: you can redistribute it and/or modify it under the terms
15 * of the GNU General Public License as published by the Free Software Foundation,
16 * either version 3 of the License, or (at your option) any later version.
17 *
18 * NFD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
19 * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
20 * PURPOSE. See the GNU General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License along with
23 * NFD, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>.
24 */
25
26#ifndef NFD_TESTS_CLOCK_FIXTURE_HPP
27#define NFD_TESTS_CLOCK_FIXTURE_HPP
28
29#include "core/common.hpp"
30
31#include <ndn-cxx/util/time-unit-test-clock.hpp>
32
Davide Pesaventoe422f9e2022-06-03 01:30:23 -040033namespace nfd::tests {
Davide Pesaventob7703ad2019-03-23 21:12:56 -040034
35/** \brief A test fixture that overrides steady clock and system clock.
36 */
37class ClockFixture
38{
39public:
40 virtual
41 ~ClockFixture();
42
43 /** \brief Advance steady and system clocks.
44 *
45 * Clocks are advanced in increments of \p tick for \p nTicks ticks.
Davide Pesavento21353752020-11-20 00:43:44 -050046 * afterTick() is called after each tick.
Davide Pesaventob7703ad2019-03-23 21:12:56 -040047 *
48 * Exceptions thrown during I/O events are propagated to the caller.
Davide Pesavento21353752020-11-20 00:43:44 -050049 * Clock advancement will stop in the event of an exception.
Davide Pesaventob7703ad2019-03-23 21:12:56 -040050 */
51 void
52 advanceClocks(time::nanoseconds tick, size_t nTicks = 1)
53 {
54 advanceClocks(tick, tick * nTicks);
55 }
56
57 /** \brief Advance steady and system clocks.
58 *
59 * Clocks are advanced in increments of \p tick for \p total time.
60 * The last increment might be shorter than \p tick.
Davide Pesavento21353752020-11-20 00:43:44 -050061 * afterTick() is called after each tick.
Davide Pesaventob7703ad2019-03-23 21:12:56 -040062 *
63 * Exceptions thrown during I/O events are propagated to the caller.
Davide Pesavento21353752020-11-20 00:43:44 -050064 * Clock advancement will stop in the event of an exception.
Davide Pesaventob7703ad2019-03-23 21:12:56 -040065 */
66 void
67 advanceClocks(time::nanoseconds tick, time::nanoseconds total);
68
69protected:
Davide Pesavento21353752020-11-20 00:43:44 -050070 ClockFixture();
Davide Pesaventob7703ad2019-03-23 21:12:56 -040071
72private:
73 /** \brief Called by advanceClocks() after each clock advancement (tick).
Davide Pesavento21353752020-11-20 00:43:44 -050074 *
75 * The base class implementation is a no-op.
Davide Pesaventob7703ad2019-03-23 21:12:56 -040076 */
77 virtual void
Davide Pesavento21353752020-11-20 00:43:44 -050078 afterTick()
79 {
80 }
Davide Pesaventob7703ad2019-03-23 21:12:56 -040081
82protected:
83 shared_ptr<time::UnitTestSteadyClock> m_steadyClock;
84 shared_ptr<time::UnitTestSystemClock> m_systemClock;
Davide Pesaventob7703ad2019-03-23 21:12:56 -040085};
86
Davide Pesaventoe422f9e2022-06-03 01:30:23 -040087} // namespace nfd::tests
Davide Pesaventob7703ad2019-03-23 21:12:56 -040088
89#endif // NFD_TESTS_CLOCK_FIXTURE_HPP