blob: 5c6933439f5015962c6295af783177ca7c3a378d [file] [log] [blame]
Davide Pesaventob7703ad2019-03-23 21:12:56 -04001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/*
3 * Copyright (c) 2014-2019, Regents of the University of California,
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 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
33namespace nfd {
34namespace tests {
35
36/** \brief A test fixture that overrides steady clock and system clock.
37 */
38class ClockFixture
39{
40public:
41 virtual
42 ~ClockFixture();
43
44 /** \brief Advance steady and system clocks.
45 *
46 * Clocks are advanced in increments of \p tick for \p nTicks ticks.
47 * After each tick, global io_service is polled to process pending I/O events.
48 *
49 * Exceptions thrown during I/O events are propagated to the caller.
50 * Clock advancing would stop in case of an exception.
51 */
52 void
53 advanceClocks(time::nanoseconds tick, size_t nTicks = 1)
54 {
55 advanceClocks(tick, tick * nTicks);
56 }
57
58 /** \brief Advance steady and system clocks.
59 *
60 * Clocks are advanced in increments of \p tick for \p total time.
61 * The last increment might be shorter than \p tick.
62 * After each tick, global io_service is polled to process pending I/O events.
63 *
64 * Exceptions thrown during I/O events are propagated to the caller.
65 * Clock advancing would stop in case of an exception.
66 */
67 void
68 advanceClocks(time::nanoseconds tick, time::nanoseconds total);
69
70protected:
71 explicit
72 ClockFixture(boost::asio::io_service& io);
73
74private:
75 /** \brief Called by advanceClocks() after each clock advancement (tick).
76 */
77 virtual void
78 pollAfterClockTick();
79
80protected:
81 shared_ptr<time::UnitTestSteadyClock> m_steadyClock;
82 shared_ptr<time::UnitTestSystemClock> m_systemClock;
83
84private:
85 boost::asio::io_service& m_io;
86};
87
88} // namespace tests
89} // namespace nfd
90
91#endif // NFD_TESTS_CLOCK_FIXTURE_HPP