blob: 9cbc16e256baf3a0b32ea5e9dab571a79aa22c5f [file] [log] [blame]
Davide Pesaventobdd88c12020-11-26 00:35:08 -05001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/*
Davide Pesavento9a0d2132024-02-10 16:55:04 -05003 * Copyright (c) 2014-2024, Regents of the University of California,
Davide Pesaventobdd88c12020-11-26 00:35:08 -05004 * 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 NDNS (Named Data Networking Domain Name Service) and is
12 * based on the code written as part of NFD (Named Data Networking Daemon).
13 * See AUTHORS.md for complete list of NDNS authors and contributors.
14 *
15 * NDNS is free software: you can redistribute it and/or modify it under the terms
16 * of the GNU General Public License as published by the Free Software Foundation,
17 * either version 3 of the License, or (at your option) any later version.
18 *
19 * NDNS is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
20 * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
21 * PURPOSE. See the GNU General Public License for more details.
22 *
23 * You should have received a copy of the GNU General Public License along with
24 * NDNS, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>.
25 */
26
27#ifndef NDNS_TESTS_CLOCK_FIXTURE_HPP
28#define NDNS_TESTS_CLOCK_FIXTURE_HPP
29
30#include <ndn-cxx/util/time-unit-test-clock.hpp>
31
Davide Pesavento9a0d2132024-02-10 16:55:04 -050032namespace ndn::ndns::tests {
Davide Pesaventobdd88c12020-11-26 00:35:08 -050033
34/** \brief A test fixture that overrides steady clock and system clock.
35 */
36class ClockFixture
37{
38public:
39 virtual
40 ~ClockFixture();
41
42 /** \brief Advance steady and system clocks.
43 *
44 * Clocks are advanced in increments of \p tick for \p nTicks ticks.
45 * afterTick() is called after each tick.
46 *
47 * Exceptions thrown during I/O events are propagated to the caller.
48 * Clock advancement will stop in the event of an exception.
49 */
50 void
51 advanceClocks(time::nanoseconds tick, size_t nTicks = 1)
52 {
53 advanceClocks(tick, tick * nTicks);
54 }
55
56 /** \brief Advance steady and system clocks.
57 *
58 * Clocks are advanced in increments of \p tick for \p total time.
59 * The last increment might be shorter than \p tick.
60 * afterTick() is called after each tick.
61 *
62 * Exceptions thrown during I/O events are propagated to the caller.
63 * Clock advancement will stop in the event of an exception.
64 */
65 void
66 advanceClocks(time::nanoseconds tick, time::nanoseconds total);
67
68protected:
69 ClockFixture();
70
71private:
72 /** \brief Called by advanceClocks() after each clock advancement (tick).
73 *
74 * The base class implementation is a no-op.
75 */
76 virtual void
77 afterTick()
78 {
79 }
80
81protected:
Davide Pesavento9a0d2132024-02-10 16:55:04 -050082 std::shared_ptr<time::UnitTestSteadyClock> m_steadyClock;
83 std::shared_ptr<time::UnitTestSystemClock> m_systemClock;
Davide Pesaventobdd88c12020-11-26 00:35:08 -050084};
85
Davide Pesavento9a0d2132024-02-10 16:55:04 -050086} // namespace ndn::ndns::tests
Davide Pesaventobdd88c12020-11-26 00:35:08 -050087
88#endif // NDNS_TESTS_CLOCK_FIXTURE_HPP