Davide Pesavento | 8de8a8b | 2022-05-12 01:26:43 -0400 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| 2 | /* |
Davide Pesavento | 288141a | 2024-02-13 17:30:35 -0500 | [diff] [blame^] | 3 | * Copyright (c) 2014-2024, Regents of the University of California, |
Davide Pesavento | 8de8a8b | 2022-05-12 01:26:43 -0400 | [diff] [blame] | 4 | * 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 NLSR (Named-data Link State Routing). |
| 12 | * See AUTHORS.md for complete list of NLSR authors and contributors. |
| 13 | * |
| 14 | * NLSR 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 | * NLSR 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 | * NLSR, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>. |
| 24 | */ |
| 25 | |
| 26 | #ifndef NLSR_TESTS_CLOCK_FIXTURE_HPP |
| 27 | #define NLSR_TESTS_CLOCK_FIXTURE_HPP |
| 28 | |
| 29 | #include <ndn-cxx/util/time-unit-test-clock.hpp> |
| 30 | |
Davide Pesavento | 288141a | 2024-02-13 17:30:35 -0500 | [diff] [blame^] | 31 | namespace nlsr::tests { |
Davide Pesavento | 8de8a8b | 2022-05-12 01:26:43 -0400 | [diff] [blame] | 32 | |
| 33 | namespace time = ndn::time; |
| 34 | |
| 35 | /** \brief A test fixture that overrides steady clock and system clock. |
| 36 | */ |
| 37 | class ClockFixture |
| 38 | { |
| 39 | public: |
| 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. |
| 46 | * afterTick() is called after each tick. |
| 47 | * |
| 48 | * Exceptions thrown during I/O events are propagated to the caller. |
| 49 | * Clock advancement will stop in the event of an exception. |
| 50 | */ |
| 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. |
| 61 | * afterTick() is called after each tick. |
| 62 | * |
| 63 | * Exceptions thrown during I/O events are propagated to the caller. |
| 64 | * Clock advancement will stop in the event of an exception. |
| 65 | */ |
| 66 | void |
| 67 | advanceClocks(time::nanoseconds tick, time::nanoseconds total); |
| 68 | |
| 69 | protected: |
| 70 | ClockFixture(); |
| 71 | |
| 72 | private: |
| 73 | /** \brief Called by advanceClocks() after each clock advancement (tick). |
| 74 | * |
| 75 | * The base class implementation is a no-op. |
| 76 | */ |
| 77 | virtual void |
| 78 | afterTick() |
| 79 | { |
| 80 | } |
| 81 | |
| 82 | protected: |
| 83 | std::shared_ptr<time::UnitTestSteadyClock> m_steadyClock; |
| 84 | std::shared_ptr<time::UnitTestSystemClock> m_systemClock; |
| 85 | }; |
| 86 | |
Davide Pesavento | 288141a | 2024-02-13 17:30:35 -0500 | [diff] [blame^] | 87 | } // namespace nlsr::tests |
Davide Pesavento | 8de8a8b | 2022-05-12 01:26:43 -0400 | [diff] [blame] | 88 | |
| 89 | #endif // NLSR_TESTS_CLOCK_FIXTURE_HPP |