blob: 1917e6e9b4aabe62fd91c38bb21221d44b319929 [file] [log] [blame]
Davide Pesaventobdd88c12020-11-26 00:35:08 -05001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/*
3 * Copyright (c) 2014-2020, 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 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_IO_FIXTURE_HPP
28#define NDNS_TESTS_IO_FIXTURE_HPP
29
30#include "clock-fixture.hpp"
31
32#include <boost/asio/io_service.hpp>
33
34namespace ndn {
35namespace ndns {
36namespace tests {
37
38class IoFixture : public ClockFixture
39{
40private:
41 void
42 afterTick() final
43 {
44 if (m_io.stopped()) {
45#if BOOST_VERSION >= 106600
46 m_io.restart();
47#else
48 m_io.reset();
49#endif
50 }
51 m_io.poll();
52 }
53
54protected:
55 boost::asio::io_service m_io;
56};
57
58} // namespace tests
59} // namespace ndns
60} // namespace ndn
61
62#endif // NDNS_TESTS_IO_FIXTURE_HPP